├── .gitignore ├── FB10009682 ├── DocumentBrowser │ ├── DocumentBrowser.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── DocumentBrowser │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── SceneDelegate.swift ├── README.md └── screenshot.jpg ├── FB10009688 └── README.md ├── FB10080311 └── README.md ├── FB10094893 └── README.md ├── FB10109922 └── README.md ├── FB10153438 └── README.md ├── FB10248333 └── README.md ├── FB10251075 └── README.md ├── FB10255404 └── README.md ├── FB10256523 └── README.md ├── FB10268771 └── README.md ├── FB10370373 ├── Example │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Example │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Example.entitlements │ │ ├── ExampleApp.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── ExampleWidgets │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── WidgetBackground.colorset │ │ │ └── Contents.json │ │ └── dot.imageset │ │ │ ├── Contents.json │ │ │ ├── dot.png │ │ │ ├── dot@2x.png │ │ │ └── dot@3x.png │ │ ├── ExampleWidgets.intentdefinition │ │ ├── ExampleWidgets.swift │ │ └── Info.plist ├── README.md └── image.jpeg ├── FB10379473 ├── Example │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Example │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Example.entitlements │ │ ├── ExampleApp.swift │ │ ├── ExampleAppIntent.swift │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json └── README.md ├── FB10380124 ├── Example │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Example │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Example.entitlements │ │ ├── ExampleApp.swift │ │ ├── ExampleAppIntent.swift │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── README.md └── screenshot.png ├── FB12333983 ├── ChartsPlayground │ ├── ChartsPlayground.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── ChartsPlayground │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ChartsPlaygroundApp.swift │ │ ├── ContentView.swift │ │ ├── DailySalesChart.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── SalesData.swift ├── README.md └── recording.mp4 ├── FB12385126 ├── README.md ├── SwiftChartsExample │ ├── SwiftChartsExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── SwiftChartsExample │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── DetailView.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── SwiftChartsExampleApp.swift │ │ └── TimelineChart │ │ ├── ChartDataPoint.swift │ │ ├── DateRange.swift │ │ └── TimelineChart.swift └── screenshot.PNG ├── FB12715265 ├── README.md └── TooltipPlayground │ ├── TooltipPlayground.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── TooltipPlayground │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon.png │ │ └── Contents.json │ ├── AppIcon.solidimagestack │ │ ├── Back.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── AppIcon-Back.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── AppIcon-Front.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Middle.solidimagestacklayer │ │ │ ├── Content.imageset │ │ │ ├── AppIcon-Middle.png │ │ │ └── Contents.json │ │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ └── Source │ ├── AppDelegate.swift │ ├── CustomControl.swift │ ├── MainViewController.swift │ ├── SceneDelegate.swift │ ├── SwiftUIView.swift │ └── UIKitView.swift ├── FB12759324 ├── DocumentBrowserPlayground │ ├── DocumentBrowserPlayground.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── DocumentBrowserPlayground │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Back.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Front.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── AppIcon-Middle.png │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── MainViewController.swift │ │ └── SceneDelegate.swift └── README.md ├── FB12777426 ├── Playground │ ├── Playground.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Playground │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Back.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Front.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── AppIcon-Middle.png │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── Source │ │ ├── AppDelegate.swift │ │ ├── FooterOrnament.swift │ │ ├── FooterOrnamentViewModel.swift │ │ ├── MainView.swift │ │ ├── MainViewController.swift │ │ └── SceneDelegate.swift ├── README.md └── screenshot.png ├── FB12796886 ├── Playground │ ├── Playground.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Playground │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Back.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Front.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── AppIcon-Middle.png │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── MiddleLayer.imageset │ │ │ ├── Contents.json │ │ │ └── MiddleLayer.png │ │ ├── ExampleView.swift │ │ ├── Info.plist │ │ ├── MainViewController.swift │ │ ├── SceneDelegate.swift │ │ ├── SettingsStore.swift │ │ └── SettingsView.swift ├── README.md └── screenshot.png ├── FB12965280 ├── InputAccessoryPlayground │ ├── InputAccessoryPlayground.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── InputAccessoryPlayground │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Back.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── AppIcon-Front.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── AppIcon-Middle.png │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── Source │ │ ├── AppDelegate.swift │ │ ├── ExampleInputAccessoryView.swift │ │ ├── MainView.swift │ │ ├── MainViewController.swift │ │ └── SceneDelegate.swift ├── README.md └── screenshot.png ├── FB12990748 └── README.md ├── FB13007427 └── README.md ├── FB13017385 └── README.md ├── FB16123942 ├── Example │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Example │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Example.entitlements │ │ ├── ExampleApp.swift │ │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── README.md ├── allocations-nonobservablesettings.png └── allocations-observablesettings.png ├── FB18198790 ├── Example │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Example │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ └── ExampleApp.swift └── README.md ├── FB18427141 ├── Example │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Example │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── ContentView.swift │ │ └── ExampleApp.swift └── README.md ├── FB18843876 ├── Playground │ ├── Playground.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ ├── Playground │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ └── PlaygroundApp.swift │ └── PlaygroundKit │ │ ├── .gitignore │ │ ├── Package.resolved │ │ ├── Package.swift │ │ └── Sources │ │ ├── PlaygroundKit │ │ ├── Example.swift │ │ └── Macros.swift │ │ └── PlaygroundKitMacros │ │ ├── AppIntentGenerator.swift │ │ └── Plugin.swift ├── README.md └── screenshot.png ├── FB20320243 ├── Playground.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Playground │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ └── PlaygroundApp.swift ├── README.md └── video.mov ├── FB5709793 ├── README.md ├── SBSIntentUI │ ├── Base.lproj │ │ └── MainInterface.storyboard │ ├── Info.plist │ └── IntentViewController.swift ├── SBSIntents │ ├── Info.plist │ └── IntentHandler.swift ├── SBSKit │ ├── Dummy.swift │ ├── Info.plist │ ├── Intents.intentdefinition │ └── SBSKit.h ├── SiriIntentUILayoutIssue.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── SiriIntentUILayoutIssue │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── FB6166099 ├── DragDropWindow.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DragDropWindow │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── TableViewController.swift └── README.md ├── FB6678113 ├── HealthTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── HealthTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── HealthTest.entitlements │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift └── README.md ├── FB6771851 ├── README.md ├── SiriFileTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SiriFileTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024.png │ │ │ ├── AppIcon-120.png │ │ │ ├── AppIcon-152.png │ │ │ ├── AppIcon-167.png │ │ │ ├── AppIcon-180.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-40.png │ │ │ ├── AppIcon-58.png │ │ │ ├── AppIcon-60.png │ │ │ ├── AppIcon-76.png │ │ │ ├── AppIcon-80.png │ │ │ ├── AppIcon-87.png │ │ │ ├── AppIcon20.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── SiriFileTestIntents │ ├── Info.plist │ ├── IntentHandler.swift │ └── ViewFileIntentHandler.swift └── SiriFileTestKit │ ├── Dummy.swift │ ├── Info.plist │ ├── Intents.intentdefinition │ └── SiriFileTestKit.h ├── FB6876953 ├── README.md ├── SiriFileTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SiriFileTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024.png │ │ │ ├── AppIcon-120.png │ │ │ ├── AppIcon-152.png │ │ │ ├── AppIcon-167.png │ │ │ ├── AppIcon-180.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-40.png │ │ │ ├── AppIcon-58.png │ │ │ ├── AppIcon-60.png │ │ │ ├── AppIcon-76.png │ │ │ ├── AppIcon-80.png │ │ │ ├── AppIcon-87.png │ │ │ ├── AppIcon20.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── SiriFileTestIntents │ ├── AppendIntentHandler.swift │ ├── Info.plist │ └── IntentHandler.swift └── SiriFileTestKit │ ├── Dummy.swift │ ├── Info.plist │ ├── Intents.intentdefinition │ └── SiriFileTestKit.h ├── FB7154915 ├── ImageTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── ImageTest.xcscheme │ │ └── ImageTestIntents.xcscheme ├── ImageTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── MainView.swift │ ├── MainViewController.swift │ └── SceneDelegate.swift ├── ImageTestIntents │ ├── Info.plist │ └── IntentHandler.swift ├── ImageTestKit │ ├── Dummy.swift │ ├── ImageTestKit.h │ ├── Info.plist │ └── Intents.intentdefinition └── README.md ├── FB7172638 ├── README.md ├── ShortcutBookmarks.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── ShortcutBookmarks │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024.png │ │ │ ├── AppIcon-120.png │ │ │ ├── AppIcon-152.png │ │ │ ├── AppIcon-167.png │ │ │ ├── AppIcon-180.png │ │ │ ├── AppIcon-20.png │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon-40.png │ │ │ ├── AppIcon-58.png │ │ │ ├── AppIcon-60.png │ │ │ ├── AppIcon-76.png │ │ │ ├── AppIcon-80.png │ │ │ ├── AppIcon-87.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── MainView.swift │ ├── MainViewController.swift │ ├── SceneDelegate.swift │ └── ShortcutBookmarks.entitlements ├── ShortcutBookmarksIntents │ ├── Info.plist │ ├── IntentHandler.swift │ └── ShortcutBookmarksIntents.entitlements └── ShortcutBookmarksKit │ ├── AppConfig.swift │ ├── BookmarkStore.swift │ ├── Info.plist │ ├── Intents.intentdefinition │ └── ShortcutBookmarksKit.h ├── FB7796039 ├── README.md ├── SiriUIDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── SiriUIDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── SiriUIDemoIntents │ ├── Info.plist │ ├── IntentHandler.swift │ └── Intents.intentdefinition └── SiriUIDemoIntentsUI │ ├── Info.plist │ └── IntentViewController.swift ├── FB8190133 ├── OutlineDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── OutlineDemo │ ├── Application │ │ ├── AppDelegate.swift │ │ └── SceneDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── List │ │ ├── ListContent.swift │ │ ├── ListDataSource.swift │ │ ├── ListItem.swift │ │ ├── ListView.swift │ │ └── ListViewController.swift └── README.md ├── FB8920651 ├── README.md ├── SiriLanguageTest │ ├── SiriLanguageTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── SiriLanguageTest │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── MainView.swift │ │ ├── MainViewController.swift │ │ ├── SceneDelegate.swift │ │ ├── da.lproj │ │ │ └── LaunchScreen.strings │ │ └── de.lproj │ │ │ └── LaunchScreen.strings │ └── SiriLanguageTestIntents │ │ ├── Base.lproj │ │ └── Intents.intentdefinition │ │ ├── Info.plist │ │ ├── IntentHandler.swift │ │ ├── TestLanguageIntentHandler.swift │ │ ├── da.lproj │ │ └── Intents.strings │ │ ├── de.lproj │ │ └── Intents.strings │ │ └── en.lproj │ │ └── Intents.strings ├── screenshot1.PNG └── screenshot3.PNG ├── FB8958006 ├── README.md ├── TextViewDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── TextViewDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── MainView.swift │ ├── MainViewController.swift │ ├── SceneDelegate.swift │ └── sample.json ├── FB8960526 ├── README.md ├── TextViewDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── TextViewDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── MainView.swift │ ├── MainViewController.swift │ ├── SceneDelegate.swift │ └── sample.json ├── FB9134601 ├── IntentsExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── IntentsExample.xcscheme │ │ │ ├── TestIntents.xcscheme │ │ │ └── TestIntentsUI.xcscheme │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── IntentsExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── IntentsExample.entitlements │ ├── MainViewController.swift │ └── SceneDelegate.swift ├── IntentsExampleKit │ ├── IntentHandlerFactory.swift │ ├── Intents.intentdefinition │ ├── IntentsExampleKit.h │ ├── TestExtensionIntentHandler.swift │ └── TestInAppIntentHandler.swift ├── README.md ├── TestIntents │ ├── Info.plist │ ├── IntentHandler.swift │ └── TestIntents.entitlements └── TestIntentsUI │ ├── Base.lproj │ └── MainInterface.storyboard │ ├── Info.plist │ ├── IntentViewController.swift │ └── TestIntentsUI.entitlements ├── FB9134854 ├── IntentsExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── IntentsExample.xcscheme │ │ │ ├── TestIntents.xcscheme │ │ │ └── TestIntentsUI.xcscheme │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── IntentsExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── IntentsExample.entitlements │ ├── MainViewController.swift │ └── SceneDelegate.swift ├── IntentsExampleKit │ ├── IntentHandlerFactory.swift │ ├── Intents.intentdefinition │ ├── IntentsExampleKit.h │ └── TestUIIntentHandler.swift ├── README.md ├── TestIntents │ ├── Info.plist │ ├── IntentHandler.swift │ └── TestIntents.entitlements └── TestIntentsUI │ ├── Info.plist │ ├── IntentViewController.swift │ └── TestIntentsUI.entitlements ├── FB9467388 ├── README.md └── URLWidgetParameterExample │ ├── ExampleKit │ ├── ExampleKit.h │ ├── Intents.intentdefinition │ └── Source.swift │ ├── URLWidgetParameterExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── simonbs.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── URLWidgetParameterExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift │ └── WidgetExample │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json │ ├── Info.plist │ ├── WidgetExample.intentdefinition │ └── WidgetExample.swift ├── FB9467472 ├── README.md └── WebKitExample │ ├── .gitignore │ ├── WebKitExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── WebKitExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── MainView.swift │ ├── MainViewController.swift │ └── SceneDelegate.swift ├── FB9709678 ├── BooleanShortcutsActionExample │ ├── BooleanShortcutsActionExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── simonbs.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── simonbs.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── BooleanShortcutsActionExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── GetBooleanValueIntentHandler.swift │ │ ├── Info.plist │ │ ├── Intents.intentdefinition │ │ ├── MainView.swift │ │ └── SceneDelegate.swift └── README.md ├── FB9773317 ├── README.md └── passwords.csv ├── FB9788911 ├── KeyboardLayoutGuideExample │ ├── KeyboardLayoutGuideExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── lunar.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── lunar.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KeyboardLayoutGuideExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── GuideView.swift │ │ ├── Info.plist │ │ ├── MainView.swift │ │ ├── MainViewController.swift │ │ ├── NSLayoutConstraint+Helpers.swift │ │ └── SceneDelegate.swift └── README.md ├── FB9807266 ├── KeyCommandExample │ ├── KeyCommandExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── lunar.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── lunar.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── KeyCommandExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── MainView.swift │ │ ├── MainViewController.swift │ │ └── SceneDelegate.swift ├── README.md └── screenshot.png ├── FB9837189 ├── InputAccessoryViewExample │ ├── InputAccessoryViewExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── lunar.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── lunar.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── InputAccessoryViewExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ │ ├── ExampleInputAccessoryView.swift │ │ ├── Info.plist │ │ ├── MainView.swift │ │ ├── MainViewController.swift │ │ └── SceneDelegate.swift ├── README.md ├── example-app.mp4 └── notes.mp4 └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.xcuserdatad 3 | -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/AppDelegate.swift -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/Info.plist -------------------------------------------------------------------------------- /FB10009682/DocumentBrowser/DocumentBrowser/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/DocumentBrowser/DocumentBrowser/SceneDelegate.swift -------------------------------------------------------------------------------- /FB10009682/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/README.md -------------------------------------------------------------------------------- /FB10009682/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009682/screenshot.jpg -------------------------------------------------------------------------------- /FB10009688/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10009688/README.md -------------------------------------------------------------------------------- /FB10080311/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10080311/README.md -------------------------------------------------------------------------------- /FB10094893/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10094893/README.md -------------------------------------------------------------------------------- /FB10109922/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10109922/README.md -------------------------------------------------------------------------------- /FB10153438/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10153438/README.md -------------------------------------------------------------------------------- /FB10248333/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10248333/README.md -------------------------------------------------------------------------------- /FB10251075/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10251075/README.md -------------------------------------------------------------------------------- /FB10255404/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10255404/README.md -------------------------------------------------------------------------------- /FB10256523/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10256523/README.md -------------------------------------------------------------------------------- /FB10268771/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10268771/README.md -------------------------------------------------------------------------------- /FB10370373/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB10370373/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB10370373/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB10370373/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB10370373/Example/Example.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB10370373/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/Example/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/ContentView.swift -------------------------------------------------------------------------------- /FB10370373/Example/Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/Example.entitlements -------------------------------------------------------------------------------- /FB10370373/Example/Example/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/ExampleApp.swift -------------------------------------------------------------------------------- /FB10370373/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/Contents.json -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/dot.png -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/dot@2x.png -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/dot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Assets.xcassets/dot.imageset/dot@3x.png -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/ExampleWidgets.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/ExampleWidgets.intentdefinition -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/ExampleWidgets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/ExampleWidgets.swift -------------------------------------------------------------------------------- /FB10370373/Example/ExampleWidgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/Example/ExampleWidgets/Info.plist -------------------------------------------------------------------------------- /FB10370373/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/README.md -------------------------------------------------------------------------------- /FB10370373/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10370373/image.jpeg -------------------------------------------------------------------------------- /FB10379473/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB10379473/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB10379473/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB10379473/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB10379473/Example/Example.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB10379473/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB10379473/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB10379473/Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10379473/Example/Example/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/ContentView.swift -------------------------------------------------------------------------------- /FB10379473/Example/Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/Example.entitlements -------------------------------------------------------------------------------- /FB10379473/Example/Example/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/ExampleApp.swift -------------------------------------------------------------------------------- /FB10379473/Example/Example/ExampleAppIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/ExampleAppIntent.swift -------------------------------------------------------------------------------- /FB10379473/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10379473/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10379473/README.md -------------------------------------------------------------------------------- /FB10380124/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB10380124/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB10380124/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB10380124/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB10380124/Example/Example.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB10380124/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB10380124/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB10380124/Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10380124/Example/Example/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/ContentView.swift -------------------------------------------------------------------------------- /FB10380124/Example/Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/Example.entitlements -------------------------------------------------------------------------------- /FB10380124/Example/Example/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/ExampleApp.swift -------------------------------------------------------------------------------- /FB10380124/Example/Example/ExampleAppIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/ExampleAppIntent.swift -------------------------------------------------------------------------------- /FB10380124/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB10380124/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/README.md -------------------------------------------------------------------------------- /FB10380124/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB10380124/screenshot.png -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/ChartsPlaygroundApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/ChartsPlaygroundApp.swift -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/ContentView.swift -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/DailySalesChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/DailySalesChart.swift -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12333983/ChartsPlayground/ChartsPlayground/SalesData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/ChartsPlayground/ChartsPlayground/SalesData.swift -------------------------------------------------------------------------------- /FB12333983/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/README.md -------------------------------------------------------------------------------- /FB12333983/recording.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12333983/recording.mp4 -------------------------------------------------------------------------------- /FB12385126/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/README.md -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/ContentView.swift -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/DetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/DetailView.swift -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/SwiftChartsExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/SwiftChartsExampleApp.swift -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/TimelineChart/ChartDataPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/TimelineChart/ChartDataPoint.swift -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/TimelineChart/DateRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/TimelineChart/DateRange.swift -------------------------------------------------------------------------------- /FB12385126/SwiftChartsExample/SwiftChartsExample/TimelineChart/TimelineChart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/SwiftChartsExample/SwiftChartsExample/TimelineChart/TimelineChart.swift -------------------------------------------------------------------------------- /FB12385126/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12385126/screenshot.PNG -------------------------------------------------------------------------------- /FB12715265/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/README.md -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Info.plist -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Source/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Source/AppDelegate.swift -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Source/CustomControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Source/CustomControl.swift -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Source/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Source/MainViewController.swift -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Source/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Source/SceneDelegate.swift -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Source/SwiftUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Source/SwiftUIView.swift -------------------------------------------------------------------------------- /FB12715265/TooltipPlayground/TooltipPlayground/Source/UIKitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12715265/TooltipPlayground/TooltipPlayground/Source/UIKitView.swift -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/AppDelegate.swift -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/Info.plist -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/MainViewController.swift -------------------------------------------------------------------------------- /FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/DocumentBrowserPlayground/DocumentBrowserPlayground/SceneDelegate.swift -------------------------------------------------------------------------------- /FB12759324/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12759324/README.md -------------------------------------------------------------------------------- /FB12777426/Playground/Playground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12777426/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12777426/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12777426/Playground/Playground.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB12777426/Playground/Playground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/AppIcon-Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/AppIcon-Back.png -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/AppIcon-Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/AppIcon-Front.png -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Info.plist -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Source/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Source/AppDelegate.swift -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Source/FooterOrnament.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Source/FooterOrnament.swift -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Source/FooterOrnamentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Source/FooterOrnamentViewModel.swift -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Source/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Source/MainView.swift -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Source/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Source/MainViewController.swift -------------------------------------------------------------------------------- /FB12777426/Playground/Playground/Source/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/Playground/Playground/Source/SceneDelegate.swift -------------------------------------------------------------------------------- /FB12777426/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/README.md -------------------------------------------------------------------------------- /FB12777426/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12777426/screenshot.png -------------------------------------------------------------------------------- /FB12796886/Playground/Playground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12796886/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12796886/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12796886/Playground/Playground.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB12796886/Playground/Playground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/AppDelegate.swift -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/AppIcon-Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/AppIcon-Back.png -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/MiddleLayer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/MiddleLayer.imageset/Contents.json -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Assets.xcassets/MiddleLayer.imageset/MiddleLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Assets.xcassets/MiddleLayer.imageset/MiddleLayer.png -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/ExampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/ExampleView.swift -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/Info.plist -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/MainViewController.swift -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/SceneDelegate.swift -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/SettingsStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/SettingsStore.swift -------------------------------------------------------------------------------- /FB12796886/Playground/Playground/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/Playground/Playground/SettingsView.swift -------------------------------------------------------------------------------- /FB12796886/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/README.md -------------------------------------------------------------------------------- /FB12796886/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12796886/screenshot.png -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Info.plist -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/AppDelegate.swift -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/ExampleInputAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/ExampleInputAccessoryView.swift -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/MainView.swift -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/MainViewController.swift -------------------------------------------------------------------------------- /FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/InputAccessoryPlayground/InputAccessoryPlayground/Source/SceneDelegate.swift -------------------------------------------------------------------------------- /FB12965280/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/README.md -------------------------------------------------------------------------------- /FB12965280/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12965280/screenshot.png -------------------------------------------------------------------------------- /FB12990748/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB12990748/README.md -------------------------------------------------------------------------------- /FB13007427/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB13007427/README.md -------------------------------------------------------------------------------- /FB13017385/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB13017385/README.md -------------------------------------------------------------------------------- /FB16123942/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB16123942/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB16123942/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB16123942/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB16123942/Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB16123942/Example/Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example/Example.entitlements -------------------------------------------------------------------------------- /FB16123942/Example/Example/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example/ExampleApp.swift -------------------------------------------------------------------------------- /FB16123942/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/Example/Example/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB16123942/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/README.md -------------------------------------------------------------------------------- /FB16123942/allocations-nonobservablesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/allocations-nonobservablesettings.png -------------------------------------------------------------------------------- /FB16123942/allocations-observablesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB16123942/allocations-observablesettings.png -------------------------------------------------------------------------------- /FB18198790/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB18198790/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB18198790/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB18198790/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB18198790/Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB18198790/Example/Example/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example/ContentView.swift -------------------------------------------------------------------------------- /FB18198790/Example/Example/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/Example/Example/ExampleApp.swift -------------------------------------------------------------------------------- /FB18198790/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18198790/README.md -------------------------------------------------------------------------------- /FB18427141/Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB18427141/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB18427141/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB18427141/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB18427141/Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB18427141/Example/Example/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example/ContentView.swift -------------------------------------------------------------------------------- /FB18427141/Example/Example/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/Example/Example/ExampleApp.swift -------------------------------------------------------------------------------- /FB18427141/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18427141/README.md -------------------------------------------------------------------------------- /FB18843876/Playground/Playground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB18843876/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB18843876/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /FB18843876/Playground/Playground/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB18843876/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB18843876/Playground/Playground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB18843876/Playground/Playground/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground/ContentView.swift -------------------------------------------------------------------------------- /FB18843876/Playground/Playground/PlaygroundApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/Playground/PlaygroundApp.swift -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/.gitignore -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/Package.resolved -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/Package.swift -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKit/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKit/Example.swift -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKit/Macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKit/Macros.swift -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKitMacros/AppIntentGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKitMacros/AppIntentGenerator.swift -------------------------------------------------------------------------------- /FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKitMacros/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/Playground/PlaygroundKit/Sources/PlaygroundKitMacros/Plugin.swift -------------------------------------------------------------------------------- /FB18843876/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/README.md -------------------------------------------------------------------------------- /FB18843876/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB18843876/screenshot.png -------------------------------------------------------------------------------- /FB20320243/Playground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB20320243/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB20320243/Playground/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB20320243/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB20320243/Playground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB20320243/Playground/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground/ContentView.swift -------------------------------------------------------------------------------- /FB20320243/Playground/PlaygroundApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/Playground/PlaygroundApp.swift -------------------------------------------------------------------------------- /FB20320243/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/README.md -------------------------------------------------------------------------------- /FB20320243/video.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB20320243/video.mov -------------------------------------------------------------------------------- /FB5709793/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/README.md -------------------------------------------------------------------------------- /FB5709793/SBSIntentUI/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSIntentUI/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /FB5709793/SBSIntentUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSIntentUI/Info.plist -------------------------------------------------------------------------------- /FB5709793/SBSIntentUI/IntentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSIntentUI/IntentViewController.swift -------------------------------------------------------------------------------- /FB5709793/SBSIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSIntents/Info.plist -------------------------------------------------------------------------------- /FB5709793/SBSIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB5709793/SBSKit/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSKit/Dummy.swift -------------------------------------------------------------------------------- /FB5709793/SBSKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSKit/Info.plist -------------------------------------------------------------------------------- /FB5709793/SBSKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB5709793/SBSKit/SBSKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SBSKit/SBSKit.h -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/AppDelegate.swift -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/Info.plist -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/SceneDelegate.swift -------------------------------------------------------------------------------- /FB5709793/SiriIntentUILayoutIssue/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB5709793/SiriIntentUILayoutIssue/ViewController.swift -------------------------------------------------------------------------------- /FB6166099/DragDropWindow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB6166099/DragDropWindow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB6166099/DragDropWindow.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/AppDelegate.swift -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/Info.plist -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/SceneDelegate.swift -------------------------------------------------------------------------------- /FB6166099/DragDropWindow/TableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/DragDropWindow/TableViewController.swift -------------------------------------------------------------------------------- /FB6166099/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6166099/README.md -------------------------------------------------------------------------------- /FB6678113/HealthTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB6678113/HealthTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB6678113/HealthTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB6678113/HealthTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/AppDelegate.swift -------------------------------------------------------------------------------- /FB6678113/HealthTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB6678113/HealthTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB6678113/HealthTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB6678113/HealthTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FB6678113/HealthTest/HealthTest.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/HealthTest.entitlements -------------------------------------------------------------------------------- /FB6678113/HealthTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/Info.plist -------------------------------------------------------------------------------- /FB6678113/HealthTest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/SceneDelegate.swift -------------------------------------------------------------------------------- /FB6678113/HealthTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/HealthTest/ViewController.swift -------------------------------------------------------------------------------- /FB6678113/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6678113/README.md -------------------------------------------------------------------------------- /FB6771851/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/README.md -------------------------------------------------------------------------------- /FB6771851/SiriFileTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB6771851/SiriFileTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB6771851/SiriFileTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/AppDelegate.swift -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-152.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-167.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-58.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-60.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-80.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-87.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon20.png -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/Info.plist -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/SceneDelegate.swift -------------------------------------------------------------------------------- /FB6771851/SiriFileTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTest/ViewController.swift -------------------------------------------------------------------------------- /FB6771851/SiriFileTestIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestIntents/Info.plist -------------------------------------------------------------------------------- /FB6771851/SiriFileTestIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB6771851/SiriFileTestIntents/ViewFileIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestIntents/ViewFileIntentHandler.swift -------------------------------------------------------------------------------- /FB6771851/SiriFileTestKit/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestKit/Dummy.swift -------------------------------------------------------------------------------- /FB6771851/SiriFileTestKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestKit/Info.plist -------------------------------------------------------------------------------- /FB6771851/SiriFileTestKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB6771851/SiriFileTestKit/SiriFileTestKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6771851/SiriFileTestKit/SiriFileTestKit.h -------------------------------------------------------------------------------- /FB6876953/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/README.md -------------------------------------------------------------------------------- /FB6876953/SiriFileTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB6876953/SiriFileTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB6876953/SiriFileTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/AppDelegate.swift -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-152.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-167.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-58.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-60.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-80.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon-87.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/AppIcon20.png -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/Info.plist -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/SceneDelegate.swift -------------------------------------------------------------------------------- /FB6876953/SiriFileTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTest/ViewController.swift -------------------------------------------------------------------------------- /FB6876953/SiriFileTestIntents/AppendIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestIntents/AppendIntentHandler.swift -------------------------------------------------------------------------------- /FB6876953/SiriFileTestIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestIntents/Info.plist -------------------------------------------------------------------------------- /FB6876953/SiriFileTestIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB6876953/SiriFileTestKit/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestKit/Dummy.swift -------------------------------------------------------------------------------- /FB6876953/SiriFileTestKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestKit/Info.plist -------------------------------------------------------------------------------- /FB6876953/SiriFileTestKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB6876953/SiriFileTestKit/SiriFileTestKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB6876953/SiriFileTestKit/SiriFileTestKit.h -------------------------------------------------------------------------------- /FB7154915/ImageTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB7154915/ImageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB7154915/ImageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB7154915/ImageTest.xcodeproj/xcshareddata/xcschemes/ImageTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest.xcodeproj/xcshareddata/xcschemes/ImageTest.xcscheme -------------------------------------------------------------------------------- /FB7154915/ImageTest.xcodeproj/xcshareddata/xcschemes/ImageTestIntents.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest.xcodeproj/xcshareddata/xcschemes/ImageTestIntents.xcscheme -------------------------------------------------------------------------------- /FB7154915/ImageTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/AppDelegate.swift -------------------------------------------------------------------------------- /FB7154915/ImageTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB7154915/ImageTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB7154915/ImageTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB7154915/ImageTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/Info.plist -------------------------------------------------------------------------------- /FB7154915/ImageTest/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/MainView.swift -------------------------------------------------------------------------------- /FB7154915/ImageTest/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/MainViewController.swift -------------------------------------------------------------------------------- /FB7154915/ImageTest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTest/SceneDelegate.swift -------------------------------------------------------------------------------- /FB7154915/ImageTestIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTestIntents/Info.plist -------------------------------------------------------------------------------- /FB7154915/ImageTestIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTestIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB7154915/ImageTestKit/Dummy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTestKit/Dummy.swift -------------------------------------------------------------------------------- /FB7154915/ImageTestKit/ImageTestKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTestKit/ImageTestKit.h -------------------------------------------------------------------------------- /FB7154915/ImageTestKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTestKit/Info.plist -------------------------------------------------------------------------------- /FB7154915/ImageTestKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/ImageTestKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB7154915/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7154915/README.md -------------------------------------------------------------------------------- /FB7172638/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/README.md -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/AppDelegate.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-120.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-152.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-167.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-180.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-58.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-60.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-80.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/AppIcon-87.png -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/Info.plist -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/MainView.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/MainViewController.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/SceneDelegate.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarks/ShortcutBookmarks.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarks/ShortcutBookmarks.entitlements -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksIntents/Info.plist -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksIntents/ShortcutBookmarksIntents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksIntents/ShortcutBookmarksIntents.entitlements -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksKit/AppConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksKit/AppConfig.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksKit/BookmarkStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksKit/BookmarkStore.swift -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksKit/Info.plist -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB7172638/ShortcutBookmarksKit/ShortcutBookmarksKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7172638/ShortcutBookmarksKit/ShortcutBookmarksKit.h -------------------------------------------------------------------------------- /FB7796039/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/README.md -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/AppDelegate.swift -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/Info.plist -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /FB7796039/SiriUIDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemo/ViewController.swift -------------------------------------------------------------------------------- /FB7796039/SiriUIDemoIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemoIntents/Info.plist -------------------------------------------------------------------------------- /FB7796039/SiriUIDemoIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemoIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB7796039/SiriUIDemoIntents/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemoIntents/Intents.intentdefinition -------------------------------------------------------------------------------- /FB7796039/SiriUIDemoIntentsUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemoIntentsUI/Info.plist -------------------------------------------------------------------------------- /FB7796039/SiriUIDemoIntentsUI/IntentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB7796039/SiriUIDemoIntentsUI/IntentViewController.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB8190133/OutlineDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB8190133/OutlineDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB8190133/OutlineDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB8190133/OutlineDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FB8190133/OutlineDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Application/AppDelegate.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Application/SceneDelegate.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/Info.plist -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/List/ListContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/List/ListContent.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/List/ListDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/List/ListDataSource.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/List/ListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/List/ListItem.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/List/ListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/List/ListView.swift -------------------------------------------------------------------------------- /FB8190133/OutlineDemo/List/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/OutlineDemo/List/ListViewController.swift -------------------------------------------------------------------------------- /FB8190133/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8190133/README.md -------------------------------------------------------------------------------- /FB8920651/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/README.md -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/AppDelegate.swift -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/Info.plist -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/MainView.swift -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/MainViewController.swift -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTest/SceneDelegate.swift -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/da.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTest/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/Base.lproj/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/Base.lproj/Intents.intentdefinition -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/Info.plist -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/TestLanguageIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/TestLanguageIntentHandler.swift -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/da.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/da.lproj/Intents.strings -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/de.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/de.lproj/Intents.strings -------------------------------------------------------------------------------- /FB8920651/SiriLanguageTest/SiriLanguageTestIntents/en.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/SiriLanguageTest/SiriLanguageTestIntents/en.lproj/Intents.strings -------------------------------------------------------------------------------- /FB8920651/screenshot1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/screenshot1.PNG -------------------------------------------------------------------------------- /FB8920651/screenshot3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8920651/screenshot3.PNG -------------------------------------------------------------------------------- /FB8958006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/README.md -------------------------------------------------------------------------------- /FB8958006/TextViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB8958006/TextViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB8958006/TextViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB8958006/TextViewDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB8958006/TextViewDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/AppDelegate.swift -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/Info.plist -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/MainView.swift -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/MainViewController.swift -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /FB8958006/TextViewDemo/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8958006/TextViewDemo/sample.json -------------------------------------------------------------------------------- /FB8960526/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/README.md -------------------------------------------------------------------------------- /FB8960526/TextViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB8960526/TextViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB8960526/TextViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB8960526/TextViewDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB8960526/TextViewDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/AppDelegate.swift -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/Info.plist -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/MainView.swift -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/MainViewController.swift -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /FB8960526/TextViewDemo/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB8960526/TextViewDemo/sample.json -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/xcshareddata/xcschemes/IntentsExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/xcshareddata/xcschemes/IntentsExample.xcscheme -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntents.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntents.xcscheme -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntentsUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntentsUI.xcscheme -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FB9134601/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB9134601/IntentsExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9134601/IntentsExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9134601/IntentsExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9134601/IntentsExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9134601/IntentsExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9134601/IntentsExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/Info.plist -------------------------------------------------------------------------------- /FB9134601/IntentsExample/IntentsExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/IntentsExample.entitlements -------------------------------------------------------------------------------- /FB9134601/IntentsExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/MainViewController.swift -------------------------------------------------------------------------------- /FB9134601/IntentsExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9134601/IntentsExampleKit/IntentHandlerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExampleKit/IntentHandlerFactory.swift -------------------------------------------------------------------------------- /FB9134601/IntentsExampleKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExampleKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB9134601/IntentsExampleKit/IntentsExampleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExampleKit/IntentsExampleKit.h -------------------------------------------------------------------------------- /FB9134601/IntentsExampleKit/TestExtensionIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExampleKit/TestExtensionIntentHandler.swift -------------------------------------------------------------------------------- /FB9134601/IntentsExampleKit/TestInAppIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/IntentsExampleKit/TestInAppIntentHandler.swift -------------------------------------------------------------------------------- /FB9134601/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/README.md -------------------------------------------------------------------------------- /FB9134601/TestIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntents/Info.plist -------------------------------------------------------------------------------- /FB9134601/TestIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB9134601/TestIntents/TestIntents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntents/TestIntents.entitlements -------------------------------------------------------------------------------- /FB9134601/TestIntentsUI/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntentsUI/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /FB9134601/TestIntentsUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntentsUI/Info.plist -------------------------------------------------------------------------------- /FB9134601/TestIntentsUI/IntentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntentsUI/IntentViewController.swift -------------------------------------------------------------------------------- /FB9134601/TestIntentsUI/TestIntentsUI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134601/TestIntentsUI/TestIntentsUI.entitlements -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/project.xcworkspace/xcuserdata/simonbs.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/xcshareddata/xcschemes/IntentsExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/xcshareddata/xcschemes/IntentsExample.xcscheme -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntents.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntents.xcscheme -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntentsUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/xcshareddata/xcschemes/TestIntentsUI.xcscheme -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FB9134854/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample.xcodeproj/xcuserdata/simonbs.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB9134854/IntentsExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9134854/IntentsExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9134854/IntentsExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9134854/IntentsExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9134854/IntentsExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9134854/IntentsExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/Info.plist -------------------------------------------------------------------------------- /FB9134854/IntentsExample/IntentsExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/IntentsExample.entitlements -------------------------------------------------------------------------------- /FB9134854/IntentsExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/MainViewController.swift -------------------------------------------------------------------------------- /FB9134854/IntentsExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9134854/IntentsExampleKit/IntentHandlerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExampleKit/IntentHandlerFactory.swift -------------------------------------------------------------------------------- /FB9134854/IntentsExampleKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExampleKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB9134854/IntentsExampleKit/IntentsExampleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExampleKit/IntentsExampleKit.h -------------------------------------------------------------------------------- /FB9134854/IntentsExampleKit/TestUIIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/IntentsExampleKit/TestUIIntentHandler.swift -------------------------------------------------------------------------------- /FB9134854/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/README.md -------------------------------------------------------------------------------- /FB9134854/TestIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/TestIntents/Info.plist -------------------------------------------------------------------------------- /FB9134854/TestIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/TestIntents/IntentHandler.swift -------------------------------------------------------------------------------- /FB9134854/TestIntents/TestIntents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/TestIntents/TestIntents.entitlements -------------------------------------------------------------------------------- /FB9134854/TestIntentsUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/TestIntentsUI/Info.plist -------------------------------------------------------------------------------- /FB9134854/TestIntentsUI/IntentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/TestIntentsUI/IntentViewController.swift -------------------------------------------------------------------------------- /FB9134854/TestIntentsUI/TestIntentsUI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9134854/TestIntentsUI/TestIntentsUI.entitlements -------------------------------------------------------------------------------- /FB9467388/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/README.md -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/ExampleKit/ExampleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/ExampleKit/ExampleKit.h -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/ExampleKit/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/ExampleKit/Intents.intentdefinition -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/ExampleKit/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/ExampleKit/Source.swift -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/Info.plist -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/URLWidgetParameterExample/ViewController.swift -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/Info.plist -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/WidgetExample.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/WidgetExample.intentdefinition -------------------------------------------------------------------------------- /FB9467388/URLWidgetParameterExample/WidgetExample/WidgetExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467388/URLWidgetParameterExample/WidgetExample/WidgetExample.swift -------------------------------------------------------------------------------- /FB9467472/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/README.md -------------------------------------------------------------------------------- /FB9467472/WebKitExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/.gitignore -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/Info.plist -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/MainView.swift -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/MainViewController.swift -------------------------------------------------------------------------------- /FB9467472/WebKitExample/WebKitExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9467472/WebKitExample/WebKitExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/GetBooleanValueIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/GetBooleanValueIntentHandler.swift -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Info.plist -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/Intents.intentdefinition -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/MainView.swift -------------------------------------------------------------------------------- /FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/BooleanShortcutsActionExample/BooleanShortcutsActionExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9709678/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9709678/README.md -------------------------------------------------------------------------------- /FB9773317/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9773317/README.md -------------------------------------------------------------------------------- /FB9773317/passwords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9773317/passwords.csv -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/GuideView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/GuideView.swift -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/Info.plist -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/MainView.swift -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/MainViewController.swift -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/NSLayoutConstraint+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/NSLayoutConstraint+Helpers.swift -------------------------------------------------------------------------------- /FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/KeyboardLayoutGuideExample/KeyboardLayoutGuideExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9788911/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9788911/README.md -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/xcuserdata/lunar.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample.xcodeproj/xcuserdata/lunar.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/Info.plist -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/MainView.swift -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/MainViewController.swift -------------------------------------------------------------------------------- /FB9807266/KeyCommandExample/KeyCommandExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/KeyCommandExample/KeyCommandExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9807266/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/README.md -------------------------------------------------------------------------------- /FB9807266/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9807266/screenshot.png -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/ExampleInputAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/ExampleInputAccessoryView.swift -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/Info.plist -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/MainView.swift -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/MainViewController.swift -------------------------------------------------------------------------------- /FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/InputAccessoryViewExample/InputAccessoryViewExample/SceneDelegate.swift -------------------------------------------------------------------------------- /FB9837189/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/README.md -------------------------------------------------------------------------------- /FB9837189/example-app.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/example-app.mp4 -------------------------------------------------------------------------------- /FB9837189/notes.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/FB9837189/notes.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/AppleFeedback/HEAD/README.md --------------------------------------------------------------------------------