A mod that adds your armor to the hud modrinth.com/mod/simple-armor-hud
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

updated gradle info to 1.18

authored by

LegoRaft and committed by
GitHub
9c3786e2 23f6437a

+8 -8
+4 -4
build.gradle
··· 3 3 id 'maven-publish' 4 4 } 5 5 6 - sourceCompatibility = JavaVersion.VERSION_16 7 - targetCompatibility = JavaVersion.VERSION_16 6 + sourceCompatibility = JavaVersion.VERSION_17 7 + targetCompatibility = JavaVersion.VERSION_17 8 8 9 9 archivesBaseName = project.archives_base_name 10 10 version = project.minecraft_version + "-" + project.mod_version ··· 46 46 // If Javadoc is generated, this must be specified in that task too. 47 47 it.options.encoding = "UTF-8" 48 48 49 - // Minecraft 1.17 (21w19a) upwards uses Java 16. 50 - it.options.release = 16 49 + // Minecraft 1.18 (1.18-pre2) upwards uses Java 16. 50 + it.options.release = 17 51 51 } 52 52 53 53 java {
+4 -4
gradle.properties
··· 3 3 4 4 # Fabric Properties 5 5 # check these on https://fabricmc.net/versions.html 6 - minecraft_version=1.17.1 7 - yarn_mappings=1.17.1+build.39 8 - loader_version=0.11.6 6 + minecraft_version=1.18 7 + yarn_mappings=1.18+build.1 8 + loader_version=0.12.8 9 9 10 10 # Mod Properties 11 - mod_version = 1.1.1 11 + mod_version = 1.2.1 12 12 maven_group = com.armor-hud 13 13 archives_base_name = simple-armor-hud 14 14