From bce820ec67bc1f65ddf075bbb8255a242df37aa5 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Thu, 11 Jun 2026 12:49:17 +0200 Subject: [PATCH] =?UTF-8?q?fix(apple):=20title=20the=20app=20"Punktfunkemp?= =?UTF-8?q?f=C3=A4nger"=20=E2=80=94=20navigation=20title=20+=20window=20ti?= =?UTF-8?q?tle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches the bundle display name; was the lowercase project name "punktfunk" in the home navigation title (iOS large title / macOS titlebar) and the WindowGroup title. Co-Authored-By: Claude Fable 5 --- clients/apple/Sources/PunktfunkClient/ContentView.swift | 2 +- clients/apple/Sources/PunktfunkClient/PunktfunkClientApp.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/apple/Sources/PunktfunkClient/ContentView.swift b/clients/apple/Sources/PunktfunkClient/ContentView.swift index ac13052..af5df85 100644 --- a/clients/apple/Sources/PunktfunkClient/ContentView.swift +++ b/clients/apple/Sources/PunktfunkClient/ContentView.swift @@ -109,7 +109,7 @@ struct ContentView: View { } } } - .navigationTitle("punktfunk") + .navigationTitle("Punktfunkempfänger") .toolbar { #if os(iOS) // Adjacent trailing items share one glass pill (the system default). diff --git a/clients/apple/Sources/PunktfunkClient/PunktfunkClientApp.swift b/clients/apple/Sources/PunktfunkClient/PunktfunkClientApp.swift index 692e197..00759a9 100644 --- a/clients/apple/Sources/PunktfunkClient/PunktfunkClientApp.swift +++ b/clients/apple/Sources/PunktfunkClient/PunktfunkClientApp.swift @@ -13,7 +13,7 @@ struct PunktfunkClientApp: App { #endif var body: some Scene { - WindowGroup("punktfunk") { + WindowGroup("Punktfunkempfänger") { ContentView() } #if os(macOS)