From a0928731270d9bcd7f38e8f39ac8685e0bb5f106 Mon Sep 17 00:00:00 2001 From: Backryun Date: Mon, 2 Oct 2023 15:59:28 +0900 Subject: [PATCH 1/6] fix workflow+update deps --- .github/workflows/gradle.yml | 4 ++-- build.gradle | 2 +- gradle.properties | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 8df2321..75bd056 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -1,8 +1,8 @@ on: push: - branches: [ "fabric-1.19.3" ] + branches: [ "fabric-1.20.2" ] pull_request: - branches: [ "fabric-1.19.3" ] + branches: [ "fabric-1.20.2" ] permissions: contents: read diff --git a/build.gradle b/build.gradle index b09c67e..733c244 100755 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.3-SNAPSHOT' + id 'fabric-loom' version '1.4-SNAPSHOT' id 'maven-publish' } diff --git a/gradle.properties b/gradle.properties index a94510f..47e369b 100755 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop minecraft_version=1.20.2 - yarn_mappings=1.20.2+build.1 + yarn_mappings=1.20.2+build.2 loader_version=0.14.22 # Mod Properties @@ -15,6 +15,6 @@ org.gradle.parallel=true # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.89.1+1.20.2 + fabric_version=0.89.3+1.20.2 satin_version=1.14.0 midnightlib_version=1.5.0-fabric From b240c303c322a77edd934e8edc841f605620c3d5 Mon Sep 17 00:00:00 2001 From: Backryun Date: Tue, 10 Oct 2023 22:21:26 +0900 Subject: [PATCH 2/6] Update gradle+API+Yarn+Loader --- gradle.properties | 6 +++--- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index 47e369b..74d4742 100755 --- a/gradle.properties +++ b/gradle.properties @@ -5,8 +5,8 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop minecraft_version=1.20.2 - yarn_mappings=1.20.2+build.2 - loader_version=0.14.22 + yarn_mappings=1.20.2+build.4 + loader_version=0.14.23 # Mod Properties mod_version=3.1.1 @@ -15,6 +15,6 @@ org.gradle.parallel=true # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.89.3+1.20.2 + fabric_version=0.90.0+1.20.2 satin_version=1.14.0 midnightlib_version=1.5.0-fabric diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 532677e..870dc35 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME From 7ed281b2f9005b51c5e00daaa19868355dc60c82 Mon Sep 17 00:00:00 2001 From: Backryun Date: Tue, 31 Oct 2023 00:38:17 +0900 Subject: [PATCH 3/6] Update API+Loader --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 74d4742..3ebdfa5 100755 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ org.gradle.parallel=true # check these on https://fabricmc.net/develop minecraft_version=1.20.2 yarn_mappings=1.20.2+build.4 - loader_version=0.14.23 + loader_version=0.14.24 # Mod Properties mod_version=3.1.1 @@ -15,6 +15,6 @@ org.gradle.parallel=true # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.90.0+1.20.2 + fabric_version=0.90.4+1.20.2 satin_version=1.14.0 midnightlib_version=1.5.0-fabric From 36514d59014bc3217deb774a00fbc95c3a63661b Mon Sep 17 00:00:00 2001 From: Backryun Date: Fri, 3 Nov 2023 19:28:18 +0900 Subject: [PATCH 4/6] Update API --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 3ebdfa5..47cc716 100755 --- a/gradle.properties +++ b/gradle.properties @@ -15,6 +15,6 @@ org.gradle.parallel=true # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.90.4+1.20.2 + fabric_version=0.90.7+1.20.2 satin_version=1.14.0 midnightlib_version=1.5.0-fabric From ef583e6aceba6fb1f3594eb203655a1ee753167a Mon Sep 17 00:00:00 2001 From: Backryun Date: Mon, 11 Dec 2023 18:22:27 +0900 Subject: [PATCH 5/6] Ready for update 1.20.4 --- .github/workflows/gradle.yml | 4 ++-- gradle.properties | 10 +++++----- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 75bd056..f52c2eb 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -1,8 +1,8 @@ on: push: - branches: [ "fabric-1.20.2" ] + branches: [ "fabric-1.20.4" ] pull_request: - branches: [ "fabric-1.20.2" ] + branches: [ "fabric-1.20.4" ] permissions: contents: read diff --git a/gradle.properties b/gradle.properties index 47cc716..5b45436 100755 --- a/gradle.properties +++ b/gradle.properties @@ -4,17 +4,17 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop - minecraft_version=1.20.2 - yarn_mappings=1.20.2+build.4 - loader_version=0.14.24 + minecraft_version=1.20.4 + yarn_mappings=1.20.4+build.1 + loader_version=0.15.1 # Mod Properties - mod_version=3.1.1 + mod_version=3.2.0 maven_group=com.tterrag.blur archives_base_name=blur # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.90.7+1.20.2 + fabric_version=0.91.2+1.20.4 satin_version=1.14.0 midnightlib_version=1.5.0-fabric diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 870dc35..7cf0814 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME From 266a37da206474ef36cb6f193695c8d9c5822bf6 Mon Sep 17 00:00:00 2001 From: backryun Date: Tue, 19 Dec 2023 22:06:15 +0900 Subject: [PATCH 6/6] satin+midnightlib update --- gradle.properties | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index 5b45436..309695a 100755 --- a/gradle.properties +++ b/gradle.properties @@ -5,8 +5,8 @@ org.gradle.parallel=true # Fabric Properties # check these on https://fabricmc.net/develop minecraft_version=1.20.4 - yarn_mappings=1.20.4+build.1 - loader_version=0.15.1 + yarn_mappings=1.20.4+build.3 + loader_version=0.15.3 # Mod Properties mod_version=3.2.0 @@ -15,6 +15,6 @@ org.gradle.parallel=true # Dependencies # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api - fabric_version=0.91.2+1.20.4 - satin_version=1.14.0 - midnightlib_version=1.5.0-fabric + fabric_version=0.91.3+1.20.4 + satin_version=1.15.0 + midnightlib_version=1.5.2-fabric