1.0.1: add review funnel, trial onboarding, and app diagnostics

This commit is contained in:
alexandrev-tibco
2026-02-26 10:33:45 +01:00
parent c5c7e3d2e4
commit 9bdbf80e67
8 changed files with 253 additions and 27 deletions
@@ -9,6 +9,14 @@ final class SettingsViewModel: ObservableObject {
@Published var showToast: Bool = false
@Published var toastMessage: String = ""
var appVersion: String {
Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String ?? "-"
}
var appBuild: String {
Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String ?? "-"
}
func loadCalendars() {
availableCalendars = CalendarService.shared.availableCalendars()
}