1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-29 13:52:03 +01:00

fix: branch selection logic

This commit is contained in:
aclist 2024-03-12 02:29:24 +09:00
parent 4e2c2ea571
commit d0961fddb6
3 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.2.0-rc.3 version=5.2.0-rc.4
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -534,12 +534,13 @@ fetch_dzq(){
logger INFO "Updated DZQ to sha '$sha'" logger INFO "Updated DZQ to sha '$sha'"
} }
fetch_helpers_by_sum(){ fetch_helpers_by_sum(){
source "$config_file"
declare -A sums declare -A sums
sums=( sums=(
["ui.py"]="7bfed0b2f9aa5ca92b299ba81dbb3f34" ["ui.py"]="44a88b196ea9d65b429525cf0bad66b6"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="c4a7fc048c58a2d20181591b06b836ad" ["funcs"]="e4bd26a95060e57582cda046b2302658"
) )
local author="aclist" local author="aclist"
local repo="dztui" local repo="dztui"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.2.0-rc.3 version=5.2.0-rc.4
#CONSTANTS #CONSTANTS
aid=221100 aid=221100

View file

@ -16,7 +16,7 @@ locale.setlocale(locale.LC_ALL, '')
gi.require_version("Gtk", "3.0") gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib, Gdk, GObject, Pango from gi.repository import Gtk, GLib, Gdk, GObject, Pango
# 5.2.0.rc-3 # 5.2.0.rc-4
app_name = "DZGUI" app_name = "DZGUI"
cache = {} cache = {}