From 01d27334ebbc5b0604be2435cfedfeaa9d100812 Mon Sep 17 00:00:00 2001 From: "Dr. Florian Steiner" <75360256+ProduktEntdecker@users.noreply.github.com> Date: Thu, 1 Jan 2026 16:39:36 +0100 Subject: [PATCH] feat(ui): add version and release date to start screen (TOU-26) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Display version number and release date in the footer below the Help/Quit buttons. - Version is read from Info.plist (CFBundleShortVersionString) - Release date is manually set (Jan 2026) - Uses subtle 8pt font in secondary color Closes TOU-26 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- App/Sources/ContentView.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/App/Sources/ContentView.swift b/App/Sources/ContentView.swift index 5ca8389..1e7a303 100644 --- a/App/Sources/ContentView.swift +++ b/App/Sources/ContentView.swift @@ -170,6 +170,11 @@ struct ContentView: View { .padding(.horizontal, 60) Spacer() + + // Version footer + Text("v\(Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "1.0") • Jan 2026") + .font(.system(size: 8)) + .foregroundColor(.secondary) } .padding(32) .frame(width: 420, height: 360)