From a2194f8bc878ebae001fcf34c5312f71ef7f2b50 Mon Sep 17 00:00:00 2001 From: Grayray75 <69988482+Grayray75@users.noreply.github.com> Date: Thu, 22 Aug 2024 18:41:14 +0200 Subject: [PATCH] Update to Minecraft 1.21.1 --- README.md | 3 ++- build.gradle | 5 ++++- gradle.properties | 10 +++++----- src/main/resources/fabric.mod.json | 5 +++-- 4 files changed, 14 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8a86504..f386f36 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,8 @@ You can download this mod from: | Minecraft version | Latest mod version | Support status | | ----------------- | ------------------ | ------------------------- | -| 1.20.5, 1.20.6 | `4.1.0` | :heavy_check_mark: Active | +| 1.21, 1.21.1 | `4.2.1` | :heavy_check_mark: Active | +| 1.20.5, 1.20.6 | `4.1.0` | :x: Obsolete | | 1.20.3, 1.20.4 | `4.0.0` | :x: Obsolete | | 1.14.0 - 1.20.2 | `3.1.0` | :x: Obsolete | | 1.12.2 | | :white_circle: soon™ | diff --git a/build.gradle b/build.gradle index 8a3f686..6e70b2c 100644 --- a/build.gradle +++ b/build.gradle @@ -25,6 +25,8 @@ dependencies { includeFabricApiModule "fabric-key-binding-api-v1" includeFabricApiModule "fabric-lifecycle-events-v1" + modLocalRuntime "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}" modApi("me.shedaniel.cloth:cloth-config-fabric:${project.cloth_config_version}") { @@ -91,7 +93,7 @@ modrinth { changelog = "A changelog can be found at https://github.com/Grayray75/FPS-Display/blob/main/CHANGELOG.md" uploadFile = remapJar - gameVersions = ["1.21"] + gameVersions = ["1.21", "1.21.1"] loaders = ["fabric", "quilt"] dependencies { optional.project "modmenu" @@ -111,6 +113,7 @@ curseforge { changelog = "A changelog can be found at https://github.com/Grayray75/FPS-Display/blob/main/CHANGELOG.md" addGameVersion "1.21" + addGameVersion "1.21.1" addGameVersion "Fabric" addGameVersion "Quilt" addGameVersion "Java 21" diff --git a/gradle.properties b/gradle.properties index f2c5981..7cb99f5 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx2G # Fabric Properties # https://fabricmc.net/develop/ - minecraft_version=1.21 - yarn_mappings=1.21+build.4 - loader_version=0.15.11 + minecraft_version=1.21.1 + yarn_mappings=1.21.1+build.3 + loader_version=0.16.2 # Mod Properties mod_version=4.2.0 @@ -14,7 +14,7 @@ org.gradle.jvmargs=-Xmx2G # Dependencies # https://linkie.shedaniel.dev/ - fabric_version=0.100.4+1.21 + fabric_version=0.102.1+1.21.1 modmenu_version=11.0.1 - cloth_config_version=15.0.127 + cloth_config_version=15.0.130 yacl_config_version=3.5.0+1.21 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 5a9a5c0..67f706d 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -10,7 +10,8 @@ "contributors": [ "koelle25", "Boxadactle", - "notlin4" + "notlin4", + "Alexander317" ], "contact": { "homepage": "https://github.com/Grayray75/FPS-Display", @@ -33,7 +34,7 @@ ], "depends": { "fabricloader": ">=0.15.10", - "minecraft": ["1.21"], + "minecraft": ["1.21", "1.21.1"], "fabric-key-binding-api-v1": "*", "fabric-lifecycle-events-v1": "*" },