diff --git a/CHANGELOG.md b/CHANGELOG.md index ddb55ba..577b3c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [5.3.3] 2024-07-16 +### Fixed +- Encapsulate player names correctly so that names with whitespace in them are supported + ## [5.3.2] 2024-07-02 ### Fixed - Server list would sometimes be missing some expected servers due to truncation being caused when a server erroneously set an incomplete gametype diff --git a/dzgui.sh b/dzgui.sh index 5e59ad9..00d9f62 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.3.2 +version=5.3.3 #CONSTANTS aid=221100 @@ -538,7 +538,7 @@ fetch_helpers_by_sum(){ ["ui.py"]="f14772424461ec438579dec567db0634" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" - ["funcs"]="718c3060b88041f5b99a1ce52b12642f" + ["funcs"]="4a318243c59f6e8ca3aee96cde1f1007" ) local author="aclist" local repo="dztui" diff --git a/helpers/funcs b/helpers/funcs index b36a30b..f8ff5ab 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1287,7 +1287,7 @@ launch(){ update_symlinks if [[ $debug -eq 1 ]]; then - local launch_options="$steam_cmd -applaunch $aid -connect=$ip:$gameport -nolauncher -nosplash -name=$name -skipintro \"-mod=$concat\"" + local launch_options="$steam_cmd -applaunch $aid -connect=$ip:$gameport -nolauncher -nosplash \"-name=$name\" -skipintro \"-mod=$concat\"" printf "Debug mode: these options would have been used to launch the game: $launch_options" return 0 fi diff --git a/images/example.png b/images/example.png index 307293d..07360ac 100644 Binary files a/images/example.png and b/images/example.png differ