From 3b02f63a38cbd8f0579ba0f096e2355126e00f21 Mon Sep 17 00:00:00 2001 From: Eris Date: Sat, 12 Jul 2025 23:01:56 -0500 Subject: [PATCH 1/4] bump to 4.3 --- launch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launch.sh b/launch.sh index 15881af..b201269 100644 --- a/launch.sh +++ b/launch.sh @@ -3,8 +3,8 @@ set -x -NEOFORGE_VERSION=21.1.185 -SERVER_VERSION=4.2 +NEOFORGE_VERSION=21.1.191 +SERVER_VERSION=4.3 cd /data From 498f84b1f08f979c83221652f02413504a77a4d9 Mon Sep 17 00:00:00 2001 From: Eris Date: Sat, 12 Jul 2025 23:06:44 -0500 Subject: [PATCH 2/4] Update README.md to 4.3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f3deee..0f68f65 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# [All the Mods 10-4.2](https://www.curseforge.com/minecraft/modpacks/all-the-mods-10) on Curseforge +# [All the Mods 10-4.3](https://www.curseforge.com/minecraft/modpacks/all-the-mods-10) on Curseforge - [Description](#description) From a22ec3b956a39ed512a3e21d9a112ff67f363d98 Mon Sep 17 00:00:00 2001 From: Eris Date: Sat, 12 Jul 2025 23:07:05 -0500 Subject: [PATCH 3/4] Update Dockerfile to 4.3 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ff536b5..d5d2184 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM openjdk:21-buster -LABEL version="4.2" +LABEL version="4.3" RUN apt-get update && apt-get install -y curl unzip jq && \ From 5ae064a87e1be38dfaf9db2af1a7c2d8352bf694 Mon Sep 17 00:00:00 2001 From: Eris Date: Sat, 12 Jul 2025 23:14:18 -0500 Subject: [PATCH 4/4] fix download lin --- launch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch.sh b/launch.sh index b201269..c88c502 100644 --- a/launch.sh +++ b/launch.sh @@ -18,7 +18,7 @@ fi if ! [[ -f "Server-Files-$SERVER_VERSION.zip" ]]; then rm -fr config defaultconfigs kubejs mods packmenu Server-Files-* neoforge* - curl -Lo "Server-Files-$SERVER_VERSION.zip" "https://mediafilez.forgecdn.net/files/6696/937/ServerFiles-$SERVER_VERSION.zip" || exit 9 + curl -Lo "Server-Files-$SERVER_VERSION.zip" "https://mediafilez.forgecdn.net/files/6759/65/ServerFiles-$SERVER_VERSION.zip" || exit 9 unzip -u -o "Server-Files-$SERVER_VERSION.zip" -d /data DIR_TEST="ServerFiles-$SERVER_VERSION"