From 8aefc3b09fc0261d9813ef486b07fa1fab6b11b7 Mon Sep 17 00:00:00 2001 From: Aeltumn Date: Tue, 22 Oct 2024 17:41:18 +0200 Subject: [PATCH] Update to 1.21.2 release --- fabric/build.gradle.kts | 8 +------- fabric/src/main/resources/fabric.mod.json | 9 ++++----- gradle.properties | 12 ++++++------ 3 files changed, 11 insertions(+), 18 deletions(-) diff --git a/fabric/build.gradle.kts b/fabric/build.gradle.kts index ea721555..7ef87587 100644 --- a/fabric/build.gradle.kts +++ b/fabric/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("fabric-loom") version "1.7-SNAPSHOT" + id("fabric-loom") version "1.8-SNAPSHOT" } repositories { @@ -36,12 +36,6 @@ dependencies { api(this) } - // Use an updated version of mixin extras so we can use WrapMethod - annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.4.1")?.apply { - include(this) - implementation(this) - } - // Add PRTree which we use for collision detection include("org.khelekore:prtree:1.5") implementation("org.khelekore:prtree:1.5") diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index 303738a9..9fdf06d1 100644 --- a/fabric/src/main/resources/fabric.mod.json +++ b/fabric/src/main/resources/fabric.mod.json @@ -41,13 +41,12 @@ ], "depends": { "fabric": "*", - "fabricloader": ">=0.16.5", - "fabric-api": ">=0.106.0", - "minecraft": ">=1.21.2-beta.5" + "fabricloader": ">=0.16.7", + "fabric-api": ">=0.106.1", + "minecraft": ">=1.21.2" }, "suggests": { - "sodium": ">=0.6.0-beta.1", - "iris": ">=1.8.0-beta.3" + "sodium": ">=0.6.0-beta.3" }, "breaks": { "optifabric": "*" diff --git a/gradle.properties b/gradle.properties index 5a3ca018..8a39a735 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,21 +2,21 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://modmuss50.me/fabric.html -minecraft_version=1.21.2-pre5 -yarn_mappings=1.21.2-pre5+build.2 +minecraft_version=1.21.2 +yarn_mappings=1.21.2+build.1 loader_version=0.16.7 # Fabric API -fabric_version=0.106.0+1.21.2 +fabric_version=0.106.1+1.21.2 # Mod Properties -mod_version=2.4.0-SNAPSHOT +mod_version=2.4.0 # Mod dependencies -sodium = mc1.21-0.6.0-beta.1-fabric +sodium = 0.6.0-beta.3+mc1.21.2 iris = 1.8.0-beta.1+1.21-fabric modmenu = 12.0.0-beta.1 # Enabled mods -enableSodium = false +enableSodium = true enableIris = false enableModMenu = true \ No newline at end of file