From f3c67f08ac7c8704cf488781031d20adb782e2ba Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:55:04 +0900 Subject: [PATCH] fix: drop extraneous log file --- dzgui.sh | 7 +++---- helpers/funcs | 2 +- helpers/ui.py | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index 3c712c0..6c00fac 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.2.0-rc.1 +version=5.2.0-rc.2 #CONSTANTS aid=221100 @@ -536,10 +536,10 @@ fetch_dzq(){ fetch_helpers_by_sum(){ declare -A sums sums=( - ["ui.py"]="b3b5e5917a74317bb19578d961944c6b" + ["ui.py"]="b24d91c66498d874f4a611f806fdc41b" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" - ["funcs"]="c6b751e3d6c4bee40197f86425b45258" + ["funcs"]="cf0dbd17948bf3ea3888bf829f116acf" ) local author="aclist" local repo="dztui" @@ -560,7 +560,6 @@ fetch_helpers_by_sum(){ sum="${sums[$i]}" full_path="$helpers_path/$file" url="https://raw.githubusercontent.com/$author/$repo/$realbranch/helpers/$file" - echo "$url" >> $HOME/log if [[ -f "$full_path" ]] && [[ $(get_hash "$full_path") == $sum ]]; then logger INFO "$file is current" else diff --git a/helpers/funcs b/helpers/funcs index acfd8d0..74f83f7 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.2.0-rc.1 +version=5.2.0-rc.2 #CONSTANTS aid=221100 diff --git a/helpers/ui.py b/helpers/ui.py index adc06af..83cf33e 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -16,7 +16,7 @@ locale.setlocale(locale.LC_ALL, '') gi.require_version("Gtk", "3.0") from gi.repository import Gtk, GLib, Gdk, GObject, Pango -# 5.2.0.rc-1 +# 5.2.0.rc-2 app_name = "DZGUI" cache = {}