mirror of
https://github.com/aclist/dztui.git
synced 2026-08-31 20:27:04 +02:00
Compare commits
5 Commits
e2848b3fed
...
61f3fd9821
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61f3fd9821 | ||
|
|
c7bd8d3809 | ||
|
|
0d3a3debf9 | ||
|
|
8e492095d9 | ||
|
|
6a554b4e88 |
@ -1,5 +1,9 @@
|
|||||||
# 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
|
||||||
@ -13,6 +17,9 @@
|
|||||||
- 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-3
|
version=6.0.0.beta-4
|
||||||
|
|
||||||
#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"]="c2aec0a2fc153a2535e6493b3751ca81"
|
["funcs"]="2becf640f9c9645fd6562ac04e5599b2"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
|
||||||
["ui.py"]="294a7daf544a96e2a108d252df5e0676"
|
["ui.py"]="38b589e4b4fd9a9d3e049e7dcbdc8593"
|
||||||
["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.3"
|
version="6.0.0-beta.4"
|
||||||
|
|
||||||
#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 None:
|
if App.treeview.subpage is not RowType.OPTIONS:
|
||||||
return
|
return
|
||||||
process_toggle(RowType.TGL_BRANCH)
|
process_toggle(RowType.TGL_BRANCH)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user