From 931352f975ec4da91b818d818b034ba9315536e9 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:11:19 +0900 Subject: [PATCH] fix: auto discovery --- CHANGELOG.md | 7 +++++++ docs/dzgui.adoc | 3 ++- docs/dzgui_dark.adoc | 1 + dzgui.sh | 10 +++++----- helpers/funcs | 2 +- helpers/ui.py | 4 ++-- 6 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bfc35b..d55d032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/docs/dzgui.adoc b/docs/dzgui.adoc index 312c3b6..3c2e61f 100644 --- a/docs/dzgui.adoc +++ b/docs/dzgui.adoc @@ -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:** diff --git a/docs/dzgui_dark.adoc b/docs/dzgui_dark.adoc index 3cc4eb1..ae4ff35 100644 --- a/docs/dzgui_dark.adoc +++ b/docs/dzgui_dark.adoc @@ -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:** diff --git a/dzgui.sh b/dzgui.sh index 0d7b247..b75a2c9 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -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 ;; diff --git a/helpers/funcs b/helpers/funcs index de540a5..e1e8b6d 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.2.0 +version=5.2.1 #CONSTANTS aid=221100 diff --git a/helpers/ui.py b/helpers/ui.py index ded35c8..6641277 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -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",