From a66e9e3fcc2857b03b5c57182e2399c3120e2d3f Mon Sep 17 00:00:00 2001 From: Sakura Ryoko Date: Fri, 29 Nov 2024 11:11:19 -0500 Subject: [PATCH] port to rc2 --- build.gradle | 6 +++--- gradle.properties | 13 ++++++------- src/main/resources/fabric.mod.json | 4 ++-- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/build.gradle b/build.gradle index ec5763363..cf89fb5ae 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ plugins { id 'fabric-loom' version '1.8-SNAPSHOT' } -sourceCompatibility = JavaVersion.VERSION_21 -targetCompatibility = JavaVersion.VERSION_21 +//sourceCompatibility = JavaVersion.VERSION_21 +//targetCompatibility = JavaVersion.VERSION_21 repositories { //maven { url 'https://masa.dy.fi/maven' } @@ -27,7 +27,7 @@ dependencies { implementation "com.google.code.findbugs:jsr305:3.0.2" //modImplementation "fi.dy.masa.malilib:malilib-fabric-${project.minecraft_version_out}:${project.malilib_version}" - modImplementation "com.github.sakura-ryoko:malilib:${project.malilib_id}" + modImplementation "com.github.sakura-ryoko:malilib:${project.malilib_version}" // Fabric API. This is technically optional, but you probably want it anyway. //include(modApi(fabricApi.module("fabric-api-base", project.fabric_api_version))) diff --git a/gradle.properties b/gradle.properties index 2d37a9d1d..d91f57e7f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,17 +9,16 @@ author = masa mod_file_name = tweakeroo-fabric # Current mod version -mod_version = 0.22.59-beta2 +mod_version = 0.22.59-rc2 # Required malilib version -malilib_version = 0.22.59-beta2 -malilib_id = 665d8e0998 +malilib_version = 7328443a5b # Minecraft, Fabric Loader and API and mappings versions -minecraft_version_out = 1.21.4-pre2 -minecraft_version = 1.21.4-pre2 -mappings_version = 1.21.4-pre2+build.1 +minecraft_version_out = 1.21.4-rc2 +minecraft_version = 1.21.4-rc2 +mappings_version = 1.21.4-rc2+build.1 fabric_loader_version = 0.16.9 mod_menu_version = 12.0.0-beta.1 -# fabric_api_version = 0.110.0+1.21.4 +# fabric_api_version = 0.110.2+1.21.4 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9ee027a7d..fbc74b354 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -33,7 +33,7 @@ ], "depends": { - "minecraft": "1.21.4-beta.2", - "malilib": ">=0.22.59-beta2" + "minecraft": ">=1.21.4-rc.2 <1.21.5", + "malilib": ">=0.22.59-rc2" } }