mirror of
https://github.com/aclist/dztui.git
synced 2024-12-30 14:12:04 +01:00
fix: var name
This commit is contained in:
parent
2b71af1e2f
commit
7b73f5c195
3 changed files with 6 additions and 6 deletions
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.0.2
|
version=5.0.3
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -536,10 +536,10 @@ fetch_dzq(){
|
||||||
fetch_helpers_by_sum(){
|
fetch_helpers_by_sum(){
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="cfed457523f8a38859762629e6bf79fe"
|
["ui.py"]="36b9ccdda7561e129861456e36dcb5e0"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="ca0ac90f4725e5c6db3dc5703a27e612"
|
["funcs"]="3fed32357ed35127f0e4055ace0c9c94"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
local repo="dztui"
|
local repo="dztui"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=5.0.2
|
version=5.0.3
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -36,7 +36,7 @@ versions_file="$state_path/$prefix.versions"
|
||||||
lock_file="$state_path/$prefix.lock"
|
lock_file="$state_path/$prefix.lock"
|
||||||
|
|
||||||
#CACHE
|
#CACHE
|
||||||
cache_dir="$HOME/.cache/$appname"
|
cache_dir="$HOME/.cache/$app_name"
|
||||||
_cache_servers="$cache_dir/$prefix.servers"
|
_cache_servers="$cache_dir/$prefix.servers"
|
||||||
_cache_my_servers="$cache_dir/$prefix.my_servers"
|
_cache_my_servers="$cache_dir/$prefix.my_servers"
|
||||||
_cache_history="$cache_dir/$prefix.history"
|
_cache_history="$cache_dir/$prefix.history"
|
||||||
|
|
|
@ -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.0.2
|
# 5.0.3
|
||||||
app_name = "DZGUI"
|
app_name = "DZGUI"
|
||||||
|
|
||||||
cache = {}
|
cache = {}
|
||||||
|
|
Loading…
Reference in a new issue