mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
fix: auto discovery
This commit is contained in:
parent
3fea7d1f52
commit
931352f975
6 changed files with 18 additions and 9 deletions
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# 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
|
## [5.2.0] 2024-03-21
|
||||||
### Added
|
### 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.
|
- 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.
|
||||||
|
|
|
@ -27,6 +27,7 @@ If any dependencies are missing when the application starts, it will warn you, s
|
||||||
- `zenity`
|
- `zenity`
|
||||||
- `steam`
|
- `steam`
|
||||||
- `wmctrl` or `xdotool`
|
- `wmctrl` or `xdotool`
|
||||||
|
- `PyGObject` (`python-gobject`)
|
||||||
|
|
||||||
=== Preparation
|
=== Preparation
|
||||||
. **Download DZGUI and make it executable:**
|
. **Download DZGUI and make it executable:**
|
||||||
|
|
|
@ -27,6 +27,7 @@ If any dependencies are missing when the application starts, it will warn you, s
|
||||||
- `zenity`
|
- `zenity`
|
||||||
- `steam`
|
- `steam`
|
||||||
- `wmctrl` or `xdotool`
|
- `wmctrl` or `xdotool`
|
||||||
|
- `PyGObject` (`python-gobject`)
|
||||||
|
|
||||||
=== Preparation
|
=== Preparation
|
||||||
. **Download DZGUI and make it executable:**
|
. **Download DZGUI and make it executable:**
|
||||||
|
|
10
dzgui.sh
10
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.2.0
|
version=5.2.1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -130,7 +130,7 @@ test_gobject(){
|
||||||
python3 -c "import gi"
|
python3 -c "import gi"
|
||||||
if [[ ! $? -eq 0 ]]; then
|
if [[ ! $? -eq 0 ]]; then
|
||||||
logger CRITICAL "Missing PyGObject"
|
logger CRITICAL "Missing PyGObject"
|
||||||
fdialog "Requires PyGObject (python3-gobject)"
|
fdialog "Requires PyGObject (python-gobject)"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
logger INFO "Found PyGObject in Python env"
|
logger INFO "Found PyGObject in Python env"
|
||||||
|
@ -537,10 +537,10 @@ fetch_helpers_by_sum(){
|
||||||
source "$config_file"
|
source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="05a84408e1d375a38a899b715c38da6e"
|
["ui.py"]="9bfa6de9a648c7c8aa24bdec66a38eae"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="80f1740a56e0b81d8c811ef9ac749c36"
|
["funcs"]="48ed212978d20bc24a1adda38389e1b1"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
local repo="dztui"
|
local repo="dztui"
|
||||||
|
@ -664,7 +664,7 @@ find_default_path(){
|
||||||
$sd_res
|
$sd_res
|
||||||
|
|
||||||
case "$res" in
|
case "$res" in
|
||||||
*auto*) discover ;;
|
*auto*) _discover ;;
|
||||||
*manual*)
|
*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 &&
|
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 ;;
|
file_picker ;;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=5.2.0
|
version=5.2.1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
|
|
@ -18,7 +18,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.2.0
|
# 5.2.1
|
||||||
app_name = "DZGUI"
|
app_name = "DZGUI"
|
||||||
|
|
||||||
start_time = 0
|
start_time = 0
|
||||||
|
@ -137,7 +137,7 @@ side_buttons = [
|
||||||
]
|
]
|
||||||
status_tooltip = {
|
status_tooltip = {
|
||||||
"Server browser": "Used to browse the global server list",
|
"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",
|
"Quick-connect to favorite server": "Connect to your favorite server",
|
||||||
"Recent servers": "Shows the last 10 servers you connected to (includes attempts)",
|
"Recent servers": "Shows the last 10 servers you connected to (includes attempts)",
|
||||||
"Connect by IP": "Connect to a server by IP",
|
"Connect by IP": "Connect to a server by IP",
|
||||||
|
|
Loading…
Reference in a new issue