Feature-komplett für TestFlight. App-Icon-Platzhalter, Siri-Shortcut, Share-Extension, Release-Checklist mit allen externen Apple-Schritten. - scripts/make-appicon.swift: CoreGraphics-basierter Generator für 1024×1024 forest-green PNG mit "C"-Letter und Karten-Stack-Schatten - Asset-Catalog auf Single-Size-AppIcon-Pattern umgestellt - StudyCardsIntent + CardsAppShortcuts (App Intents): Siri- Shortcut "Karten lernen mit Cards" / "Mit Cards lernen" - CardsShareExtension Target: ShareViewController (UIKit-Bootstrap + SwiftUI-Hosting), ShareEditorView mit Text-Edit - PendingShare + PendingShareStore shared in App-Group group.ev.mana.cards - DeckListView zeigt PendingShare-Banner; Tap navigiert zu PendingShareConsumeView mit Deck-Picker + Front/Back-Felder, Submit → POST /cards, danach store.remove - Info.plist: NSPhotoLibraryUsageDescription für Image-Occlusion- Picker, NSUserActivityTypes für Universal-Links - docs/RELEASE_CHECKLIST.md mit externen Schritten: Apple-Developer- Portal, App-IDs, App-Group, AASA, Xcode-Archive, TestFlight-Plan, App-Store-Connect-Felder, Compliance-Verifikation - UI-Test robuster (akzeptiert Login oder Decks/Entdecken als Launch-Erfolg, unabhängig vom Simulator-Keychain-State) - 35 Tests + 1 UI-Test grün, alle drei Targets bauen App-Store-Submission selbst ist externe Aktion und passiert nicht durch dieses Repo — Schritte in docs/RELEASE_CHECKLIST.md. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
38 lines
1.3 KiB
Swift
38 lines
1.3 KiB
Swift
import AppIntents
|
|
import SwiftUI
|
|
|
|
/// Siri-Shortcut: "Karten lernen". Öffnet die App im Decks-Tab.
|
|
/// Tatsächliche Tab-Aktivierung passiert via `cards://` URL-Scheme, das
|
|
/// RootView bereits handhabt.
|
|
struct StudyCardsIntent: AppIntent {
|
|
static let title: LocalizedStringResource = "Karten lernen"
|
|
static let description = IntentDescription(
|
|
"Öffnet Cards und zeigt deine Decks mit fälligen Karten.",
|
|
categoryName: "Lernen"
|
|
)
|
|
static let openAppWhenRun: Bool = true
|
|
|
|
@MainActor
|
|
func perform() async throws -> some IntentResult {
|
|
// Die App ist beim Ausführen schon geöffnet (openAppWhenRun);
|
|
// weitere Navigation passiert in RootView via Deep-Link, falls
|
|
// ein Parameter dazukommt. v1: simple App-Open.
|
|
.result()
|
|
}
|
|
}
|
|
|
|
/// Macht Intents direkt nach Install in Siri/Shortcuts-App sichtbar.
|
|
struct CardsAppShortcuts: AppShortcutsProvider {
|
|
static var appShortcuts: [AppShortcut] {
|
|
AppShortcut(
|
|
intent: StudyCardsIntent(),
|
|
phrases: [
|
|
"Karten lernen mit \(.applicationName)",
|
|
"Mit \(.applicationName) lernen",
|
|
"\(.applicationName) öffnen",
|
|
],
|
|
shortTitle: "Karten lernen",
|
|
systemImageName: "rectangle.stack"
|
|
)
|
|
}
|
|
}
|