Compare commits

..

No commits in common. "d56bc5a57d2c26c66d22d8ae37a01a820958c57d" and "61f3fd982101d6af8be6f209229f979e026bad1a" have entirely different histories.

4 changed files with 5 additions and 13 deletions

View File

@ -1,9 +1,5 @@
# Changelog # Changelog
## [6.0.0-beta.5] 2025-08-20
## Fixed
- Servers returning malformed A2S_INFO blocking server browser from loading
## [6.0.0-beta.4] 2025-08-13 ## [6.0.0-beta.4] 2025-08-13
## Fixed ## Fixed
- Branch toggle signal being emitted when entering Options menu from other contexts - Branch toggle signal being emitted when entering Options menu from other contexts

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=6.0.0.beta-5 version=6.0.0.beta-4
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -585,9 +585,9 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file" [[ -f "$config_file" ]] && source "$config_file"
declare -A sums declare -A sums
sums=( sums=(
["funcs"]="01d45663b7517eae866010df0eba746a" ["funcs"]="2becf640f9c9645fd6562ac04e5599b2"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="ea5648df7121bb9dfeead9874bfcafcf" ["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593" ["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
) )

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version="6.0.0-beta.5" version="6.0.0-beta.4"
#CONSTANTS #CONSTANTS
aid=221100 aid=221100

View File

@ -88,11 +88,7 @@ def parse_json(json: list) -> list:
except KeyError: except KeyError:
continue continue
try: r = row["gametype"].split(",")
r = row["gametype"].split(",")
except KeyError:
continue
if "no3rd" in r: if "no3rd" in r:
view = "1PP" view = "1PP"
else: else: