Skip to content

Commit

Permalink
Support for 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
magicus committed Jun 14, 2022
1 parent 40c3a1a commit 21ac95b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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)
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.10-SNAPSHOT'
id 'fabric-loom' version '0.12-SNAPSHOT'
id 'maven-publish'
}

Expand Down
13 changes: 6 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@

"depends": {
"fabricloader": ">=0.7.4",
"minecraft": "1.18.x"
"minecraft": "~1.19"
}
}

0 comments on commit 21ac95b

Please sign in to comment.