1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43:00 +02:00

fix: auto discovery

This commit is contained in:
aclist 2024-04-01 17:11:19 +09:00
parent 3fea7d1f52
commit 931352f975
6 changed files with 18 additions and 9 deletions

View file

@ -1,5 +1,12 @@
# Changelog
## [5.2.1] 2024-04-01
### Fixed
- Fixed a regression where where the first-time setup dialog would not trigger auto-path discovery
### Changed
- Reworded some menus and dialogs for clarity
## [5.2.0] 2024-03-21
### Added
- Refresh player count for active row: invoke via right-click context meu or directly with the Ctrl-r hotkey. This feature has a 30 second global cooldown to prevent throttling.

View file

@ -22,11 +22,12 @@ If not already installed, the below can be found in your system's package manage
If any dependencies are missing when the application starts, it will warn you, so you need not take any preemptive measures here.
- `curl`
- `curl`
- `jq`
- `zenity`
- `steam`
- `wmctrl` or `xdotool`
- `PyGObject` (`python-gobject`)
=== Preparation
. **Download DZGUI and make it executable:**

View file

@ -27,6 +27,7 @@ If any dependencies are missing when the application starts, it will warn you, s
- `zenity`
- `steam`
- `wmctrl` or `xdotool`
- `PyGObject` (`python-gobject`)
=== Preparation
. **Download DZGUI and make it executable:**

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail
version=5.2.0
version=5.2.1
#CONSTANTS
aid=221100
@ -130,7 +130,7 @@ test_gobject(){
python3 -c "import gi"
if [[ ! $? -eq 0 ]]; then
logger CRITICAL "Missing PyGObject"
fdialog "Requires PyGObject (python3-gobject)"
fdialog "Requires PyGObject (python-gobject)"
exit 1
fi
logger INFO "Found PyGObject in Python env"
@ -537,10 +537,10 @@ fetch_helpers_by_sum(){
source "$config_file"
declare -A sums
sums=(
["ui.py"]="05a84408e1d375a38a899b715c38da6e"
["ui.py"]="9bfa6de9a648c7c8aa24bdec66a38eae"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="80f1740a56e0b81d8c811ef9ac749c36"
["funcs"]="48ed212978d20bc24a1adda38389e1b1"
)
local author="aclist"
local repo="dztui"
@ -664,7 +664,7 @@ find_default_path(){
$sd_res
case "$res" in
*auto*) discover ;;
*auto*) _discover ;;
*manual*)
zenity --info --text="\nSelect the top-level entry point to the location where Steam (not DayZ)\nis installed and before entering the \"steamapps\" path.\n\nE.g., if Steam is installed at:\n\"/media/mydrive/Steam\"\n\nCorrect:\n- \"/media/mydrive/Steam\"\n\nIncorrect:\n- \"/media/mydrive/Steam/steamapps/common/DayZ\"\n- \"/media/mydrive/\"" --width=500 &&
file_picker ;;

View file

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

View file

@ -18,7 +18,7 @@ locale.setlocale(locale.LC_ALL, '')
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
# 5.2.0
# 5.2.1
app_name = "DZGUI"
start_time = 0
@ -137,7 +137,7 @@ side_buttons = [
]
status_tooltip = {
"Server browser": "Used to browse the global server list",
"My saved servers": "Browse your saved servers",
"My saved servers": "Browse your saved servers. Unreachable/offline servers will be excluded",
"Quick-connect to favorite server": "Connect to your favorite server",
"Recent servers": "Shows the last 10 servers you connected to (includes attempts)",
"Connect by IP": "Connect to a server by IP",