Skip to content

Commit 95c3b2c

Browse files
committed
feat: Support for 1.20.4
Signed-off-by: MSDNicrosoft <wang3311835119@hotmail.com>
1 parent 02f557e commit 95c3b2c

3 files changed

Lines changed: 22 additions & 0 deletions

File tree

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ preprocess {
1313
def mc1193 = createNode("1.19.3", 1_19_03, "mojang")
1414
def mc1194 = createNode("1.19.4", 1_19_04, "mojang")
1515
def mc1202 = createNode("1.20.2", 1_20_02, "mojang")
16+
def mc1204 = createNode("1.20.4", 1_20_04, "mojang")
1617

1718
mc1165.link(mc1171, null)
1819
mc1171.link(mc1182, null)
1920
mc1182.link(mc1192, null)
2021
mc1192.link(mc1193, null)
2122
mc1193.link(mc1194, null)
2223
mc1194.link(mc1202, null)
24+
mc1202.link(mc1204, null)
2325
}
2426

2527
def ENV = System.getenv()

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ def versions = Arrays.asList(
2626
"1.19.3",
2727
"1.19.4",
2828
"1.20.2",
29+
"1.20.4",
2930
)
3031

3132
for (String version : versions) {

versions/1.20.4/gradle.properties

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Independent branch configuration for MC 1.20.4
2+
# Development Environment
3+
minecraft_dependency=1.20.4
4+
minecraft_version=1.20.4
5+
minecraft_out=1.20.4
6+
7+
# Required Libraries
8+
# FabricAPI 0.95.4+1.20.4
9+
fabric_version=0.95.4+1.20.4
10+
11+
# LibGui 9.2.2+1.20.2
12+
libgui_version=9.2.2+1.20.2
13+
14+
# Runtime Libraries - Only for development environment
15+
# Mod Menu - 9.0.0
16+
modmenu_version=9.0.0
17+
18+
# Smooth Boot - No longer needed since MC 1.20
19+
smoothboot_version=0

0 commit comments

Comments
 (0)