Browse Source

Merge branch 'hotfix/v23.3.3' into develop

pull/4240/head
Daniel Gibbs 2 years ago
parent
commit
b89e9c2de8
  1. 3
      .github/workflows/details-check.yml
  2. 3
      .gitignore
  3. 2
      lgsm/functions/update_minecraft_bedrock.sh
  4. 2
      lgsm/modules/update_minecraft_bedrock.sh
  5. 2
      lgsm/modules/update_papermc.sh
  6. 2
      linuxgsm.sh
  7. 2
      tests/tests_fctrserver.sh
  8. 2
      tests/tests_jc2server.sh
  9. 2
      tests/tests_mcserver.sh
  10. 2
      tests/tests_ts3server.sh

3
.github/workflows/details-check.yml

@ -67,6 +67,9 @@ jobs:
- name: Display parameters
run: grep "startparameters" lgsm/config-default/config-lgsm/${{ matrix.shortname }}server/_default.cfg
- name: Details
run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./${{ matrix.shortname }}server details
- name: Detect details
run: LGSM_GITHUBBRANCH="${GITHUB_REF#refs/heads/}" ./${{ matrix.shortname }}server detect-details

3
.gitignore

@ -1,3 +1,2 @@
*.db
.idea
.vscode/settings.json
/node_modules

2
lgsm/functions/update_minecraft_bedrock.sh

@ -34,7 +34,7 @@ fn_update_localbuild() {
# Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to get local build.
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version //' | tr -d '\000-\011\013-\037')
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version: //' | tr -d '\000-\011\013-\037')
if [ -z "${localbuild}" ]; then
fn_print_error "Checking local build: ${remotelocation}: missing local build info"
fn_script_log_error "Missing local build info"

2
lgsm/modules/update_minecraft_bedrock.sh

@ -34,7 +34,7 @@ fn_update_localbuild() {
# Gets local build info.
fn_print_dots "Checking local build: ${remotelocation}"
# Uses log file to get local build.
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version //' | tr -d '\000-\011\013-\037')
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version: //' | tr -d '\000-\011\013-\037')
if [ -z "${localbuild}" ]; then
fn_print_error "Checking local build: ${remotelocation}: missing local build info"
fn_script_log_error "Missing local build info"

2
lgsm/modules/update_papermc.sh

@ -51,7 +51,7 @@ fn_update_remotebuild() {
fi
fi
# Get list of paper builds for specific Minecraft: Java Edition version.
remotebuildresponsemcversion=$(curl -s "${apiurl}/paper/versions/${remotebuildmcversion}")
remotebuildresponsemcversion=$(curl -s "${apiurl}/${paperproject}/versions/${remotebuildmcversion}")
# Get latest paper build for specific Minecraft: Java Edition version.
remotebuildpaperversion=$(echo "${remotebuildresponsemcversion}" | jq -r '.builds[-1]')
# Get various info about the paper build.

2
linuxgsm.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="v23.3.2"
version="v23.3.3"
shortname="core"
gameservername="core"
commandname="CORE"

2
tests/tests_fctrserver.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="v23.3.2"
version="v23.3.3"
shortname="fctr"
gameservername="fctrserver"
commandname="CORE"

2
tests/tests_jc2server.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="v23.3.2"
version="v23.3.3"
shortname="jc2"
gameservername="jc2server"
commandname="CORE"

2
tests/tests_mcserver.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="v23.3.2"
version="v23.3.3"
shortname="mc"
gameservername="mcserver"
commandname="CORE"

2
tests/tests_ts3server.sh

@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
set -x
fi
version="v23.3.2"
version="v23.3.3"
shortname="ts3"
gameservername="ts3server"
commandname="CORE"

Loading…
Cancel
Save