From 3c92172e6b2ecec95c917e38c94ec42e2e0fc6d9 Mon Sep 17 00:00:00 2001 From: JJ Pritzl Date: Wed, 27 May 2026 13:18:12 -0500 Subject: [PATCH 1/2] JPCFM-5664 Remove build version from About panel display Co-Authored-By: Claude Sonnet 4.6 --- Source/AppDelegate.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/AppDelegate.swift b/Source/AppDelegate.swift index 041ac5b..394f1e5 100644 --- a/Source/AppDelegate.swift +++ b/Source/AppDelegate.swift @@ -38,4 +38,9 @@ class AppDelegate: NSObject, NSApplicationDelegate { return true } + @IBAction func orderFrontStandardAboutPanel(_ sender: Any?) { + let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" + NSApp.orderFrontStandardAboutPanel(options: [.applicationVersion: version]) + } + } From a98568a315d9d978557963a53525d268a4df012d Mon Sep 17 00:00:00 2001 From: JJ Pritzl Date: Wed, 27 May 2026 13:41:11 -0500 Subject: [PATCH 2/2] JPCFM-5664 Fix About panel still showing build version in parentheses Co-Authored-By: Claude Sonnet 4.6 --- Source/AppDelegate.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/AppDelegate.swift b/Source/AppDelegate.swift index 394f1e5..a6bbeb9 100644 --- a/Source/AppDelegate.swift +++ b/Source/AppDelegate.swift @@ -39,8 +39,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { } @IBAction func orderFrontStandardAboutPanel(_ sender: Any?) { - let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" - NSApp.orderFrontStandardAboutPanel(options: [.applicationVersion: version]) + NSApp.orderFrontStandardAboutPanel(options: [.version: ""]) } }