https://modrinth.com/mod/breakfree

Update to 1.19

+13 -8
+6 -1
build.gradle
··· 1 1 plugins { 2 - id 'fabric-loom' version '0.10-SNAPSHOT' 2 + id 'fabric-loom' version '0.12-SNAPSHOT' 3 3 id 'maven-publish' 4 4 } 5 5 ··· 26 26 27 27 // Fabric API. This is technically optional, but you probably want it anyway. 28 28 modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" 29 + 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}" 29 34 } 30 35 31 36 processResources {
+5 -5
gradle.properties
··· 2 2 org.gradle.jvmargs=-Xmx1G 3 3 # Fabric Properties 4 4 # check these on https://fabricmc.net/versions.html 5 - minecraft_version=1.18 6 - yarn_mappings=1.18+build.1 7 - loader_version=0.12.8 5 + minecraft_version=1.19 6 + yarn_mappings=1.19+build.2 7 + loader_version=0.14.7 8 8 # Mod Properties 9 - mod_version=1.0.1 9 + mod_version=1.0.2 10 10 maven_group=io.gtihub.justapotota 11 11 archives_base_name=breakfree 12 12 # Dependencies 13 13 # check this on https://fabricmc.net/versions.html 14 - fabric_version=0.43.1+1.18 14 + fabric_version=0.55.3+1.19
+1 -1
gradle/wrapper/gradle-wrapper.properties
··· 1 1 distributionBase=GRADLE_USER_HOME 2 2 distributionPath=wrapper/dists 3 - distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip 3 + distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip 4 4 zipStoreBase=GRADLE_USER_HOME 5 5 zipStorePath=wrapper/dists
+1 -1
src/main/resources/fabric.mod.json
··· 17 17 "depends": { 18 18 "fabricloader": ">=0.11.3", 19 19 "fabric": "*", 20 - "minecraft": "1.18.x", 20 + "minecraft": "1.19.x", 21 21 "java": ">=17" 22 22 } 23 23 }