mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
fix: debug key not echoing
This commit is contained in:
parent
2f9c74e13b
commit
0fde301c21
3 changed files with 6 additions and 5 deletions
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
|
||||
version=5.0.0.rc-30
|
||||
version=5.0.0.rc-31
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
@ -536,10 +536,10 @@ fetch_dzq(){
|
|||
fetch_helpers_by_sum(){
|
||||
declare -A sums
|
||||
sums=(
|
||||
["ui.py"]="ad04fee7066d5fe30fb39e875ff870d2"
|
||||
["ui.py"]="dc5f2ea7d90e93f9405283374aa98a8b"
|
||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
["funcs"]="26a4200acd85c0e0fc71a7fe57b1e13e"
|
||||
["funcs"]="205c27f0ac0f2c89d0aaf1ba1fb73082"
|
||||
)
|
||||
local author="aclist"
|
||||
local repo="dztui"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
version=5.0.0.rc-30
|
||||
version=5.0.0.rc-31
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
@ -367,6 +367,7 @@ query_config(){
|
|||
echo "${!key}"
|
||||
return 0
|
||||
else
|
||||
echo ""
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -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.0-rc.30
|
||||
# 5.0.0-rc.31
|
||||
app_name = "DZGUI"
|
||||
|
||||
cache = {}
|
||||
|
|
Loading…
Reference in a new issue