diff --git a/dzgui.sh b/dzgui.sh index 43adfbc..0f7d652 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-23 +version=5.0.0.rc-24 #CONSTANTS aid=221100 @@ -536,10 +536,10 @@ fetch_dzq(){ fetch_helpers_by_sum(){ declare -A sums sums=( - ["ui.py"]="e7bde2fe61a1edb549c9294e5309ca67" + ["ui.py"]="569a966fd97eddb8f4d0139364f161b2" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" - ["funcs"]="42c38038aa8d915d1207f06c936df288" + ["funcs"]="f290a5d7c16f6ac2a124b78ed473f9ac" ) local author="aclist" local repo="dztui" diff --git a/helpers/funcs b/helpers/funcs index 1f1efdf..ad1038d 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-23 +version=5.0.0.rc-24 #CONSTANTS aid=221100 @@ -1150,10 +1150,10 @@ check_timestamps(){ return 1 fi local aligned=$(<<< "$local_stamps" jq -r '.response.publishedfiledetails[]|"\(.publishedfileid),\(.time_updated)"') - readarray -t remote_ids < <(<<< "$aligned" awk -F, '{print $1}' - readarray -t remote_times < <(<<< "$aligned" awk -F, '{print $2}' - readarray -t old_ids < <(< $version_file awk -F, '{print 1}' - readarray -t old_times < <(< $version_file awk -F, '{print 2}' + readarray -t remote_ids < <(<<< "$aligned" awk -F, '{print $1}') + readarray -t remote_times < <(<<< "$aligned" awk -F, '{print $2}') + readarray -t old_ids < <(< $version_file awk -F, '{print 1}') + readarray -t old_times < <(< $version_file awk -F, '{print 2}') if [[ ! -f $versions_file ]]; then logger INFO "No prior versions file found, creating" diff --git a/helpers/ui.py b/helpers/ui.py index 2a541b3..04b4636 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '') gi.require_version("Gtk", "3.0") from gi.repository import Gtk, GLib, Gdk, GObject, Pango -# 5.0.0-rc.23 +# 5.0.0-rc.24 app_name = "DZGUI" cache = {}