mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 21:32:36 +01:00
fix: type coercion
This commit is contained in:
parent
e05bf49395
commit
2a24bbfe6b
2 changed files with 3 additions and 3 deletions
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.0.0.rc-4
|
version=5.0.0.rc-5
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -528,7 +528,7 @@ fetch_dzq(){
|
||||||
fetch_helpers_by_sum(){
|
fetch_helpers_by_sum(){
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="f705b5e0eec2352aea99764b00bb8656"
|
["ui.py"]="9cef55ccaa1c71b7e3ef648fe68d0eec"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="d9b0e6fa68314c18ac7aad565645948f"
|
["funcs"]="d9b0e6fa68314c18ac7aad565645948f"
|
||||||
|
|
|
@ -1399,7 +1399,7 @@ class Grid(Gtk.Grid):
|
||||||
|
|
||||||
_news = sys.argv[2]
|
_news = sys.argv[2]
|
||||||
self._version = "%s %s" %(app_name, sys.argv[3])
|
self._version = "%s %s" %(app_name, sys.argv[3])
|
||||||
_isd = sys.argv[4]
|
_isd = int(sys.argv[4])
|
||||||
|
|
||||||
if _isd == 1:
|
if _isd == 1:
|
||||||
is_steam_deck = True
|
is_steam_deck = True
|
||||||
|
|
Loading…
Reference in a new issue