Skip to content

Commit c850c3d

Browse files
committed
Update to 1.17 support
2 parents c89b474 + 86ef08d commit c850c3d

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

README.md

Lines changed: 3 additions & 3 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 and the Fabric loader.
5+
This mod requires Minecraft 1.16.5 or 1.17 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. That's it. This is a very minimalistic mod. No settings are required nor provided.
88

@@ -17,7 +17,7 @@ This is what it looks like when you are using the mod.
1717

1818
## Download
1919

20-
You can download the latest version here: [statuseffecttimer-1.0.1.jar](https://github.com/magicus/statuseffecttimer/releases/download/v1.0.1/statuseffecttimer-1.0.1.jar)
20+
You can download the latest version here: [statuseffecttimer-1.0.2.jar](https://github.com/magicus/statuseffecttimer/releases/download/v1.0.2/statuseffecttimer-1.0.2.jar)
2121

2222
## Installation
2323

@@ -28,5 +28,5 @@ Install this as you would any other Fabric mod. (Personally, I recommend MultiMC
2828

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

31-
Currently only Minecraft 1.16.5 is supported, but it would probably be trivial to add support for other versions.
31+
Currently only Minecraft 1.16.5 and 1.17 are supported, but it would probably be trivial to add support for other versions.
3232
If you want support for another version, please open an issue and state the requested version.

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.7-SNAPSHOT'
2+
id 'fabric-loom' version '0.8-SNAPSHOT'
33
id 'maven-publish'
44
}
55

gradle.properties

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

44
# Fabric Properties
5-
# check these on https://fabricmc.net/versions.html
6-
minecraft_version=1.16.5
7-
yarn_mappings=1.16.5+build.9
8-
loader_version=0.11.3
5+
# check these on https://fabricmc.net/versions.html
6+
minecraft_version=1.17
7+
yarn_mappings=1.17+build.11
8+
loader_version=0.11.6
99

1010
# Mod Properties
11-
mod_version = 1.0.1
12-
maven_group = se.icus.mag
13-
archives_base_name = statuseffecttimer
11+
mod_version = 1.0.2
12+
maven_group = se.icus.mag
13+
archives_base_name = statuseffecttimer
1414

1515
# Dependencies
16-
# 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)
17-
fabric_version=0.34.2+1.16
16+
# 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.35.2+1.17

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.16.x"
28+
"minecraft": "1.17.x"
2929
}
3030
}

0 commit comments

Comments
 (0)