fix error message and details error display

This commit is contained in:
VALLONGOL 2025-06-11 12:27:30 +02:00
parent d5d84f1448
commit 3cc24e3ec5
3 changed files with 6 additions and 6 deletions

View File

@ -6,10 +6,10 @@
import re
# --- Version Data (Generated) ---
__version__ = "v.0.0.0.29-0-g675a032-dirty"
GIT_COMMIT_HASH = "675a032af46832124bc4f58a855e5595bbcf0432"
__version__ = "v.0.0.0.30-2-g11667ba-dirty"
GIT_COMMIT_HASH = "11667bad057381279787e801f4f2536cdb35b2e6"
GIT_BRANCH = "master"
BUILD_TIMESTAMP = "2025-06-10T07:07:10.120869+00:00"
BUILD_TIMESTAMP = "2025-06-11T10:25:53.458947+00:00"
IS_GIT_REPO = True
# --- Default Values (for comparison or fallback) ---

View File

@ -996,7 +996,7 @@ class GDBDumpJsonCommand(gdb.Command):
status_payload.update(
{
"status": "error",
"message": "Input or GDB evaluation error.",
"message": "GDB error.",
"details": str(e_val),
}
)

View File

@ -535,8 +535,8 @@ class GDBGui(tk.Tk):
"breakpoint_spec": 150,
"variable": 150,
"file": 180,
"status": 80,
"details": 180,
"status": 100,
"details": 600,
}
minwidths = {
"timestamp": 120,