diff --git a/README.md b/README.md index 8c1bfa9..1f9a3c5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is a Minecraft mod that overlays a timer on the Vanilla status effect HUD icons. -This mod requires Minecraft 1.16.5-1.18.2 and the Fabric loader. +This mod requires Minecraft 1.16.5-1.19 and the Fabric loader. This mod overlays the number of seconds left of the status effect, or the number of minutes (followed by "m") if it is more than 60 seconds, on the vanilla status effect indicator. If the effect has an amplifier (as in "Haste II"), the amplifier is also overlaid. That's it. This is a very minimalistic mod. No settings are required nor provided. @@ -21,11 +21,11 @@ This is what it looks like when you are using the mod. The latest version is 1.1.1. -Direct download links for Minecraft 1.18.1-1.18.2: +Direct download links for Minecraft 1.19: -* Download from GitHub: [statuseffecttimer-1.1.1+1.18.1.jar](https://github.com/magicus/statuseffecttimer/releases/download/v1.1.1-1.18.1/statuseffecttimer-1.1.1+1.18.1.jar) -* Download from Modrinth: [statuseffecttimer-1.1.1+1.18.1.jar](https://cdn.modrinth.com/data/T9FDHbY5/versions/1.1.1+1.18.1/statuseffecttimer-1.1.1%2B1.18.1.jar) -* Download from CurseForge: [statuseffecttimer-1.1.1+1.18.1.jar](https://www.curseforge.com/minecraft/mc-mods/status-effect-timer/files/3754930) +* Download from GitHub: [statuseffecttimer-1.1.1+1.19.jar](https://github.com/magicus/statuseffecttimer/releases/download/v1.1.1-1.19/statuseffecttimer-1.1.1+1.19.jar) +* Download from Modrinth: [statuseffecttimer-1.1.1+1.19.jar](https://cdn.modrinth.com/data/T9FDHbY5/versions/1.1.1+1.19/statuseffecttimer-1.1.1%2B1.19.jar) +* Download from CurseForge: [statuseffecttimer-1.1.1+1.19.jar](https://www.curseforge.com/minecraft/mc-mods/status-effect-timer/download/3832036) For all other Minecraft releases, check these download sites: * [GitHub releases](https://github.com/magicus/statuseffecttimer/releases) @@ -41,9 +41,6 @@ Install this as you would any other Fabric mod. (Personally, I recommend MultiMC Do you have any problems with the mod? Please open an issue here on Github. -Currently Minecraft versions 1.16.5 to 1.18.2 are supported, but it would probably be trivial to add support for other versions. -If you want support for another version, please open an issue and state the requested version. - ## Known Incompatibilities This mod does not work if the mod ['Slight' Gui Modifications](https://github.com/shedaniel/slight-gui-modifications) is installed and the configuration `fluidStatusEffects` is enabled. diff --git a/build.gradle b/build.gradle index 795ad54..eb9cff0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.10-SNAPSHOT' + id 'fabric-loom' version '0.12-SNAPSHOT' id 'maven-publish' } diff --git a/gradle.properties b/gradle.properties index c8aaef6..f1a1cfa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,17 +2,16 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties -# check these on https://fabricmc.net/versions.html -minecraft_version=1.18.1 -yarn_mappings=1.18.1+build.22 -loader_version=0.13.3 +# check these on https://fabricmc.net/develop +minecraft_version=1.19 +yarn_mappings=1.19+build.2 +loader_version=0.14.7 # Mod Properties -mod_version = 1.1.1+1.18.1 +mod_version = 1.1.1+1.19 maven_group = se.icus.mag archives_base_name = statuseffecttimer # Dependencies # Fabric api -# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api (or https://fabricmc.net/versions.html) -fabric_version=0.46.6+1.18 +fabric_version=0.56.0+1.19 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 4b640e3..a9621a0 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -25,6 +25,6 @@ "depends": { "fabricloader": ">=0.7.4", - "minecraft": "1.18.x" + "minecraft": "~1.19" } }