From 5a39f51f3bad782edd05c55105490e84f283611a Mon Sep 17 00:00:00 2001 From: Aizistral Date: Fri, 27 Mar 2026 20:02:20 +0100 Subject: [PATCH] Update dep versions for Fabric --- Fabric/build.gradle | 34 ++++++---------------------------- Fabric/gradle.properties | 8 ++++---- 2 files changed, 10 insertions(+), 32 deletions(-) diff --git a/Fabric/build.gradle b/Fabric/build.gradle index 74fbc41..d54555f 100644 --- a/Fabric/build.gradle +++ b/Fabric/build.gradle @@ -40,7 +40,7 @@ processResources { } tasks.withType(JavaCompile).configureEach { - it.options.release = 21 + it.options.release = 25 } java { @@ -49,8 +49,8 @@ java { // If you remove this line, sources will not be generated. withSourcesJar() - sourceCompatibility = JavaVersion.VERSION_21 - targetCompatibility = JavaVersion.VERSION_21 + sourceCompatibility = JavaVersion.VERSION_25 + targetCompatibility = JavaVersion.VERSION_25 } jar { @@ -68,20 +68,9 @@ curseforge { changelog = file('../CHANGELOG.md') mainArtifact(remapJar) - addGameVersion '1.21.11' - addGameVersion '1.21.10' - addGameVersion '1.21.9' - addGameVersion '1.21.8' - addGameVersion '1.21.7' - addGameVersion '1.21.6' - addGameVersion '1.21.5' - addGameVersion '1.21.4' - addGameVersion '1.21.3' - addGameVersion '1.21.2' - addGameVersion '1.21.1' - addGameVersion '1.21' + addGameVersion project.minecraft_version addGameVersion 'Fabric' - addGameVersion 'Java 21' + addGameVersion 'Java 25' relations { requiredDependency 'fabric-api' @@ -98,18 +87,7 @@ modrinth { changelog = rootProject.file("../CHANGELOG.md").text uploadFile = remapJar gameVersions = [ - '1.21.11', - '1.21.10', - '1.21.9', - '1.21.8', - '1.21.7', - '1.21.6', - '1.21.5', - '1.21.4', - '1.21.3', - '1.21.2', - '1.21.1', - '1.21' + project.minecraft_version ] loaders = [ 'fabric' ] diff --git a/Fabric/gradle.properties b/Fabric/gradle.properties index fc1e763..af72f52 100644 --- a/Fabric/gradle.properties +++ b/Fabric/gradle.properties @@ -7,9 +7,9 @@ org.gradle.configuration-cache=false # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=1.21.11 -loader_version=0.18.4 -loom_version=1.13-SNAPSHOT +minecraft_version=26.1 +loader_version=0.18.5 +loom_version=1.15-SNAPSHOT # Mod Properties mod_version=Fabric-MC1.21.11-v1.0.0 @@ -17,4 +17,4 @@ maven_group=com.aizistral.nochatrestrictions archives_base_name=NoChatRestrictions # Dependencies -fabric_api_version=0.141.2+1.21.11 \ No newline at end of file +fabric_api_version=0.144.3+26.1 \ No newline at end of file