mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
fix: close parens
This commit is contained in:
parent
896a564764
commit
2ca5bf31d1
3 changed files with 9 additions and 9 deletions
6
dzgui.sh
6
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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 = {}
|
||||
|
|
Loading…
Reference in a new issue