mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 11:33:01 +02:00
chore: update checksums
This commit is contained in:
parent
2e2b738ca6
commit
4cbffaf3ff
3 changed files with 13 additions and 5 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [5.7.0-beta.10] 2024-03-15
|
||||||
|
## Added
|
||||||
|
- Restore application size on subsequent startup
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
- Grid scaling causes table to exceeds bounds of display viewport
|
||||||
|
- Window exceeds taskbar on Steam Deck
|
||||||
|
## Changed
|
||||||
|
- Packed filter checkbox buttons into a 3x3 grid
|
||||||
|
|
||||||
## [5.7.0-beta.9] 2024-03-04
|
## [5.7.0-beta.9] 2024-03-04
|
||||||
## Fixed
|
## Fixed
|
||||||
- Livonia server results being dropped from batch queries
|
- Livonia server results being dropped from batch queries
|
||||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.7.0-beta.9
|
version=5.7.0-beta.10
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -587,7 +587,7 @@ fetch_helpers_by_sum(){
|
||||||
[[ -f "$config_file" ]] && source "$config_file"
|
[[ -f "$config_file" ]] && source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="5a876efacf208d12b5fe761996425412"
|
["ui.py"]="dfec256412be2bfb83d69ad873f244e1"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="0d2d7a2b08f1112dc2474ba81a489002"
|
["funcs"]="0d2d7a2b08f1112dc2474ba81a489002"
|
||||||
|
|
|
@ -2463,6 +2463,7 @@ class App(Gtk.Application):
|
||||||
def _halt_window_subprocess(self, accel_group, window, code, flag):
|
def _halt_window_subprocess(self, accel_group, window, code, flag):
|
||||||
self.win.halt_proc_and_quit(self.win, None)
|
self.win.halt_proc_and_quit(self.win, None)
|
||||||
|
|
||||||
|
|
||||||
def save_res_and_quit(window):
|
def save_res_and_quit(window):
|
||||||
if window.props.is_maximized:
|
if window.props.is_maximized:
|
||||||
Gtk.main_quit()
|
Gtk.main_quit()
|
||||||
|
@ -2514,7 +2515,6 @@ class ModSelectionPanel(Gtk.Box):
|
||||||
button.connect("clicked", self._on_button_clicked)
|
button.connect("clicked", self._on_button_clicked)
|
||||||
self.pack_start(button, False, True, 0)
|
self.pack_start(button, False, True, 0)
|
||||||
|
|
||||||
|
|
||||||
def initialize(self):
|
def initialize(self):
|
||||||
l = len(self.get_children())
|
l = len(self.get_children())
|
||||||
last = self.get_children()[l-1]
|
last = self.get_children()[l-1]
|
||||||
|
@ -2526,7 +2526,6 @@ class ModSelectionPanel(Gtk.Box):
|
||||||
case "Unhighlight stale":
|
case "Unhighlight stale":
|
||||||
i.set_label("Highlight stale")
|
i.set_label("Highlight stale")
|
||||||
|
|
||||||
|
|
||||||
def _on_button_clicked(self, button):
|
def _on_button_clicked(self, button):
|
||||||
self.active_button = button
|
self.active_button = button
|
||||||
label = button.get_label()
|
label = button.get_label()
|
||||||
|
@ -2555,7 +2554,6 @@ class ModSelectionPanel(Gtk.Box):
|
||||||
path = Gtk.TreePath(i)
|
path = Gtk.TreePath(i)
|
||||||
treeview.get_selection().select_path(path)
|
treeview.get_selection().select_path(path)
|
||||||
|
|
||||||
|
|
||||||
def _remove_last_button(self):
|
def _remove_last_button(self):
|
||||||
children = self.get_children()
|
children = self.get_children()
|
||||||
l = len(children)
|
l = len(children)
|
||||||
|
|
Loading…
Reference in a new issue