From 6e0eeef733d9e365d9e6619e971a4884e8dc363d Mon Sep 17 00:00:00 2001 From: aclist Date: Tue, 4 Oct 2022 15:26:42 +0900 Subject: [PATCH] Empty delete server array when returning --- changelog.md | 5 ++++- dzgui.sh | 17 +++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/changelog.md b/changelog.md index 82f385b..a53ccdf 100644 --- a/changelog.md +++ b/changelog.md @@ -5,7 +5,10 @@ - Custom query API - 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 - Progress bars when downloading updates ### Changed diff --git a/dzgui.sh b/dzgui.sh index 1a34bf7..95921de 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/bin/bash set -o pipefail -version=2.7.0-rc.25 +version=2.7.0-rc.26 aid=221100 game="dayz" @@ -527,7 +527,7 @@ fetch_ip_metadata(){ test_steam_api(){ local code=$(curl -ILs "https://api.steampowered.com/IGameServersService/GetServerList/v1/?filter=\appid\221100&limit=10&key=$steam_api" \ | grep -E "^HTTP") - [[ $code =~ 403 ]] && { echo 403 >> logs; return 1; } + [[ $code =~ 403 ]] && return 1 } add_steam_api(){ [[ ! $(test_steam_api) ]] && return 1 @@ -713,7 +713,7 @@ populate(){ set_header ${FUNCNAME[0]} fi rc=$? - if [[ $rc -eq 0 ]]; then + if [[ $rc -eq 0 ]]; then if [[ -z $sel ]]; then warn "No item was selected." else @@ -809,7 +809,7 @@ debug_menu(){ } query_and_connect(){ query_api - parse_json + parse_json #TODO: create logger function if [[ ! $delete -eq 1 ]]; then echo "[DZGUI] Checking response time of servers" @@ -1161,12 +1161,12 @@ page_through(){ parse_json(){ page=$(echo "$list_response" | jq -r '.links.next?') 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") first_entry=0 fi 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") page_through else @@ -1185,6 +1185,7 @@ check_ping(){ fi } create_array(){ + rows=() list=$(cat $tmp) #TODO: improve error handling for null values lc=1 @@ -1215,9 +1216,9 @@ create_array(){ declare -g -a rows=("${rows[@]}" "$name" "$ip" "$players" "$time" "$stat" "$id" "$ping") fi 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(){ #TODO: test API key here and return errors