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

fix: update launch flags

This commit is contained in:
aclist 2024-01-31 17:21:16 +09:00
parent 3c679aadaa
commit 23bd692fca
3 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.0.0.rc-42 version=5.0.0.rc-43
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -393,7 +393,7 @@ check_architecture(){
fi fi
} }
check_map_count(){ check_map_count(){
[[ $is_steam_deck -eq 1 ]] && return 0 [[ $is_steam_deck -gt 0 ]] && return 0
local count=1048576 local count=1048576
local conf_file="/etc/sysctl.d/dayz.conf" local conf_file="/etc/sysctl.d/dayz.conf"
if [[ -f $conf_file ]]; then if [[ -f $conf_file ]]; then
@ -548,10 +548,10 @@ fetch_dzq(){
fetch_helpers_by_sum(){ fetch_helpers_by_sum(){
declare -A sums declare -A sums
sums=( sums=(
["ui.py"]="2331665f5a2fb55cc030621812a309ea" ["ui.py"]="2828ecfd733c3ebc7024fbe5c8349cb5"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="3f7f374117dd2bbc55e1d055d903cff2" ["funcs"]="5f9f7af1fae725e295de08a95f14ba6d"
) )
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.0.0.rc-42 version=5.0.0.rc-43
#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.0.0-rc.42 # 5.0.0-rc.43
app_name = "DZGUI" app_name = "DZGUI"
cache = {} cache = {}