Merge pull request #226 from aclist/prerelease/6.0.0-beta.4
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled

fix: toggle branch signal propagation
This commit is contained in:
aclist 2025-08-13 16:47:32 +09:00 committed by GitHub
commit 61f3fd9821
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 5 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## [6.0.0-beta.4] 2025-08-13
## Fixed
- Branch toggle signal being emitted when entering Options 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

View File

@ -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
@ -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"

View File

@ -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

View File

@ -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)