From 3fa815cd4e6f4fad1fd33e23daee5b13e558d87e Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Thu, 22 Feb 2024 10:53:31 +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 98d7b1f..ed20a58 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.3 +version=5.0.4 #CONSTANTS aid=221100 @@ -536,10 +536,10 @@ fetch_dzq(){ fetch_helpers_by_sum(){ declare -A sums sums=( - ["ui.py"]="36b9ccdda7561e129861456e36dcb5e0" + ["ui.py"]="e7018a683f562f9b85bdc126fda4526a" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" - ["funcs"]="3fed32357ed35127f0e4055ace0c9c94" + ["funcs"]="c95362b84afdfba64c35d4752248b4a0" ) 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 3eb1aea..a6fc8ad 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.3 +version=5.0.4 #CONSTANTS aid=221100 diff --git a/helpers/ui.py b/helpers/ui.py index f21e6ee..ffce4dc 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.0.3 +# 5.0.4 app_name = "DZGUI" cache = {}