1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43:00 +02:00

Compare commits

...

2 commits

Author SHA1 Message Date
aclist
bba793cc52 fix: bump version
All checks were successful
Mirror to Codeberg / mirror-to-codeberg (push) Successful in 10s
2025-03-05 11:11:00 +09:00
aclist
1b360f84ae fix: split up batch queries 2025-03-05 11:10:41 +09:00
3 changed files with 13 additions and 4 deletions

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
## [5.7.0-beta.9] 2024-03-04
## Fixed
- Livonia server results being dropped from batch queries
## [5.7.0-beta.8] 2024-02-10 ## [5.7.0-beta.8] 2024-02-10
## Changed ## Changed
- Drop launch flag and check for invocation through Steam automatically - Drop launch flag and check for invocation through Steam automatically

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.7.0-beta.8 version=5.7.0-beta.9
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -590,7 +590,7 @@ fetch_helpers_by_sum(){
["ui.py"]="5a876efacf208d12b5fe761996425412" ["ui.py"]="5a876efacf208d12b5fe761996425412"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="3703739856936a5fa11d92a0d2964773" ["funcs"]="0d2d7a2b08f1112dc2474ba81a489002"
["lan"]="c62e84ddd1457b71a85ad21da662b9af" ["lan"]="c62e84ddd1457b71a85ad21da662b9af"
) )
local author="aclist" local author="aclist"

View file

@ -452,10 +452,15 @@ get_dist(){
} }
get_remote_servers(){ get_remote_servers(){
params=( params=(
"\\nor\1\map\chernarusplus\\nor\1\map\sakhal" "\\nor\1\map\chernarusplus\\nor\1\map\sakhal\\nor\1\map\enoch\empty\1\\nor\1\map\namalsk"
"\map\namalsk\empty\1"
"\map\namalsk\noplayers\1"
"\map\chernarusplus\empty\1" "\map\chernarusplus\empty\1"
"\map\chernarusplus\noplayers\1" "\map\chernarusplus\noplayers\1"
"\map\\sakhal" "\map\\sakhal\empty\1"
"\map\\sakhal\noplayers\1"
"\map\\enoch\empty\1"
"\map\\enoch\noplayers\1"
) )
local limit=10000 local limit=10000
local url="https://api.steampowered.com/IGameServersService/GetServerList/v1/?" local url="https://api.steampowered.com/IGameServersService/GetServerList/v1/?"