mirror of
https://github.com/aclist/dztui.git
synced 2026-09-01 04:37:04 +02:00
Compare commits
No commits in common. "61f3fd982101d6af8be6f209229f979e026bad1a" and "e2848b3fed32844d56cd021e8c813b53745388be" have entirely different histories.
61f3fd9821
...
e2848b3fed
@ -1,9 +1,5 @@
|
|||||||
# Changelog
|
# 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
|
## [6.0.0-beta.3] 2025-08-08
|
||||||
## Added
|
## Added
|
||||||
- Additional server metadata to details dialog
|
- Additional server metadata to details dialog
|
||||||
@ -17,9 +13,6 @@
|
|||||||
- Prevent debug button from activating when in certain input fields
|
- Prevent debug button from activating when in certain input fields
|
||||||
- Window size not updating correctly when unmaximizing window after changing "fullscreen at boot" setting
|
- 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
|
## [6.0.0-beta.2] 2025-07-29
|
||||||
## Fixed
|
## Fixed
|
||||||
- Missing parameters when closing application via window decorations
|
- Missing parameters when closing application via window decorations
|
||||||
|
|||||||
6
dzgui.sh
6
dzgui.sh
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=6.0.0.beta-4
|
version=6.0.0.beta-3
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
@ -585,10 +585,10 @@ fetch_helpers_by_sum(){
|
|||||||
[[ -f "$config_file" ]] && source "$config_file"
|
[[ -f "$config_file" ]] && source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["funcs"]="2becf640f9c9645fd6562ac04e5599b2"
|
["funcs"]="c2aec0a2fc153a2535e6493b3751ca81"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
||||||
["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593"
|
["ui.py"]="294a7daf544a96e2a108d252df5e0676"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version="6.0.0-beta.4"
|
version="6.0.0-beta.3"
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
|||||||
@ -3604,7 +3604,7 @@ class Options(Gtk.Box):
|
|||||||
|
|
||||||
def _on_branch_changed(self, combo: Gtk.ComboBoxText) -> None:
|
def _on_branch_changed(self, combo: Gtk.ComboBoxText) -> None:
|
||||||
# prevent triggering on initial init
|
# prevent triggering on initial init
|
||||||
if App.treeview.subpage is not RowType.OPTIONS:
|
if App.treeview.subpage is None:
|
||||||
return
|
return
|
||||||
process_toggle(RowType.TGL_BRANCH)
|
process_toggle(RowType.TGL_BRANCH)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user