From 1a3f6936524579e3b7d0daeba5a56fcf3042946c Mon Sep 17 00:00:00 2001 From: Token2 Date: Sun, 23 Nov 2025 17:45:14 +0100 Subject: [PATCH] Update window title for macOS version --- gui-mac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui-mac.py b/gui-mac.py index c584007..d638d9b 100644 --- a/gui-mac.py +++ b/gui-mac.py @@ -883,7 +883,7 @@ read -p "Press Enter to close this window..." # Create main application window root = tk.Tk() root.geometry("800x600") -root.title("FIDO2.1 Manager - Python GUI 0.2 - (c) Token2 ") +root.title("FIDO2.1 Manager - Python GUI for macOS 0.2.1 - (c) Token2 ") # Create top frame for controls top_frame = ttk.Frame(root)