From 6a554b4e88cbe287eede873d2a75be73198a8bb1 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:40:55 +0900 Subject: [PATCH 1/4] fix: toggle branch signal propagation --- CHANGELOG.md | 7 +++++++ dzgui.sh | 4 ++-- helpers/funcs | 2 +- helpers/ui.py | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30817c7..2b48229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [6.0.0-beta.4] 2025-08-13 +## Fixed +- Branch toggle signal being emitted when entering Settings menu from other contexts + ## [6.0.0-beta.3] 2025-08-08 ## Added - Additional server metadata to details dialog @@ -13,6 +17,9 @@ - Prevent debug button from activating when in certain input fields - Window size not updating correctly when unmaximizing window after changing "fullscreen at boot" setting +## Dropped +- Extraneous information from right statusbar + ## [6.0.0-beta.2] 2025-07-29 ## Fixed - Missing parameters when closing application via window decorations diff --git a/dzgui.sh b/dzgui.sh index 3c4de36..48a09b1 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -585,10 +585,10 @@ fetch_helpers_by_sum(){ [[ -f "$config_file" ]] && source "$config_file" declare -A sums sums=( - ["funcs"]="c2aec0a2fc153a2535e6493b3751ca81" + ["funcs"]="2becf640f9c9645fd6562ac04e5599b2" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a" - ["ui.py"]="294a7daf544a96e2a108d252df5e0676" + ["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ) local author="aclist" diff --git a/helpers/funcs b/helpers/funcs index b4a6d03..6fc1c4d 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version="6.0.0-beta.3" +version="6.0.0-beta.4" #CONSTANTS aid=221100 diff --git a/helpers/ui.py b/helpers/ui.py index 42e326e..0a21890 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -3604,7 +3604,7 @@ class Options(Gtk.Box): def _on_branch_changed(self, combo: Gtk.ComboBoxText) -> None: # prevent triggering on initial init - if App.treeview.subpage is None: + if App.treeview.subpage is not RowType.OPTIONS: return process_toggle(RowType.TGL_BRANCH) From 8e492095d917d8d3a7f91105580a1042998ab347 Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:44:48 +0900 Subject: [PATCH 2/4] chore: bump version --- dzgui.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index 48a09b1..a5fd15b 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=6.0.0.beta-3 +version=6.0.0.beta-4 #CONSTANTS aid=221100 @@ -1029,13 +1029,13 @@ initial_setup(){ watcher_deps check_architecture test_connection - fetch_helpers > >(pdialog "Checking helper files") +# fetch_helpers > >(pdialog "Checking helper files") varcheck source "$config_file" lock legacy_vars legacy_cols - check_version +# check_version check_map_count steam_deps migrate_files From 0d3a3debf9a1e8858f22938994f02ec81d129b0a Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:45:32 +0900 Subject: [PATCH 3/4] chore: uncomment lines --- dzgui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index a5fd15b..39342fd 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1029,13 +1029,13 @@ initial_setup(){ watcher_deps check_architecture test_connection -# fetch_helpers > >(pdialog "Checking helper files") + fetch_helpers > >(pdialog "Checking helper files") varcheck source "$config_file" lock legacy_vars legacy_cols -# check_version + check_version check_map_count steam_deps migrate_files From c7bd8d3809c36db844c61a133f5c449e05a0595a Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:46:24 +0900 Subject: [PATCH 4/4] chore: reword changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b48229..8ce7c48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## [6.0.0-beta.4] 2025-08-13 ## Fixed -- Branch toggle signal being emitted when entering Settings menu from other contexts +- Branch toggle signal being emitted when entering Options menu from other contexts ## [6.0.0-beta.3] 2025-08-08 ## Added