Skip to content

Commit a7330b8

Browse files
committed
Merge branch 'hotfix/v23.5.1' into develop
2 parents d9bf89d + db3c384 commit a7330b8

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

.github/workflows/details-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix: ${{ steps.set-matrix.outputs.matrix }}
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Generate matrix with generate-matrix.sh
2121
run: chmod +x .github/workflows/detals-check-generate-matrix.sh; .github/workflows/detals-check-generate-matrix.sh

.github/workflows/serverlist-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212

1313
- name: Compare Versions
1414
run: chmod +x .github/workflows/serverlist-validate.sh; .github/workflows/serverlist-validate.sh

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- name: Action Update License Year

.github/workflows/version-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Version Check
1616
run: chmod +x .github/workflows/version-check.sh; .github/workflows/version-check.sh

lgsm/modules/core_functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
module_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1010

11-
modulesversion="v23.5.0"
11+
modulesversion="v23.5.1"
1212

1313
# Core
1414

lgsm/modules/core_modules.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
1010

11-
modulesversion="v23.5.0"
11+
modulesversion="v23.5.1"
1212

1313
# Core
1414

lgsm/modules/info_game.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2060,11 +2060,11 @@ fn_info_game_terraria() {
20602060
# Filetype: cfg
20612061
fn_info_game_tw() {
20622062
if [ -f "${servercfgfullpath}" ]; then
2063-
fn_info_game_quakec "servername" "sv_name"
2064-
fn_info_game_quakec "serverpassword" "password"
2065-
fn_info_game_quakec "rconpassword" "sv_rcon_password"
2066-
fn_info_game_quakec "port" "sv_port"
2067-
fn_info_game_quakec "maxplayers" "sv_max_clients"
2063+
fn_info_game_keyvalue_pairs_space "servername" "sv_name"
2064+
fn_info_game_keyvalue_pairs_space "serverpassword" "password"
2065+
fn_info_game_keyvalue_pairs_space "rconpassword" "sv_rcon_password"
2066+
fn_info_game_keyvalue_pairs_space "port" "sv_port"
2067+
fn_info_game_keyvalue_pairs_space "maxplayers" "sv_max_clients"
20682068
fi
20692069
queryport="${port}"
20702070
servername="${servername:-"NOT SET"}"

linuxgsm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.5.0"
23+
version="v23.5.1"
2424
shortname="core"
2525
gameservername="core"
2626
commandname="CORE"

tests/tests_fctrserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.5.0"
23+
version="v23.5.1"
2424
shortname="fctr"
2525
gameservername="fctrserver"
2626
commandname="CORE"

0 commit comments

Comments
 (0)