diff --git a/README.md b/README.md index d731d30..f328768 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Whenever possible, the mod will show a warning after toggling one of them, and o However, some type of packs cannot be detected, and no warning will be displayed for those. ### Registry Packs -The new type of packs introduced in MC 1.21. Packs that add data to registries (painting variants, etc), **are not detected by the mod**, but still require a world restart to fully take effects. +The new type of packs introduced in MC 1.21, those packs which add data to registries (painting variants, etc), **are not detected by the mod**, but still require a world restart to fully take effects. Toggling these packs may cause some errors in the log, but those are benign so long as you restart the world immediately afterward. This behaviour is no different from using the `/datapack` command. @@ -27,4 +27,4 @@ The Vanilla datapack can technically be disabled, but you probably don't want to Doing so will usually break worlds unless you know exactly what you are doing. An additional warning screen will appear when trying to disable this pack. -If you can't load a world after having disabled the Vanilla datapack, loading it in Safe Mode should be able to restore it. \ No newline at end of file +If you can't load a world after having disabled the Vanilla datapack, loading it in Safe Mode should be able to restore it. diff --git a/changelog.md b/changelog.md index 58a13ec..e12ca47 100644 --- a/changelog.md +++ b/changelog.md @@ -28,3 +28,5 @@ - The menu buttons are now accessible via Mod Menu. ### 2.0.1 - Added Traditional Chinese (zh_tw) +### 2.0.2 +- Updated for MC 1.21.2 diff --git a/gradle.properties b/gradle.properties index b9c8ee0..2f5aedc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,7 +12,7 @@ loader_version=0.15.11 fabric_version=0.100.7+1.21 # Mod Properties -mod_version=2.0.1 +mod_version=2.0.2 maven_group=fr.estecka.packrulemenus archives_base_name=packrule-menus diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index e97c65f..c59bdc2 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -12,7 +12,8 @@ ], "contact": { "homepage": "https://modrinth.com/mod/packrule-menus", - "sources": "https://github.com/Estecka/mc-PackRule-Menus" + "sources": "https://github.com/Estecka/mc-PackRule-Menus", + "issues": "https://github.com/Estecka/mc-PackRule-Menus/issues" }, "license": "MIT", "icon": "assets/packrule-menus/icon.png", @@ -26,7 +27,7 @@ "packrule-menus.mixins.json" ], "depends": { - "minecraft": "^1.20.5", + "minecraft": ">=1.20.5 <1.21.2", "fabricloader": ">=0.15.11", "java": ">=21" },