From 8f1b01256e8c25c449d031b7b13edcad0ec5fa45 Mon Sep 17 00:00:00 2001 From: Juuz <6596629+Juuxel@users.noreply.github.com> Date: Sun, 8 Jan 2023 20:57:14 +0200 Subject: [PATCH] Update to 1.19.2 --- .gitattributes | 2 ++ build.gradle | 5 +++-- gradle.properties | 14 +++++++------- gradle/wrapper/gradle-wrapper.properties | 2 +- src/main/resources/fabric.mod.json | 10 +++++----- 5 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..104f43d --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto eol diff --git a/build.gradle b/build.gradle index a17cb68..e47b272 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,8 @@ plugins { - id 'fabric-loom' version '0.11-SNAPSHOT' + id 'fabric-loom' version '1.0-SNAPSHOT' id 'maven-publish' - // TODO: Licenser and LQF + id 'io.github.juuxel.loom-quiltflower' version '1.7.4' + // TODO: Licenser } java { diff --git a/gradle.properties b/gradle.properties index aa7054e..2c9429a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,16 +3,16 @@ org.gradle.jvmargs = -Xmx1G # Fabric Properties # check these on https://fabricmc.net/use -minecraft_version = 1.18.2 -yarn_mappings = 1.18.2+build.3 -loader_version = 0.14.5 +minecraft_version = 1.19.2 +yarn_mappings = 1.19.2+build.28 +loader_version = 0.14.12 # Mod Properties -mod_version = 2.0.1 +mod_version = 2.1.0 maven_group = io.github.juuxel archives_base_name = VanillaParts # Dependencies -fabric_version = 0.51.1+1.18.2 -libmultipart = 0.7.2 -blockstoparts = 0.2.4+1.18.2 +fabric_version = 0.72.0+1.19.2 +libmultipart = 0.8.0 +blockstoparts = 0.3.0+1.19.2 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2e6e589..070cb70 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 703c748..5ed4aa6 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -27,10 +27,10 @@ ], "depends": { - "minecraft": "~1.18.2", - "fabricloader": ">=0.12.12", - "fabric": ">=0.51.1", - "libmultipart": ">=0.7.2", - "blockstoparts": ">=0.2.4" + "minecraft": "=1.19.2", + "fabricloader": ">=0.14.12", + "fabric": ">=0.72.0", + "libmultipart": ">=0.8.0", + "blockstoparts": ">=0.3.0" } }