mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
Empty delete server array when returning
This commit is contained in:
parent
48545ce384
commit
6e0eeef733
2 changed files with 13 additions and 9 deletions
|
@ -5,7 +5,10 @@
|
||||||
- Custom query API
|
- Custom query API
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
|
|
||||||
## [2.7.0-rc.24] 2022-10-03
|
## [2.7.0-rc.26] 2022-10-04
|
||||||
|
### Fixed
|
||||||
|
- Delete server list array not being emptied when going back to main menu
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Progress bars when downloading updates
|
- Progress bars when downloading updates
|
||||||
### Changed
|
### Changed
|
||||||
|
|
17
dzgui.sh
17
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=2.7.0-rc.25
|
version=2.7.0-rc.26
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -527,7 +527,7 @@ fetch_ip_metadata(){
|
||||||
test_steam_api(){
|
test_steam_api(){
|
||||||
local code=$(curl -ILs "https://api.steampowered.com/IGameServersService/GetServerList/v1/?filter=\appid\221100&limit=10&key=$steam_api" \
|
local code=$(curl -ILs "https://api.steampowered.com/IGameServersService/GetServerList/v1/?filter=\appid\221100&limit=10&key=$steam_api" \
|
||||||
| grep -E "^HTTP")
|
| grep -E "^HTTP")
|
||||||
[[ $code =~ 403 ]] && { echo 403 >> logs; return 1; }
|
[[ $code =~ 403 ]] && return 1
|
||||||
}
|
}
|
||||||
add_steam_api(){
|
add_steam_api(){
|
||||||
[[ ! $(test_steam_api) ]] && return 1
|
[[ ! $(test_steam_api) ]] && return 1
|
||||||
|
@ -713,7 +713,7 @@ populate(){
|
||||||
set_header ${FUNCNAME[0]}
|
set_header ${FUNCNAME[0]}
|
||||||
fi
|
fi
|
||||||
rc=$?
|
rc=$?
|
||||||
if [[ $rc -eq 0 ]]; then
|
if [[ $rc -eq 0 ]]; then
|
||||||
if [[ -z $sel ]]; then
|
if [[ -z $sel ]]; then
|
||||||
warn "No item was selected."
|
warn "No item was selected."
|
||||||
else
|
else
|
||||||
|
@ -809,7 +809,7 @@ debug_menu(){
|
||||||
}
|
}
|
||||||
query_and_connect(){
|
query_and_connect(){
|
||||||
query_api
|
query_api
|
||||||
parse_json
|
parse_json
|
||||||
#TODO: create logger function
|
#TODO: create logger function
|
||||||
if [[ ! $delete -eq 1 ]]; then
|
if [[ ! $delete -eq 1 ]]; then
|
||||||
echo "[DZGUI] Checking response time of servers"
|
echo "[DZGUI] Checking response time of servers"
|
||||||
|
@ -1161,12 +1161,12 @@ page_through(){
|
||||||
parse_json(){
|
parse_json(){
|
||||||
page=$(echo "$list_response" | jq -r '.links.next?')
|
page=$(echo "$list_response" | jq -r '.links.next?')
|
||||||
if [[ $first_entry -eq 1 ]]; then
|
if [[ $first_entry -eq 1 ]]; then
|
||||||
list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
|
local list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
|
||||||
idarr+=("$list")
|
idarr+=("$list")
|
||||||
first_entry=0
|
first_entry=0
|
||||||
fi
|
fi
|
||||||
if [[ "$page" != "null" ]]; then
|
if [[ "$page" != "null" ]]; then
|
||||||
list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
|
local list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
|
||||||
idarr+=("$list")
|
idarr+=("$list")
|
||||||
page_through
|
page_through
|
||||||
else
|
else
|
||||||
|
@ -1185,6 +1185,7 @@ check_ping(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
create_array(){
|
create_array(){
|
||||||
|
rows=()
|
||||||
list=$(cat $tmp)
|
list=$(cat $tmp)
|
||||||
#TODO: improve error handling for null values
|
#TODO: improve error handling for null values
|
||||||
lc=1
|
lc=1
|
||||||
|
@ -1215,9 +1216,9 @@ create_array(){
|
||||||
declare -g -a rows=("${rows[@]}" "$name" "$ip" "$players" "$time" "$stat" "$id" "$ping")
|
declare -g -a rows=("${rows[@]}" "$name" "$ip" "$players" "$time" "$stat" "$id" "$ping")
|
||||||
fi
|
fi
|
||||||
let lc++
|
let lc++
|
||||||
done <<< "$list"
|
done <<< "$list"
|
||||||
|
|
||||||
for i in "${rows[@]}"; do echo -e "$i"; done > $tmp
|
for i in "${rows[@]}"; do echo -e "$i"; done > $tmp
|
||||||
}
|
}
|
||||||
set_fav(){
|
set_fav(){
|
||||||
#TODO: test API key here and return errors
|
#TODO: test API key here and return errors
|
||||||
|
|
Loading…
Reference in a new issue