Compare commits

..

5 Commits

Author SHA1 Message Date
aclist
a5be4d9d31 chore: bump version
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled
2025-08-09 16:06:07 +09:00
aclist
da5a5999f0 chore: uncomment 2025-08-09 16:01:30 +09:00
aclist
f4f3e61b83 fix: pass correct button to submit method 2025-08-09 16:01:00 +09:00
aclist
3d91e07d25 chore: uncomment todo 2025-08-09 15:47:22 +09:00
aclist
cff4a2e1e7 chore: update checksums 2025-08-09 11:32:43 +09:00
3 changed files with 7 additions and 6 deletions

View File

@ -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"]="b3a45a42bc748dbcbebcd1a7748609cd" ["funcs"]="c2aec0a2fc153a2535e6493b3751ca81"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a" ["servers.py"]="4c5013aaf694806cfecd4f1c905bdc9a"
["ui.py"]="3dfddc8260449d59f4ca71bc4b8d2989" ["ui.py"]="294a7daf544a96e2a108d252df5e0676"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
) )
local author="aclist" local author="aclist"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version="6.0.0-beta.2" version="6.0.0-beta.3"
#CONSTANTS #CONSTANTS
aid=221100 aid=221100

View File

@ -3543,9 +3543,10 @@ class Options(Gtk.Box):
self, entry: Gtk.Entry, context: Preferences self, entry: Gtk.Entry, context: Preferences
) -> None: ) -> None:
text = entry.get_text() text = entry.get_text()
button = entry.sibling
if not self._is_valid_text(text, context): if not self._is_valid_text(text, context):
return return
self._on_save_clicked(None, entry, context) self._on_save_clicked(button, entry, context)
def _make_grid(self, rows: list) -> Gtk.Grid: def _make_grid(self, rows: list) -> Gtk.Grid:
grid = Gtk.Grid( grid = Gtk.Grid(
@ -3569,7 +3570,7 @@ class Options(Gtk.Box):
return grid return grid
def _on_save_clicked( def _on_save_clicked(
self, button: Gtk.Button | None, entry: Gtk.Entry, context: Preferences self, button: Gtk.Button, entry: Gtk.Entry, context: Preferences
) -> None: ) -> None:
show_wait_dialog = True show_wait_dialog = True
wait_msg = "Working" wait_msg = "Working"
@ -3605,7 +3606,7 @@ class Options(Gtk.Box):
# prevent triggering on initial init # prevent triggering on initial init
if App.treeview.subpage is None: if App.treeview.subpage is None:
return return
# TODO: process_toggle(RowType.TGL_BRANCH) process_toggle(RowType.TGL_BRANCH)
def _on_radio_toggled( def _on_radio_toggled(
self, button: Gtk.RadioButton, context: Preferences self, button: Gtk.RadioButton, context: Preferences