From e5ae0a7b88372b2b0c7e3b3432fbaa466e8a16e6 Mon Sep 17 00:00:00 2001 From: Jacob Fu <141651335+FuJacob@users.noreply.github.com> Date: Sat, 30 May 2026 14:30:42 -0700 Subject: [PATCH] Port expanded About support copy to redesigned AboutPaneView PR #411 expanded the support copy in the legacy SettingsView but did not touch AboutPaneView, which is the pane the redesigned Settings window actually shows (gated by isRedesignEnabled, on by default). Copy the same two-paragraph mission + ask into the live pane so users see it. --- Cotabby/UI/Settings/Panes/AboutPaneView.swift | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/Cotabby/UI/Settings/Panes/AboutPaneView.swift b/Cotabby/UI/Settings/Panes/AboutPaneView.swift index 9f4d580c..cf4a9ede 100644 --- a/Cotabby/UI/Settings/Panes/AboutPaneView.swift +++ b/Cotabby/UI/Settings/Panes/AboutPaneView.swift @@ -64,10 +64,20 @@ struct AboutPaneView: View { .tint(.blue) } } label: { - Text( - "Cotabby is free and open source, maintained by two university students in our free time. " - + "If it's useful to you, please consider supporting development." - ) + VStack(alignment: .leading, spacing: 8) { + Text( + "Cotabby started from a simple belief: AI should run on your device, respect your privacy, " + + "and remain open to everyone. That's why Cotabby is open source, local-first, and built " + + "to give users full control over their own hardware and data." + ) + + Text( + "We're building Cotabby in our spare time, one release at a time. Every feature, bug fix, " + + "and support reply takes real time and care from two university students trying to keep " + + "this project alive. If Cotabby has been useful to you, please consider supporting our " + + "mission." + ) + } .foregroundStyle(.secondary) .fixedSize(horizontal: false, vertical: true) }