Browse Source

Merge branch 'hotfix/v23.5.1' into develop

pull/4320/head
Daniel Gibbs 2 years ago
parent
commit
a7330b81d0
No known key found for this signature in database GPG Key ID: 2076B128385E8C55
  1. 2
      .github/workflows/details-check.yml
  2. 2
      .github/workflows/serverlist-validate.yml
  3. 2
      .github/workflows/update-copyright-years-in-license-file.yml
  4. 2
      .github/workflows/version-check.yml
  5. 0
      lgsm/config-default/config-lgsm/psserver/_default.cfg
  6. 2
      lgsm/modules/core_functions.sh
  7. 2
      lgsm/modules/core_modules.sh
  8. 10
      lgsm/modules/info_game.sh
  9. 2
      linuxgsm.sh
  10. 2
      tests/tests_fctrserver.sh
  11. 2
      tests/tests_jc2server.sh
  12. 2
      tests/tests_mcserver.sh
  13. 2
      tests/tests_ts3server.sh

2
.github/workflows/details-check.yml

@ -15,7 +15,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }} matrix: ${{ steps.set-matrix.outputs.matrix }}
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Generate matrix with generate-matrix.sh - name: Generate matrix with generate-matrix.sh
run: chmod +x .github/workflows/detals-check-generate-matrix.sh; .github/workflows/detals-check-generate-matrix.sh run: chmod +x .github/workflows/detals-check-generate-matrix.sh; .github/workflows/detals-check-generate-matrix.sh

2
.github/workflows/serverlist-validate.yml

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Compare Versions - name: Compare Versions
run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh

2
.github/workflows/update-copyright-years-in-license-file.yml

@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Action Update License Year - name: Action Update License Year

2
.github/workflows/version-check.yml

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Version Check - name: Version Check
run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh

0
lgsm/config-default/config-lgsm/pstbsserver/_default.cfg → lgsm/config-default/config-lgsm/psserver/_default.cfg

2
lgsm/modules/core_functions.sh

@ -8,7 +8,7 @@
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.5.0" modulesversion="v23.5.1"
# Core # Core

2
lgsm/modules/core_modules.sh

@ -8,7 +8,7 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
modulesversion="v23.5.0" modulesversion="v23.5.1"
# Core # Core

10
lgsm/modules/info_game.sh

@ -2060,11 +2060,11 @@ fn_info_game_terraria() {
# Filetype: cfg # Filetype: cfg
fn_info_game_tw() { fn_info_game_tw() {
if [ -f "${servercfgfullpath}" ]; then if [ -f "${servercfgfullpath}" ]; then
fn_info_game_quakec "servername" "sv_name" fn_info_game_keyvalue_pairs_space "servername" "sv_name"
fn_info_game_quakec "serverpassword" "password" fn_info_game_keyvalue_pairs_space "serverpassword" "password"
fn_info_game_quakec "rconpassword" "sv_rcon_password" fn_info_game_keyvalue_pairs_space "rconpassword" "sv_rcon_password"
fn_info_game_quakec "port" "sv_port" fn_info_game_keyvalue_pairs_space "port" "sv_port"
fn_info_game_quakec "maxplayers" "sv_max_clients" fn_info_game_keyvalue_pairs_space "maxplayers" "sv_max_clients"
fi fi
queryport="${port}" queryport="${port}"
servername="${servername:-"NOT SET"}" servername="${servername:-"NOT SET"}"

2
linuxgsm.sh

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

2
tests/tests_fctrserver.sh

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

2
tests/tests_jc2server.sh

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

2
tests/tests_mcserver.sh

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

2
tests/tests_ts3server.sh

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

Loading…
Cancel
Save