1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-03 19:13:00 +02:00

chore: update checksums

This commit is contained in:
aclist 2025-03-15 16:31:44 +09:00
parent 2e2b738ca6
commit 4cbffaf3ff
3 changed files with 13 additions and 5 deletions

View file

@ -1,5 +1,15 @@
# 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
## Fixed
- Livonia server results being dropped from batch queries

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail
version=5.7.0-beta.9
version=5.7.0-beta.10
#CONSTANTS
aid=221100
@ -587,7 +587,7 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file"
declare -A sums
sums=(
["ui.py"]="5a876efacf208d12b5fe761996425412"
["ui.py"]="dfec256412be2bfb83d69ad873f244e1"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="0d2d7a2b08f1112dc2474ba81a489002"

View file

@ -2463,6 +2463,7 @@ class App(Gtk.Application):
def _halt_window_subprocess(self, accel_group, window, code, flag):
self.win.halt_proc_and_quit(self.win, None)
def save_res_and_quit(window):
if window.props.is_maximized:
Gtk.main_quit()
@ -2514,7 +2515,6 @@ class ModSelectionPanel(Gtk.Box):
button.connect("clicked", self._on_button_clicked)
self.pack_start(button, False, True, 0)
def initialize(self):
l = len(self.get_children())
last = self.get_children()[l-1]
@ -2526,7 +2526,6 @@ class ModSelectionPanel(Gtk.Box):
case "Unhighlight stale":
i.set_label("Highlight stale")
def _on_button_clicked(self, button):
self.active_button = button
label = button.get_label()
@ -2555,7 +2554,6 @@ class ModSelectionPanel(Gtk.Box):
path = Gtk.TreePath(i)
treeview.get_selection().select_path(path)
def _remove_last_button(self):
children = self.get_children()
l = len(children)