[PR #2328] [MERGED] Release/190503 #3591

Closed
opened 2026-02-27 03:55:04 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/GameServerManagers/LinuxGSM/pull/2328
Author: @dgibbs64
Created: 5/3/2019
Status: Merged
Merged: 5/3/2019
Merged by: @dgibbs64

Base: masterHead: release/190503


📝 Commits (10+)

  • aba8f0c fix(bsserver): updated executable directory (#2308)
  • 9a906b0 fix(travis): correct test name
  • 1ba0cd7 feat(monitor): add udp query option (#2314)
  • cd36a1e fix(terraria): add fix preventing server from starting (#2317)
  • b8f1c67 feat(csgoserver): Unnecessary FreeForAll info, add map hint to Danger Zone (#2318)
  • a7dc7fd fix(twserver): Change how Teeworlds configs are handled (#2313)
  • daecf54 fix malformed json file
  • ca057c3 Update .all-contributorsrc
  • ab335b8 fix malformed json file
  • 7b6ad19 Merge remote-tracking branch 'origin/develop' into develop

📊 Changes

24 files changed (+359 additions, -129 deletions)

View changed files

📝 .all-contributorsrc (+117 -106)
📝 PULL_REQUEST_TEMPLATE.md (+1 -1)
📝 README.md (+2 -3)
📝 lgsm/config-default/config-lgsm/bsserver/_default.cfg (+1 -1)
📝 lgsm/config-default/config-lgsm/csgoserver/_default.cfg (+9 -9)
📝 lgsm/config-default/config-lgsm/nmrihserver/_default.cfg (+1 -1)
📝 lgsm/config-default/config-lgsm/twserver/_default.cfg (+2 -2)
lgsm/config-default/config-lgsm/untserver/_default.cfg (+136 -0)
📝 lgsm/data/serverlist.csv (+1 -0)
📝 lgsm/functions/check_deps.sh (+4 -1)
📝 lgsm/functions/command_monitor.sh (+8 -0)
📝 lgsm/functions/command_validate.sh (+2 -0)
📝 lgsm/functions/core_functions.sh (+10 -0)
📝 lgsm/functions/fix.sh (+4 -0)
lgsm/functions/fix_terraria.sh (+11 -0)
lgsm/functions/fix_unt.sh (+11 -0)
📝 lgsm/functions/info_glibc.sh (+3 -0)
📝 lgsm/functions/info_messages.sh (+13 -1)
📝 lgsm/functions/info_parms.sh (+7 -0)
📝 lgsm/functions/install_config.sh (+6 -0)

...and 4 more files

📄 Description

Release v19.5.3


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/GameServerManagers/LinuxGSM/pull/2328 **Author:** [@dgibbs64](https://github.com/dgibbs64) **Created:** 5/3/2019 **Status:** ✅ Merged **Merged:** 5/3/2019 **Merged by:** [@dgibbs64](https://github.com/dgibbs64) **Base:** `master` ← **Head:** `release/190503` --- ### 📝 Commits (10+) - [`aba8f0c`](https://github.com/GameServerManagers/LinuxGSM/commit/aba8f0c2c26d6c0cb0eb27eac84f0e4bf30d01a5) fix(bsserver): updated executable directory (#2308) - [`9a906b0`](https://github.com/GameServerManagers/LinuxGSM/commit/9a906b0ea432551af69fae0cffa3c519762e9e74) fix(travis): correct test name - [`1ba0cd7`](https://github.com/GameServerManagers/LinuxGSM/commit/1ba0cd7545a2ed3b24d9f76a649e1d68b4b33582) feat(monitor): add udp query option (#2314) - [`cd36a1e`](https://github.com/GameServerManagers/LinuxGSM/commit/cd36a1efd99d3ab61fd08d055b86cd769bb1a9a7) fix(terraria): add fix preventing server from starting (#2317) - [`b8f1c67`](https://github.com/GameServerManagers/LinuxGSM/commit/b8f1c675adf6471eb29e82c530cd4d363373207f) feat(csgoserver): Unnecessary FreeForAll info, add map hint to Danger Zone (#2318) - [`a7dc7fd`](https://github.com/GameServerManagers/LinuxGSM/commit/a7dc7fd388645ab3fdbf68ed22ba014c66f7ca58) fix(twserver): Change how Teeworlds configs are handled (#2313) - [`daecf54`](https://github.com/GameServerManagers/LinuxGSM/commit/daecf5439f0c2c16a73136231561b02d7bce5c5f) fix malformed json file - [`ca057c3`](https://github.com/GameServerManagers/LinuxGSM/commit/ca057c3c6218222acd9ce9a2c9bb559813008ccc) Update .all-contributorsrc - [`ab335b8`](https://github.com/GameServerManagers/LinuxGSM/commit/ab335b8d1fe2a269054e290a43224bbb4a8a7d79) fix malformed json file - [`7b6ad19`](https://github.com/GameServerManagers/LinuxGSM/commit/7b6ad19dcea14b764179fd6bbdad0d0e9c93ae4d) Merge remote-tracking branch 'origin/develop' into develop ### 📊 Changes **24 files changed** (+359 additions, -129 deletions) <details> <summary>View changed files</summary> 📝 `.all-contributorsrc` (+117 -106) 📝 `PULL_REQUEST_TEMPLATE.md` (+1 -1) 📝 `README.md` (+2 -3) 📝 `lgsm/config-default/config-lgsm/bsserver/_default.cfg` (+1 -1) 📝 `lgsm/config-default/config-lgsm/csgoserver/_default.cfg` (+9 -9) 📝 `lgsm/config-default/config-lgsm/nmrihserver/_default.cfg` (+1 -1) 📝 `lgsm/config-default/config-lgsm/twserver/_default.cfg` (+2 -2) ➕ `lgsm/config-default/config-lgsm/untserver/_default.cfg` (+136 -0) 📝 `lgsm/data/serverlist.csv` (+1 -0) 📝 `lgsm/functions/check_deps.sh` (+4 -1) 📝 `lgsm/functions/command_monitor.sh` (+8 -0) 📝 `lgsm/functions/command_validate.sh` (+2 -0) 📝 `lgsm/functions/core_functions.sh` (+10 -0) 📝 `lgsm/functions/fix.sh` (+4 -0) ➕ `lgsm/functions/fix_terraria.sh` (+11 -0) ➕ `lgsm/functions/fix_unt.sh` (+11 -0) 📝 `lgsm/functions/info_glibc.sh` (+3 -0) 📝 `lgsm/functions/info_messages.sh` (+13 -1) 📝 `lgsm/functions/info_parms.sh` (+7 -0) 📝 `lgsm/functions/install_config.sh` (+6 -0) _...and 4 more files_ </details> ### 📄 Description Release v19.5.3 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 03:55:04 +03:00
Sign in to join this conversation.
No labels
Atomic
Epic
cannot reproduce
command: backup
command: console
command: debug
command: details
command: fast-dl
command: install
command: mods
command: monitor
command: post-details
command: restart
command: send
command: start
command: stop
command: update
command: update-lgsm
command: validate
command: wipe
distro: AlmaLinux
distro: Arch Linux
distro: CentOS
distro: Debian
distro: Fedora
distro: RedHat
distro: Rocky Linux
distro: Ubuntu
distro: openSUSE
engine: goldsrc
engine: source
game: 7 Days to Die
game: ARMA 3
game: Ark: Survival Evolved
game: Assetto Corsa
game: Avorion
game: BATTALION: Legacy
game: Barotrauma
game: Battalion 1944
game: Battlefield 1942
game: Black Mesa: Deathmatch
game: Blade Symphony
game: Call of Duty 2
game: Call of Duty 4
game: Call of Duty: United Offensive
game: Counter-Strike 1.6
game: Counter-Strike 2
game: Counter-Strike: Global Offensive
game: Counter-Strike: Source
game: Day of Infamy
game: Dayz
game: Death Match Classic
game: Don't Starve Together
game: ET: Legacy
game: Eco
game: Factorio
game: Factorio
game: Garry's Mod
game: Half-Life
game: Hurtword
game: Insurgecy
game: Insurgecy
game: Insurgency: Sandstorm
game: Just Cause 3
game: Killing Floor
game: Killing Floor 2
game: Left 4 Dead 2
game: Minecraft
game: Minecraft Bedrock
game: Mordhau
game: Multi Theft Auto
game: Mumble
game: Natural Selection 2
game: No More Room in Hell
game: Pavlov VR
game: Post Scriptum
game: Project Zomboid
game: Quake 3
game: QuakeWorld
game: Red Orchestra: Ostfront 41-45
game: Return to Castle Wolfenstein
game: Rising World
game: Rust
game: San Andreas Multiplayer
game: Satisfactory
game: Soldat
game: Soldier of Fortune 2
game: Squad
game: Squad 44
game: Starbound
game: Stationeers
game: Sven Co-op
game: Team Fortress 2
game: Teamspeak 3
game: Teeworlds
game: Terraria
game: The Front
game: Unreal Tournament 2004
game: Unreal Tournament 3
game: Unreal Tournament 99
game: Unturned
game: Valheim
game: Wurm Unlimited
game: Zombie Master Reborn
game: label missing
good first issue
help wanted
info: alerts
info: dependency
info: docker
info: docs
info: email
info: query
info: steamcmd
info: systemd
info: tmux
info: website
info: website
needs more info
outcome: duplicate
outcome: issue resolved
outcome: issue resolved
outcome: issue unresolved
outcome: pr accepted
outcome: pr rejected
outcome: unconfirmed
outcome: wontfix
outcome: wrong forum
potential-duplicate
priority
pull-request
type: bug
type: feature
type: feature
type: feature request
type: game server request
type: refactor
waiting response
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LinuxGSM#3591
No description provided.