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 mod to version 1.19

authored by

LegoRaft and committed by
GitHub
e15d5c3d d9ae70dd

+15 -24
+9 -19
build.gradle
··· 1 1 plugins { 2 - id 'fabric-loom' version '0.9-SNAPSHOT' 2 + id 'fabric-loom' version '0.12-SNAPSHOT' 3 3 id 'maven-publish' 4 4 } 5 5 ··· 7 7 targetCompatibility = JavaVersion.VERSION_17 8 8 9 9 archivesBaseName = project.archives_base_name 10 - version = project.minecraft_version + "-" + project.mod_version 10 + version = project.mod_version 11 11 group = project.maven_group 12 12 13 13 repositories { ··· 25 25 modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" 26 26 27 27 // Fabric API. This is technically optional, but you probably want it anyway. 28 - // modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 28 + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 29 29 30 - // PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs. 31 - // You may need to force-disable transitiveness on them. 30 + // Uncomment the following line to enable the deprecated Fabric API modules. 31 + // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time. 32 + 33 + // modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" 32 34 } 33 35 34 36 processResources { ··· 40 42 } 41 43 42 44 tasks.withType(JavaCompile).configureEach { 43 - // ensure that the encoding is set to UTF-8, no matter what the system default is 44 - // this fixes some edge cases with special characters not displaying correctly 45 - // see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html 46 - // If Javadoc is generated, this must be specified in that task too. 47 - it.options.encoding = "UTF-8" 48 - 49 - // Minecraft 1.18 (1.18-pre2) upwards uses Java 16. 45 + // Minecraft 1.18 (1.18-pre2) upwards uses Java 17. 50 46 it.options.release = 17 51 47 } 52 48 ··· 67 63 publishing { 68 64 publications { 69 65 mavenJava(MavenPublication) { 70 - // add all the jars that should be included when publishing to maven 71 - artifact(remapJar) { 72 - builtBy remapJar 73 - } 74 - artifact(sourcesJar) { 75 - builtBy remapSourcesJar 76 - } 66 + from components.java 77 67 } 78 68 } 79 69
+6 -5
gradle.properties
··· 2 2 org.gradle.jvmargs=-Xmx1G 3 3 4 4 # Fabric Properties 5 - # check these on https://fabricmc.net/versions.html 6 - minecraft_version=1.18 7 - yarn_mappings=1.18+build.1 8 - loader_version=0.12.8 5 + # check these on https://fabricmc.net/develop 6 + minecraft_version=1.19 7 + yarn_mappings=1.19+build.1 8 + loader_version=0.14.6 9 9 10 10 # Mod Properties 11 - mod_version = 1.2.1 11 + mod_version = 1.2.2 12 12 maven_group = com.armor-hud 13 13 archives_base_name = simple-armor-hud 14 14 15 15 # Dependencies 16 + fabric_version=0.55.1+1.19