Compare commits

..

No commits in common. "929f497b9fd155a01f3e6bffa4f3fd7cca321348" and "53e50a5716de8409631d3c9da9141007b9b1068a" have entirely different histories.

4 changed files with 5 additions and 10 deletions

View File

@ -1,9 +1,5 @@
# Changelog
## [6.0.0-beta.14] 2025-12-09
## Fixed
- Dialogs with newlines breaking output in log table
## [6.0.0-beta.13] 2025-11-29
## Fixed
- Server filter panel not being hidden when entering other page contexts

View File

@ -3,7 +3,7 @@ set -o pipefail
src_path=$(realpath "$0")
version=6.0.0.beta-14
version=6.0.0.beta-13
#CONSTANTS
aid=221100
@ -602,7 +602,7 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file"
declare -A sums
sums=(
["funcs"]="3036da0c8f46452af4822bbeaa1a9454"
["funcs"]="519a13ecb5c8527ae3cbefb5babe2c62"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="ed442c3aecf33f777d59dcf53650d263"
["ui.py"]="8edf48e6780460bd8ea7b01614592296"

View File

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

View File

@ -866,14 +866,13 @@ def spawn_dialog(msg: str, mode: Popup) -> bool:
dialog = GenericDialog(msg, mode)
response = dialog.run()
dialog.destroy()
clean_msg = msg.replace("\n", " ")
match response:
case Gtk.ResponseType.OK:
logger.info(f"User confirmed dialog with message '{clean_msg}'")
logger.info(f"User confirmed dialog with message '{msg}'")
return False
case Gtk.ResponseType.CANCEL | Gtk.ResponseType.DELETE_EVENT:
logger.info(f"User aborted dialog with message '{clean_msg}'")
logger.info(f"User aborted dialog with message '{msg}'")
return True
return False