Skip to content

Commit 9478af4

Browse files
committed
1.21.5 (neo)forge support
1 parent 7345526 commit 9478af4

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

build.gradle.kts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,12 @@ val modMenuVersion = VersionDefinition(
9696
"1.20.1" to "7.2.2",
9797
"1.21.1" to "11.0.3",
9898
"1.21.4" to "13.0.2",
99-
"1.21.5" to "14.0.0-beta.2",
99+
"1.21.5" to "14.0.0-rc.2",
100100
)
101101
val neoForgeVersion = VersionDefinition(
102102
"1.21.1" to "21.1.95",
103-
"1.21.4" to "21.4.99-beta",
103+
"1.21.4" to "21.4.124",
104+
"1.21.5" to "21.5.34-beta"
104105
)
105106
val minimumNeoForgeVersion = VersionDefinition(
106107
// We need this version or higher on 1.21.4, on other versions we don't care
@@ -111,19 +112,23 @@ val forgeVersion = VersionDefinition(
111112
"1.20.1" to "1.20.1-47.3.0",
112113
"1.21.1" to "1.21.1-52.0.40",
113114
"1.21.4" to "1.21.4-54.1.0",
115+
"1.21.5" to "1.21.5-55.0.4"
114116
)
115117
val kotlinForForgeVersion = VersionDefinition(
116118
"1.20.1" to "4.11.0",
117119
"1.21.1" to "5.7.0",
118120
"1.21.4" to "5.7.0",
121+
"1.21.5" to "5.7.0",
119122
)
120123
val universalVersion = VersionDefinition(
121-
"1.21.1" to "1.21-${mcPlatform.loaderString}:389",
122-
default = "${mcPlatform.name}:389"
124+
"1.21.1" to "1.21-${mcPlatform.loaderString}:401",
125+
default = "${mcPlatform.name}:401"
123126
)
124127

125128
dependencies {
126129
minecraft("com.mojang:minecraft:${mcPlatform.versionString}")
130+
131+
@Suppress("UnstableApiUsage")
127132
mappings(loom.layered {
128133
officialMojangMappings()
129134
parchmentVersion.getOrNull(mcPlatform)?.let {

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Please make sure to report any bugs and/or visual anomalies
44
on [Resourcify's GitHub](https://github.com/DeDiamondPro/Resourcify/issues) or in
55
the [Discord](https://discord.gg/XtAuqsJWby).
66

7-
- Ported to 1.21.5 fabric
7+
- Ported to 1.21.5
88

99
----------------------------------------------------------------------------------------------------
1010

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kotlin = "2.0.20"
44
fabric_language_kotlin = "1.11.0+kotlin.2.0.0" # Use 2.0.0 here since it is the minimum kotlin version we require
55

66
# Build system
7-
arch_loom = "1.9-SNAPSHOT"
7+
arch_loom = "1.10-SNAPSHOT"
88
shadow = "8.1.1"
99
publishing = "0.8.3"
1010

publish.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ set -e
99
./gradlew publish-1.21.1-fabric
1010
./gradlew publish-1.21.4-forge
1111
./gradlew publish-1.21.4-neoforge
12-
./gradlew publish-1.21.4-fabric
12+
./gradlew publish-1.21.4-fabric
13+
./gradlew publish-1.21.5-forge
14+
./gradlew publish-1.21.5-neoforge
15+
./gradlew publish-1.21.5-fabric

settings.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ val platforms = listOf(
3939
"1.21.4-forge",
4040
"1.21.4-neoforge",
4141
"1.21.4-fabric",
42+
"1.21.5-forge",
43+
"1.21.5-neoforge",
4244
"1.21.5-fabric",
4345
)
4446

0 commit comments

Comments
 (0)