Skip to content

Commit 8974d68

Browse files
Add support for 1.21.7 Fabric
1 parent 6eae67b commit 8974d68

File tree

5 files changed

+7
-1
lines changed

5 files changed

+7
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ dependencies {
5151
12104 -> "0.115.1+1.21.4"
5252
12105 -> "0.119.0+1.21.5"
5353
12106 -> "0.125.1+1.21.6"
54+
12107 -> "0.128.1+1.21.7"
5455
else -> error("Unable to determine fabric api version")
5556
}
5657

root.gradle.kts

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

8+
val fabric12107 = createNode("1.21.7-fabric", 12107, "yarn")
89
val fabric12106 = createNode("1.21.6-fabric", 12106, "yarn")
910
val neoForge12105 = createNode("1.21.5-neoforge", 12105, "srg")
1011
val forge12105 = createNode("1.21.5-forge", 12105, "srg")
@@ -46,6 +47,7 @@ preprocess {
4647
val forge11202 = createNode("1.12.2-forge", 11202, "srg")
4748
val forge10809 = createNode("1.8.9-forge", 10809, "srg")
4849

50+
fabric12107.link(fabric12106)
4951
fabric12106.link(fabric12105, file("versions/1.21.6-1.21.5.txt"))
5052
neoForge12105.link(fabric12105)
5153
forge12105.link(fabric12105)

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ listOf(
5757
"1.21.5-forge",
5858
"1.21.5-neoforge",
5959
"1.21.6-fabric",
60+
"1.21.7-fabric",
6061
).forEach { version ->
6162
include(":$version")
6263
project(":$version").apply {

src/main/java/gg/essential/partnermod/EssentialPartner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class EssentialPartner {
8080
"1.18", "1.18.1", "1.18.2",
8181
"1.19", "1.19.1", "1.19.2", "1.19.3", "1.19.4",
8282
"1.20", "1.20.1", "1.20.2", "1.20.4", "1.20.6",
83-
"1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5", "1.21.6"
83+
"1.21", "1.21.1", "1.21.2", "1.21.3", "1.21.4", "1.21.5", "1.21.6", "1.21.7"
8484
));
8585

8686
private static final Set<String> NEOFORGE_SUPPORTED_VERSIONS = new HashSet<>(Arrays.asList(
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
essential.defaults.loom.minecraft=com.mojang:minecraft:1.21.7
2+
essential.defaults.loom.mappings=net.fabricmc:yarn:1.21.7+build.2:v2

0 commit comments

Comments
 (0)