From 0018cfdf91681b331287a299d7c229d85562378a Mon Sep 17 00:00:00 2001 From: firenoo <49818773+firenoo@users.noreply.github.com> Date: Mon, 15 May 2023 23:34:06 -0700 Subject: [PATCH 1/5] Bump hodgepodge version to 2.2.13 (#188) * Bump hodgepodge version to 2.2.12 Hodgepodge 2.2.8 pulls in an old version of gtnh lib, so some mods (like AE2) fail to run because it depends on a newer version. * Bump to 2.2.13 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8bbb6e92..e919ffe9 100644 --- a/build.gradle +++ b/build.gradle @@ -730,7 +730,7 @@ dependencies { java17Dependencies("com.github.GTNewHorizons:lwjgl3ify:${lwjgl3ifyVersion}") } if (modId != 'hodgepodge') { - java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.2.8') + java17Dependencies('com.github.GTNewHorizons:Hodgepodge:2.2.13') } java17PatchDependencies('net.minecraft:launchwrapper:1.15') {transitive = false} From 483f1099abe47907b1f1a3cd6d511916713f5c64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 May 2023 08:57:28 +0200 Subject: [PATCH 2/5] [ci skip] update build script version to 1684218858 (#189) Co-authored-by: Dream-Master --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e919ffe9..a8b7532d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1684139283 +//version: 1684218858 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available. From adb02a0d7a20f7a6d4ec2d4c89183f99c6a5f7fa Mon Sep 17 00:00:00 2001 From: BlueWeabo Date: Tue, 30 May 2023 12:50:40 +0300 Subject: [PATCH 3/5] add .factorypath to it (#190) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 34ac7342..39c072d3 100644 --- a/.gitignore +++ b/.gitignore @@ -30,3 +30,4 @@ src/main/resources/mixins.*([!.]).json *.bat *.DS_Store !gradlew.bat +.factorypath From 9881e0e69806a63cd1fbda62bebbb81e42800a17 Mon Sep 17 00:00:00 2001 From: chill Date: Sat, 3 Jun 2023 11:37:30 +0200 Subject: [PATCH 4/5] Update and improve faq (#191) * update and improve faq * reword functions to APIs --- build.gradle | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index a8b7532d..c767d5b4 100644 --- a/build.gradle +++ b/build.gradle @@ -1276,12 +1276,14 @@ tasks.register('faq') { description = 'Prints frequently asked questions about building a project' doLast { - print("If your build fails to fetch dependencies, they might have been deleted and replaced by newer " + - "versions.\nCheck if the versions you try to fetch are still on the distributing sites.\n" + - "The links can be found in repositories.gradle and build.gradle:repositories, " + - "not build.gradle:buildscript.repositories - this one is for gradle plugin metadata.\n\n" + + print("If your build fails to fetch dependencies, run './gradlew updateDependencies'. " + + "Or you can manually check if the versions are still on the distributing sites - " + + "the links can be found in repositories.gradle and build.gradle:repositories, " + + "but not build.gradle:buildscript.repositories - those ones are for gradle plugin metadata.\n\n" + "If your build fails to recognize the syntax of new Java versions, enable Jabel in your " + - "gradle.properties. See how it's done in GTNH ExampleMod/gradle.properties.") + "gradle.properties. See how it's done in GTNH ExampleMod/gradle.properties. " + + "However, keep in mind that Jabel enables only syntax features, but not APIs that were introduced in " + + "Java 9 or later.") } } From 51418f7ee8c22387e9c323a9349584289ff9e2e9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 3 Jun 2023 11:38:33 +0200 Subject: [PATCH 5/5] [ci skip] update build script version to 1685785062 (#192) Co-authored-by: Dream-Master --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index c767d5b4..39309904 100644 --- a/build.gradle +++ b/build.gradle @@ -1,4 +1,4 @@ -//version: 1684218858 +//version: 1685785062 /* DO NOT CHANGE THIS FILE! Also, you may replace this file at any time if there is an update available.