Skip to content

Commit

Permalink
more is better, add back 1.20.4 for the jdk version change
Browse files Browse the repository at this point in the history
cuz deleting is easier than adding
  • Loading branch information
Fallen-Breath committed Sep 23, 2024
1 parent 08a2cd6 commit 8924b6a
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 21 deletions.
32 changes: 17 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,24 @@ plugins {
}

preprocess {
def mc114 = createNode('1.14.4', 1_14_04, '')
def mc115 = createNode('1.15.2', 1_15_02, '')
def mc116 = createNode('1.16.5', 1_16_05, '')
def mc117 = createNode('1.17.1', 1_17_01, '')
def mc118 = createNode('1.18.2', 1_18_02, '')
def mc119 = createNode('1.19.4', 1_19_04, '')
def mc120 = createNode('1.20.6', 1_20_06, '')
def mc121 = createNode('1.21.1', 1_21_01, '')
def mc114 = createNode('1.14.4', 1_14_04, '')
def mc115 = createNode('1.15.2', 1_15_02, '')
def mc116 = createNode('1.16.5', 1_16_05, '')
def mc117 = createNode('1.17.1', 1_17_01, '')
def mc118 = createNode('1.18.2', 1_18_02, '')
def mc119 = createNode('1.19.4', 1_19_04, '')
def mc1204 = createNode('1.20.4', 1_20_04, '')
def mc1206 = createNode('1.20.6', 1_20_06, '')
def mc121 = createNode('1.21.1', 1_21_01, '')

mc115.link(mc114, null)
mc115.link(mc116, null)
mc116.link(mc117, null)
mc117.link(mc118, null)
mc118.link(mc119, null)
mc119.link(mc120, null)
mc120.link(mc121, null)
mc115 .link(mc114 , null)
mc115 .link(mc116 , null)
mc116 .link(mc117 , null)
mc117 .link(mc118 , null)
mc118 .link(mc119 , null)
mc119 .link(mc1204, null)
mc1204.link(mc1206, null)
mc1206.link(mc121 , null)
}

tasks.register('buildAndGather') {
Expand Down
1 change: 1 addition & 0 deletions settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"1.17.1",
"1.18.2",
"1.19.4",
"1.20.4",
"1.20.6",
"1.21.1"
]
Expand Down
2 changes: 1 addition & 1 deletion versions/1.16.5/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.16.4\n1.16.5
game_versions=1.16\n1.16.1\n1.16.2\n1.16.3\n1.16.4\n1.16.5

# Dependencies
# fabric_api_version=0.42.0+1.16
Expand Down
2 changes: 1 addition & 1 deletion versions/1.17.1/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.17.1
game_versions=1.17\n1.17.1

# Dependencies
# fabric_api_version=0.46.1+1.17
Expand Down
2 changes: 1 addition & 1 deletion versions/1.18.2/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.18.2
game_versions=1.18\n1.18.1\n1.18.2

# Dependencies
# fabric_api_version=0.76.0+1.18.2
2 changes: 1 addition & 1 deletion versions/1.19.4/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.19.4
game_versions=1.19\n1.19.1\n1.19.2\n1.19.3\n1.19.4

# Dependencies
# fabric_api_version=0.87.2+1.19.4
14 changes: 14 additions & 0 deletions versions/1.20.4/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Loom Properties
# check these on https://fallen-breath.github.io/fabric-versions/?&version=1.20.4
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.3

# Fabric Mod Metadata
minecraft_dependency=>=1.20 <=1.20.4

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.20\n1.20.1\n1.20.2\n1.20.3\n1.20.4

# Dependencies
# fabric_api_version=0.97.2+1.20.4
4 changes: 2 additions & 2 deletions versions/1.20.6/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
yarn_mappings=1.20.6+build.3

# Fabric Mod Metadata
minecraft_dependency=1.20.x
minecraft_dependency=>=1.20.5 1.20.x

# Build Information
# The target mc versions for the mod during mod publishing, separated with \n
game_versions=1.20.6
game_versions=1.20.5\n1.20.6

# Dependencies
# fabric_api_version=0.100.4+1.20.6

0 comments on commit 8924b6a

Please sign in to comment.