Skip to content

Commit 9448a68

Browse files
committed
Port to 1.21.4
1 parent 5996830 commit 9448a68

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ dependencies {
4848
12006 -> "0.100.4+1.20.6"
4949
12100 -> "0.100.4+1.21"
5050
12102 -> "0.106.1+1.21.2"
51+
12104 -> "0.115.1+1.21.4"
5152
else -> error("Unable to determine fabric api version")
5253
}
5354

@@ -68,6 +69,7 @@ dependencies {
6869
val downloadContainer by tasks.registering(DownloadContainerTask::class) {
6970
containerFile = layout.buildDirectory.file("essential-container.jar")
7071
version = when (project.platform.mcVersion) {
72+
12104 -> "1.4.2+fabric-1.21.4"
7173
12103 -> "1.4.2+fabric-1.21.3"
7274
12102 -> "1.4.2+fabric-1.21.2"
7375
12101 -> "1.4.2+fabric-1.21.1"

root.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
preprocess {
88
strictExtraMappings.set(true)
99

10+
val fabric12104 = createNode("1.21.4-fabric", 12104, "yarn")
1011
val fabric12102 = createNode("1.21.2-fabric", 12102, "yarn")
1112
val fabric12100 = createNode("1.21-fabric", 12100, "yarn")
1213
val fabric12006 = createNode("1.20.6-fabric", 12006, "yarn")
@@ -34,6 +35,7 @@ preprocess {
3435
val forge11202 = createNode("1.12.2-forge", 11202, "srg")
3536
val forge10809 = createNode("1.8.9-forge", 10809, "srg")
3637

38+
fabric12104.link(fabric12102)
3739
fabric12102.link(fabric12100)
3840
fabric12100.link(fabric12006)
3941
fabric12006.link(fabric12004)

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ listOf(
4343
"1.20.6-fabric",
4444
"1.21-fabric",
4545
"1.21.2-fabric",
46+
"1.21.4-fabric",
4647
).forEach { version ->
4748
include(":$version")
4849
project(":$version").apply {

0 commit comments

Comments
 (0)