Compare commits

..

No commits in common. "61f3fd982101d6af8be6f209229f979e026bad1a" and "e2848b3fed32844d56cd021e8c813b53745388be" have entirely different histories.

4 changed files with 5 additions and 12 deletions

View File

@ -1,9 +1,5 @@
# 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
@ -17,9 +13,6 @@
- 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-4
version=6.0.0.beta-3
#CONSTANTS
aid=221100
@ -585,10 +585,10 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file"
declare -A sums
sums=(
["funcs"]="2becf640f9c9645fd6562ac04e5599b2"
["funcs"]="c2aec0a2fc153a2535e6493b3751ca81"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593"
["ui.py"]="294a7daf544a96e2a108d252df5e0676"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
)
local author="aclist"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -o pipefail
version="6.0.0-beta.4"
version="6.0.0-beta.3"
#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 not RowType.OPTIONS:
if App.treeview.subpage is None:
return
process_toggle(RowType.TGL_BRANCH)