Skip to content

Commit 7883e58

Browse files
author
unknown
committed
Merge branch 'release/v26.1.0' into develop
2 parents 0bc0101 + a720744 commit 7883e58

9 files changed

Lines changed: 19 additions & 18 deletions

File tree

.github/workflows/serverlist-validate-game-icons.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ shopt -s nullglob
2222
for gameiconpath in gameicons/*; do
2323
gameicon="$(basename "${gameiconpath}")"
2424
# check if $gameicon is in serverlist.csv
25-
if ! grep -q -F "${gameicon%-icon.png}" serverlist.csv; then
25+
if ! grep -q -E "^${gameicon%-icon.png}," serverlist.csv; then
2626
echo "ERROR: gameicon ${gameicon} is not in serverlist.csv"
2727
exitcode=1
2828
else

lgsm/config-default/config-lgsm/cs2server/_default.cfg

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,6 @@ ntfypassword=""
7272
ntfypriority=""
7373
ntfytags=""
7474

75-
# ntfy Alerts | https://docs.linuxgsm.com/alerts/ntfy
76-
ntfyalert="off"
77-
ntfytopic="LinuxGSM"
78-
ntfyserver="https://ntfy.sh"
79-
ntfytoken=""
80-
ntfyusername=""
81-
ntfypassword=""
82-
ntfypriority=""
83-
ntfytags=""
84-
8575
# Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
8676
pushbulletalert="off"
8777
pushbullettoken="accesstoken"

lgsm/config-default/config-lgsm/tf2cserver/_default.cfg

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,16 @@ iftttalert="off"
6565
ifttttoken="accesstoken"
6666
iftttevent="linuxgsm_alert"
6767

68+
# ntfy Alerts | https://docs.linuxgsm.com/alerts/ntfy
69+
ntfyalert="off"
70+
ntfytopic="LinuxGSM"
71+
ntfyserver="https://ntfy.sh"
72+
ntfytoken=""
73+
ntfyusername=""
74+
ntfypassword=""
75+
ntfypriority=""
76+
ntfytags=""
77+
6878
# Pushbullet Alerts | https://docs.linuxgsm.com/alerts/pushbullet
6979
pushbulletalert="off"
7080
pushbullettoken="accesstoken"

lgsm/modules/alert_slack.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ json=$(
6060
"image_url": "${alerticon}",
6161
"alt_text": "LinuxGSM game icon"
6262
}
63+
}
6364
EOF
6465
)
6566

lgsm/modules/command_skeleton.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Author: Daniel Gibbs
44
# Contributors: https://linuxgsm.com/contrib
55
# Website: https://linuxgsm.com
6-
# Description: Creates an copy of a game servers directories.
6+
# Description: Creates a copy of a game server directories.
77

88
commandname="SKELETON"
99
commandaction="Skeleton"

lgsm/modules/core_dl.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ fn_dl_steamcmd() {
4646
validate="validate"
4747
fi
4848

49-
# steamcmdcommand can contain multiple arguments; treat it as an argv array.
50-
steamcmdcommandarray=()
51-
read -r -a steamcmdcommandarray <<< "${steamcmdcommand}"
49+
# Wrap steamcmdcommand as a single-element array to avoid word-splitting
50+
# on paths/commands that should not be tokenised.
51+
steamcmdcommandarray=("${steamcmdcommand}")
5252
unbuffercommand=()
5353
if [ -n "${unbuffer}" ]; then
5454
unbuffercommand=("${unbuffer}")

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="v25.2.0"
11+
modulesversion="v26.1.0"
1212

1313
# Core
1414

lgsm/modules/fix_st.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# LinuxGSM fix_ts.sh module
2+
# LinuxGSM fix_st.sh module
33
# Author: Daniel Gibbs
44
# Contributors: https://linuxgsm.com/contrib
55
# Website: https://linuxgsm.com

linuxgsm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then
2424
set -x
2525
fi
2626

27-
version="v25.2.0"
27+
version="v26.1.0"
2828
shortname="core"
2929
gameservername="core"
3030
commandname="CORE"

0 commit comments

Comments
 (0)