Skip to content

Commit 21ac95b

Browse files
committed
Support for 1.19
1 parent 40c3a1a commit 21ac95b

File tree

4 files changed

+13
-17
lines changed

4 files changed

+13
-17
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a Minecraft mod that overlays a timer on the Vanilla status effect HUD icons.
44

5-
This mod requires Minecraft 1.16.5-1.18.2 and the Fabric loader.
5+
This mod requires Minecraft 1.16.5-1.19 and the Fabric loader.
66

77
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.
88

@@ -21,11 +21,11 @@ This is what it looks like when you are using the mod.
2121

2222
The latest version is 1.1.1.
2323

24-
Direct download links for Minecraft 1.18.1-1.18.2:
24+
Direct download links for Minecraft 1.19:
2525

26-
* 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)
27-
* 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)
28-
* Download from CurseForge: [statuseffecttimer-1.1.1+1.18.1.jar](https://www.curseforge.com/minecraft/mc-mods/status-effect-timer/files/3754930)
26+
* 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)
27+
* 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)
28+
* Download from CurseForge: [statuseffecttimer-1.1.1+1.19.jar](https://www.curseforge.com/minecraft/mc-mods/status-effect-timer/download/3832036)
2929

3030
For all other Minecraft releases, check these download sites:
3131
* [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
4141

4242
Do you have any problems with the mod? Please open an issue here on Github.
4343

44-
Currently Minecraft versions 1.16.5 to 1.18.2 are supported, but it would probably be trivial to add support for other versions.
45-
If you want support for another version, please open an issue and state the requested version.
46-
4744
## Known Incompatibilities
4845

4946
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.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'fabric-loom' version '0.10-SNAPSHOT'
2+
id 'fabric-loom' version '0.12-SNAPSHOT'
33
id 'maven-publish'
44
}
55

gradle.properties

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
org.gradle.jvmargs=-Xmx1G
33

44
# Fabric Properties
5-
# check these on https://fabricmc.net/versions.html
6-
minecraft_version=1.18.1
7-
yarn_mappings=1.18.1+build.22
8-
loader_version=0.13.3
5+
# check these on https://fabricmc.net/develop
6+
minecraft_version=1.19
7+
yarn_mappings=1.19+build.2
8+
loader_version=0.14.7
99

1010
# Mod Properties
11-
mod_version = 1.1.1+1.18.1
11+
mod_version = 1.1.1+1.19
1212
maven_group = se.icus.mag
1313
archives_base_name = statuseffecttimer
1414

1515
# Dependencies
1616
# Fabric api
17-
# 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)
18-
fabric_version=0.46.6+1.18
17+
fabric_version=0.56.0+1.19

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525

2626
"depends": {
2727
"fabricloader": ">=0.7.4",
28-
"minecraft": "1.18.x"
28+
"minecraft": "~1.19"
2929
}
3030
}

0 commit comments

Comments
 (0)