Skip to content

Commit 36841a6

Browse files
committed
Update for 1.21.5
Changed 1.21.4 target to 1.21.5 (still also supports 1.21.4) On NeoForge one mixin isn't needed anymore due to a vanilla change so it's marked optional for 1.21.4/5
1 parent 7ec7966 commit 36841a6

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

neoforge/src/main/java/me/pieking1215/invmove/neoforge/mixin/client/SprintKeyDownMixin.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ public class SprintKeyDownMixin {
1212
@Redirect(
1313
method = "aiStep",
1414
at = @At(value = "INVOKE", target = "Lnet/minecraft/client/KeyMapping;isDown()Z")
15+
//? if >=1.21.5
16+
, require = 0
1517
)
1618
private boolean isDown(KeyMapping self) {
1719
// (neo)forge does extra checks that make it not work in inventories
1820
return InvMove.instance().withRawKeyDown(self::isDown);
1921
}
20-
}
22+
}

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ fileTree(dir: file('versions'), include: '**/gradle.properties').each { propFile
3838

3939
stonecutter {
4040
create(rootProject) {
41-
versions "1.16.5", "1.17.1", "1.18.2", "1.19.4", "1.20.1", "1.20.4", "1.20.6", "1.21.1", "1.21.3", "1.21.4"
42-
vcsVersion = "1.21.4"
41+
versions "1.16.5", "1.17.1", "1.18.2", "1.19.4", "1.20.1", "1.20.4", "1.20.6", "1.21.1", "1.21.3", "1.21.5"
42+
vcsVersion = "1.21.5"
4343
branch "common"
4444

4545
platformVersionMap.each { platform, versions ->

stonecutter.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import me.modmuss50.mpp.ReleaseType
22

33
plugins {
44
id "dev.kikugie.stonecutter"
5-
id 'dev.architectury.loom' version '1.7-SNAPSHOT' apply false
5+
id 'dev.architectury.loom' version '1.10-SNAPSHOT' apply false
66
id 'architectury-plugin' version '3.4-SNAPSHOT' apply false
77
id 'com.github.johnrengelman.shadow' version '8.1.1' apply false
88
id 'me.modmuss50.mod-publish-plugin' version '0.7.4'
@@ -11,7 +11,7 @@ plugins {
1111
// I was getting weird caching issues and I think this disables caching
1212
stonecutter.debug = true
1313

14-
stonecutter.active "1.21.4" /* [SC] DO NOT EDIT */
14+
stonecutter.active "1.21.5" /* [SC] DO NOT EDIT */
1515

1616
stonecutter.registerChiseled tasks.register("chiseledBuild", stonecutter.chiseled) {
1717
setGroup "project"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ enabled_platforms = fabric,neoforge
44

55
minecraft_min = 1.21.4
66

7-
fabric_api = 0.110.5+1.21.4
8-
neoforge = 21.4.1-beta
7+
fabric_api = 0.119.5+1.21.5
8+
neoforge = 21.5.2-beta
99
neoforge_min = 21.4
1010

1111
cloth_version = 17.0.144
1212
cloth_min = 16
13-
modmenu_version = 13.0.0-beta.1
13+
modmenu_version = 14.0.0-rc.2
1414

1515
# Publishing
16-
display_mc_version = 1.21.4
16+
display_mc_version = 1.21.4/5

0 commit comments

Comments
 (0)