├── .gitignore ├── .gitmodules ├── Artwork ├── BoxArt.sketch └── Icon.ai ├── CONTRIBUTING.md ├── COPYING ├── Delta.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Delta.xcscheme │ ├── DeltaFeatures.xcscheme │ ├── DeltaPreviews.xcscheme │ ├── Systems.xcscheme │ └── mogenerator.xcscheme ├── Delta.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── Delta ├── AppDelegate.swift ├── Base.lproj │ ├── GamesDatabase.storyboard │ ├── LaunchScreen.storyboard │ ├── Main.storyboard │ ├── PauseMenu.storyboard │ ├── PausePresentationControllerContentView.xib │ └── Settings.storyboard ├── Components │ ├── Action.swift │ ├── Box.swift │ ├── Collection View │ │ ├── GridCollectionViewCell.swift │ │ ├── GridCollectionViewLayout.swift │ │ └── RoundedImageView.swift │ ├── FollowUsFooterView.swift │ ├── FollowUsFooterView.xib │ ├── Keychain.swift │ ├── Loading │ │ ├── LoadControllerSkinImageOperation.swift │ │ └── LoadImageURLOperation.swift │ ├── Popover Menu │ │ ├── ListMenuViewController.swift │ │ ├── PopoverMenuButton.swift │ │ ├── PopoverMenuController.swift │ │ └── PopoverMenuViewController.swift │ └── Table View │ │ ├── AttributedHeaderFooterView.swift │ │ ├── BadgedTableViewCell.swift │ │ ├── GameTableViewCell.swift │ │ └── GameTableViewCell.xib ├── Database │ ├── Cheats │ │ ├── CheatBase.swift │ │ ├── CheatBaseView.swift │ │ ├── CheatDevice.swift │ │ ├── CheatMetadata.swift │ │ └── LegacySearchBar.swift │ ├── DatabaseManager.swift │ ├── Model │ │ ├── Delta.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ ├── Delta 10.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 11.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 2.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 3.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 4.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 5.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 6.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 7.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 8.xcdatamodel │ │ │ │ └── contents │ │ │ ├── Delta 9.xcdatamodel │ │ │ │ └── contents │ │ │ └── Delta.xcdatamodel │ │ │ │ └── contents │ │ ├── Human │ │ │ ├── Cheat.swift │ │ │ ├── ControllerSkin.swift │ │ │ ├── Game.swift │ │ │ ├── GameCollection.swift │ │ │ ├── GameControllerInputMapping.swift │ │ │ ├── GameSave.swift │ │ │ ├── ManagedPatron.swift │ │ │ ├── PatreonAccount.swift │ │ │ └── SaveState.swift │ │ ├── Machine │ │ │ ├── _Cheat.swift │ │ │ ├── _ControllerSkin.swift │ │ │ ├── _Game.swift │ │ │ ├── _GameCollection.swift │ │ │ ├── _GameControllerInputMapping.swift │ │ │ ├── _GameSave.swift │ │ │ ├── _ManagedPatron.swift │ │ │ ├── _PatreonAccount.swift │ │ │ └── _SaveState.swift │ │ ├── Migrations │ │ │ ├── Delta10ToDelta11.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta2ToDelta3.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta3ToDelta4.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta4ToDelta5.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta5ToDelta6.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta6ToDelta7.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta7ToDelta8.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta8ToDelta9.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── Delta9ToDelta10.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ ├── DeltaToDelta2.xcmappingmodel │ │ │ │ └── xcmapping.xml │ │ │ └── Policies │ │ │ │ ├── GameControllerInputMappingMigrationPolicy.swift │ │ │ │ └── SaveStateMigrationPolicy.swift │ │ ├── Misc │ │ │ ├── ControllerSkinConfigurations.h │ │ │ ├── GameSetting.h │ │ │ └── GameSetting.m │ │ ├── PreviousHarmony.xcdatamodeld │ │ │ └── Harmony.xcdatamodel │ │ │ │ └── contents │ │ ├── Transformers │ │ │ └── GameControllerInputMappingTransformer.swift │ │ └── mogenerator │ │ │ └── templates │ │ │ ├── human.swift.motemplate │ │ │ └── machine.swift.motemplate │ ├── OpenVGDB │ │ ├── GameMetadata.swift │ │ ├── GamesDatabase.swift │ │ └── GamesDatabaseBrowserViewController.swift │ └── Repair │ │ ├── GamePickerViewController.swift │ │ ├── RepairDatabaseViewController.swift │ │ └── ReviewSaveStatesViewController.swift ├── Deep Linking │ ├── CopyDeepLinkActivity.swift │ ├── DeepLink.swift │ └── DeepLinkController.swift ├── Delta.entitlements ├── Emulation │ ├── ActionInput.swift │ ├── GameViewController.swift │ └── PreviewGameViewController.swift ├── Experimental Features │ ├── ExperimentalFeatures.swift │ └── Features │ │ ├── Lu.swift │ │ ├── RetroAchievements.swift │ │ ├── ReviewSaveStatesOptions.swift │ │ ├── SkinDebugging.swift │ │ ├── ToastNotificationOptions.swift │ │ └── VariableFastForward.swift ├── Extensions │ ├── Bundle+SwizzleBundleID.swift │ ├── CharacterSet+Filename.swift │ ├── ControllerSkin+Configuring.swift │ ├── EmulatorCore+Delta.swift │ ├── GameView+AirPlay.swift │ ├── GameViewController+ExperimentalToasts.swift │ ├── HarmonyMetadataKey+Keys.swift │ ├── Input+Display.swift │ ├── NSFetchedResultsController+Conveniences.h │ ├── NSFetchedResultsController+Conveniences.m │ ├── NSManagedObject+Conveniences.swift │ ├── NSManagedObjectContext+Conveniences.swift │ ├── NSUserActivity+Delta.swift │ ├── OSLog+Delta.swift │ ├── PHPhotoLibrary+Screenshots.swift │ ├── PauseViewController+Lu.swift │ ├── ProcessInfo+JIT.swift │ ├── ServerManager+Delta.swift │ ├── Stream+Conveniences.swift │ ├── String+Profanity.swift │ ├── UIAlertController+Error.swift │ ├── UIAlertController+Importing.swift │ ├── UIColor+Delta.swift │ ├── UIColor+Hex.swift │ ├── UIDevice+Processor.swift │ ├── UIImage+SymbolFallback.swift │ ├── UILabel+FontSize.swift │ ├── UISceneSession+Delta.swift │ ├── UIView+ParentViewController.swift │ ├── UIViewControllerContextTransitioning+Conveniences.swift │ └── UserDefaults+Delta.swift ├── Game Selection │ ├── GameCollectionViewController.swift │ ├── GamesViewController.swift │ └── Segues │ │ ├── GamesPresentationController.swift │ │ ├── GamesStoryboardSegue.swift │ │ ├── InitialGamesStoryboardSegue.swift │ │ └── SaveStatesStoryboardSegue.swift ├── Importing │ ├── Import Options │ │ ├── ClipboardImportOption.swift │ │ ├── GamesDatabaseImportOption.swift │ │ ├── PhotoLibraryImportOption.swift │ │ └── iTunesImportOption.swift │ ├── ImportController.swift │ └── ImportOption.swift ├── Launch │ ├── LaunchViewController.swift │ ├── WhatsNewCell.swift │ └── WhatsNewViewController.swift ├── Patreon │ ├── Benefit.swift │ ├── Campaign.swift │ ├── PatreonAPI+Responses.swift │ ├── PatreonAPI.swift │ ├── Patron.swift │ ├── Tier.swift │ └── UserAccount.swift ├── Pause Menu │ ├── Cheats │ │ ├── CheatTableViewCell.swift │ │ ├── CheatTextView.swift │ │ ├── CheatValidator.swift │ │ ├── CheatsViewController.swift │ │ └── EditCheatViewController.swift │ ├── GridMenuViewController.swift │ ├── MenuItem.swift │ ├── PauseViewController.swift │ ├── Presentation Controller │ │ └── PausePresentationController.swift │ ├── Save States │ │ ├── SaveStatesCollectionHeaderView.swift │ │ └── SaveStatesViewController.swift │ └── Segues │ │ ├── PauseStoryboardSegue.swift │ │ └── PauseTransitionCoordinator.swift ├── Purchases │ ├── FriendZoneManager.swift │ ├── PurchaseManager.swift │ └── RevenueCatManager.swift ├── RetroAchievements │ ├── Achievement.swift │ ├── AchievementsError.swift │ ├── AchievementsManager.swift │ └── AchievementsTracker.swift ├── Scenes │ ├── ExternalDisplaySceneDelegate.swift │ ├── GameSceneDelegate.swift │ └── SceneDelegate.swift ├── Settings │ ├── App Icon │ │ ├── AltAppIconsViewController.swift │ │ └── AppIconShortcutsViewController.swift │ ├── Contributors │ │ ├── Contributor.swift │ │ └── ContributorsView.swift │ ├── Controller Skins │ │ ├── ControllerSkinTableViewCell.swift │ │ ├── ControllerSkinsViewController.swift │ │ └── PreferredControllerSkinsViewController.swift │ ├── Controllers │ │ ├── ControllerInputsViewController.swift │ │ ├── ControllersSettingsViewController.swift │ │ ├── InputCalloutView.swift │ │ └── LocalDeviceController.swift │ ├── Cores │ │ ├── CoreSettingsView.swift │ │ ├── GBACoreSettingsView.swift │ │ ├── GBCColorPalette.swift │ │ ├── GBCCoreSettingsView.swift │ │ ├── GenesisCoreSettingsView.swift │ │ ├── MelonDSCoreSettingsViewController.swift │ │ ├── N64CoreSettingsView.swift │ │ ├── NESCoreSettingsView.swift │ │ ├── SNESCoreSettingsView.swift │ │ └── SystemBIOS.swift │ ├── Experimental Features │ │ ├── BecomePatronButton.swift │ │ ├── ExperimentalFeaturesView.swift │ │ └── FeatureDetailView.swift │ ├── Features │ │ ├── DSAirPlay.swift │ │ └── Features.swift │ ├── Games │ │ ├── GameSettingsView.swift │ │ └── GameSettingsWrapperViews.swift │ ├── LicensesViewController.swift │ ├── Patreon │ │ ├── AboutPatreonHeaderView.xib │ │ ├── IAPScareScreen.swift │ │ ├── JoinPatreonButton.swift │ │ ├── PatreonComponents.swift │ │ ├── PatreonTiersViewController.swift │ │ └── PatreonViewController.swift │ ├── Settings.swift │ ├── SettingsViewController.swift │ ├── Syncing │ │ ├── GameSyncStatusViewController.swift │ │ ├── RecordSyncStatusViewController.swift │ │ ├── RecordVersionsViewController.swift │ │ ├── SyncStatusViewController.swift │ │ └── SyncingServicesViewController.swift │ └── WFC │ │ ├── WFCManager.swift │ │ ├── WFCServer.swift │ │ └── WFCServersView.swift ├── Supporting Files │ ├── Delta-Bridging-Header.h │ ├── Delta.entitlements │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Lu-Info.plist ├── Syncing │ ├── SyncManager.swift │ ├── SyncResultViewController.swift │ ├── SyncResultsViewController.storyboard │ └── SyncValidationError.swift ├── Systems │ ├── DeltaCoreProtocol+Delta.swift │ └── System.swift └── Theming │ └── Theme.swift ├── DeltaFeatures ├── Extensions │ ├── Collection+Optionals.swift │ ├── EnvironmentValues+FeatureOption.swift │ ├── NotificationName+Settings.swift │ └── UserDefaults+OptionValues.swift ├── Feature.swift ├── Option.swift ├── Protocols │ ├── AnyFeature.swift │ ├── AnyOption.swift │ ├── FeatureContainer.swift │ └── OptionalProtocol.swift ├── Types │ ├── DisplayInlineKey.swift │ ├── LocalizedOptionValue.swift │ ├── OptionValue.swift │ ├── SettingsName.swift │ └── SettingsUserInfoKey.swift └── Views │ ├── OptionPickerView.swift │ └── OptionToggleView.swift ├── DeltaPreviews ├── ContentView.swift ├── DeltaPreviews.h ├── Experimental Features │ ├── CustomTintColor.swift │ └── ExperimentalFeatures.swift ├── MockDatabaseManager.swift └── MockPurchaseManager.swift ├── Docs ├── ExperimentalFeatures.md └── pull_request_template.md ├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── MultipartFormData.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── ParameterEncoding.swift │ │ ├── Request.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result.swift │ │ ├── ServerTrustPolicy.swift │ │ ├── SessionDelegate.swift │ │ ├── SessionManager.swift │ │ ├── TaskDelegate.swift │ │ ├── Timeline.swift │ │ └── Validation.swift ├── AppAuth │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AppAuth.h │ │ ├── AppAuth │ │ └── iOS │ │ │ ├── OIDAuthState+IOS.h │ │ │ ├── OIDAuthState+IOS.m │ │ │ ├── OIDAuthorizationService+IOS.h │ │ │ ├── OIDAuthorizationService+IOS.m │ │ │ ├── OIDExternalUserAgentCatalyst.h │ │ │ ├── OIDExternalUserAgentCatalyst.m │ │ │ ├── OIDExternalUserAgentIOS.h │ │ │ ├── OIDExternalUserAgentIOS.m │ │ │ ├── OIDExternalUserAgentIOSCustomBrowser.h │ │ │ └── OIDExternalUserAgentIOSCustomBrowser.m │ │ ├── AppAuthCore.h │ │ └── AppAuthCore │ │ ├── OIDAuthState.h │ │ ├── OIDAuthState.m │ │ ├── OIDAuthStateChangeDelegate.h │ │ ├── OIDAuthStateErrorDelegate.h │ │ ├── OIDAuthorizationRequest.h │ │ ├── OIDAuthorizationRequest.m │ │ ├── OIDAuthorizationResponse.h │ │ ├── OIDAuthorizationResponse.m │ │ ├── OIDAuthorizationService.h │ │ ├── OIDAuthorizationService.m │ │ ├── OIDClientMetadataParameters.h │ │ ├── OIDClientMetadataParameters.m │ │ ├── OIDDefines.h │ │ ├── OIDEndSessionRequest.h │ │ ├── OIDEndSessionRequest.m │ │ ├── OIDEndSessionResponse.h │ │ ├── OIDEndSessionResponse.m │ │ ├── OIDError.h │ │ ├── OIDError.m │ │ ├── OIDErrorUtilities.h │ │ ├── OIDErrorUtilities.m │ │ ├── OIDExternalUserAgent.h │ │ ├── OIDExternalUserAgentRequest.h │ │ ├── OIDExternalUserAgentSession.h │ │ ├── OIDFieldMapping.h │ │ ├── OIDFieldMapping.m │ │ ├── OIDGrantTypes.h │ │ ├── OIDGrantTypes.m │ │ ├── OIDIDToken.h │ │ ├── OIDIDToken.m │ │ ├── OIDRegistrationRequest.h │ │ ├── OIDRegistrationRequest.m │ │ ├── OIDRegistrationResponse.h │ │ ├── OIDRegistrationResponse.m │ │ ├── OIDResponseTypes.h │ │ ├── OIDResponseTypes.m │ │ ├── OIDScopeUtilities.h │ │ ├── OIDScopeUtilities.m │ │ ├── OIDScopes.h │ │ ├── OIDScopes.m │ │ ├── OIDServiceConfiguration.h │ │ ├── OIDServiceConfiguration.m │ │ ├── OIDServiceDiscovery.h │ │ ├── OIDServiceDiscovery.m │ │ ├── OIDTokenRequest.h │ │ ├── OIDTokenRequest.m │ │ ├── OIDTokenResponse.h │ │ ├── OIDTokenResponse.m │ │ ├── OIDTokenUtilities.h │ │ ├── OIDTokenUtilities.m │ │ ├── OIDURLQueryComponent.h │ │ ├── OIDURLQueryComponent.m │ │ ├── OIDURLSessionProvider.h │ │ ├── OIDURLSessionProvider.m │ │ └── Resources │ │ └── PrivacyInfo.xcprivacy ├── GTMAppAuth │ ├── GTMAppAuth │ │ └── Sources │ │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.m │ │ │ ├── GTMAppAuthFetcherAuthorization.m │ │ │ ├── GTMKeychain.m │ │ │ ├── GTMOAuth2KeychainCompatibility.m │ │ │ └── Public │ │ │ └── GTMAppAuth │ │ │ ├── GTMAppAuth.h │ │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.h │ │ │ ├── GTMAppAuthFetcherAuthorization.h │ │ │ ├── GTMKeychain.h │ │ │ └── GTMOAuth2KeychainCompatibility.h │ ├── LICENSE │ └── README.md ├── GTMSessionFetcher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Core │ │ ├── GTMSessionFetcher.m │ │ ├── GTMSessionFetcherLogging.m │ │ ├── GTMSessionFetcherService.m │ │ ├── GTMSessionUploadFetcher.m │ │ └── Public │ │ │ └── GTMSessionFetcher │ │ │ ├── GTMSessionFetcher.h │ │ │ ├── GTMSessionFetcherLogging.h │ │ │ ├── GTMSessionFetcherService.h │ │ │ └── GTMSessionUploadFetcher.h │ │ └── Full │ │ ├── GTMGatherInputStream.m │ │ ├── GTMMIMEDocument.m │ │ ├── GTMReadMonitorInputStream.m │ │ └── Public │ │ └── GTMSessionFetcher │ │ ├── GTMGatherInputStream.h │ │ ├── GTMMIMEDocument.h │ │ └── GTMReadMonitorInputStream.h ├── GoogleAPIClientForREST │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── GTLRDefines.h │ │ ├── GeneratedServices │ │ └── Drive │ │ │ ├── GTLRDrive.h │ │ │ ├── GTLRDriveObjects.h │ │ │ ├── GTLRDriveObjects.m │ │ │ ├── GTLRDriveQuery.h │ │ │ ├── GTLRDriveQuery.m │ │ │ ├── GTLRDriveService.h │ │ │ └── GTLRDriveService.m │ │ ├── Objects │ │ ├── GTLRBatchQuery.h │ │ ├── GTLRBatchQuery.m │ │ ├── GTLRBatchResult.h │ │ ├── GTLRBatchResult.m │ │ ├── GTLRDateTime.h │ │ ├── GTLRDateTime.m │ │ ├── GTLRDuration.h │ │ ├── GTLRDuration.m │ │ ├── GTLRErrorObject.h │ │ ├── GTLRErrorObject.m │ │ ├── GTLRObject.h │ │ ├── GTLRObject.m │ │ ├── GTLRQuery.h │ │ ├── GTLRQuery.m │ │ ├── GTLRRuntimeCommon.h │ │ ├── GTLRRuntimeCommon.m │ │ ├── GTLRService.h │ │ ├── GTLRService.m │ │ ├── GTLRUploadParameters.h │ │ └── GTLRUploadParameters.m │ │ └── Utilities │ │ ├── GTLRBase64.h │ │ ├── GTLRBase64.m │ │ ├── GTLRFramework.h │ │ ├── GTLRFramework.m │ │ ├── GTLRURITemplate.h │ │ ├── GTLRURITemplate.m │ │ ├── GTLRUtilities.h │ │ └── GTLRUtilities.m ├── GoogleSignIn │ ├── GoogleSignIn │ │ └── Sources │ │ │ ├── GIDAuthStateMigration.h │ │ │ ├── GIDAuthStateMigration.m │ │ │ ├── GIDAuthentication.m │ │ │ ├── GIDAuthentication_Private.h │ │ │ ├── GIDCallbackQueue.h │ │ │ ├── GIDCallbackQueue.m │ │ │ ├── GIDConfiguration.m │ │ │ ├── GIDEMMErrorHandler.h │ │ │ ├── GIDEMMErrorHandler.m │ │ │ ├── GIDGoogleUser.m │ │ │ ├── GIDGoogleUser_Private.h │ │ │ ├── GIDMDMPasscodeCache.h │ │ │ ├── GIDMDMPasscodeCache.m │ │ │ ├── GIDMDMPasscodeState.h │ │ │ ├── GIDMDMPasscodeState.m │ │ │ ├── GIDMDMPasscodeState_Private.h │ │ │ ├── GIDProfileData.m │ │ │ ├── GIDProfileData_Private.h │ │ │ ├── GIDScopes.h │ │ │ ├── GIDScopes.m │ │ │ ├── GIDSignIn.m │ │ │ ├── GIDSignInButton.m │ │ │ ├── GIDSignInCallbackSchemes.h │ │ │ ├── GIDSignInCallbackSchemes.m │ │ │ ├── GIDSignInInternalOptions.h │ │ │ ├── GIDSignInInternalOptions.m │ │ │ ├── GIDSignInPreferences.h │ │ │ ├── GIDSignInPreferences.m │ │ │ ├── GIDSignInStrings.h │ │ │ ├── GIDSignInStrings.m │ │ │ ├── GIDSignIn_Private.h │ │ │ ├── NSBundle+GID3PAdditions.h │ │ │ ├── NSBundle+GID3PAdditions.m │ │ │ ├── Public │ │ │ └── GoogleSignIn │ │ │ │ ├── GIDAuthentication.h │ │ │ │ ├── GIDConfiguration.h │ │ │ │ ├── GIDGoogleUser.h │ │ │ │ ├── GIDProfileData.h │ │ │ │ ├── GIDSignIn.h │ │ │ │ ├── GIDSignInButton.h │ │ │ │ └── GoogleSignIn.h │ │ │ ├── Resources │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── google.png │ │ │ ├── google@2x.png │ │ │ └── google@3x.png │ │ │ └── Strings │ │ │ ├── ar.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── ca.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── cs.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── da.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── de.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── el.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── en.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── en_GB.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── es.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── es_MX.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── fi.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── fr.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── fr_CA.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── he.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── hi.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── hr.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── hu.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── id.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── it.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── ja.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── ko.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── ms.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── nb.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── nl.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── pl.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── pt.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── pt_BR.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── pt_PT.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── ro.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── ru.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── sk.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── sv.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── th.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── tr.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── uk.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── vi.lproj │ │ │ └── GoogleSignIn.strings │ │ │ ├── zh_CN.lproj │ │ │ └── GoogleSignIn.strings │ │ │ └── zh_TW.lproj │ │ │ └── GoogleSignIn.strings │ ├── LICENSE │ └── README.md ├── Headers │ ├── Private │ │ ├── AppAuth │ │ │ ├── AppAuth.h │ │ │ ├── AppAuthCore.h │ │ │ ├── OIDAuthState+IOS.h │ │ │ ├── OIDAuthState.h │ │ │ ├── OIDAuthStateChangeDelegate.h │ │ │ ├── OIDAuthStateErrorDelegate.h │ │ │ ├── OIDAuthorizationRequest.h │ │ │ ├── OIDAuthorizationResponse.h │ │ │ ├── OIDAuthorizationService+IOS.h │ │ │ ├── OIDAuthorizationService.h │ │ │ ├── OIDClientMetadataParameters.h │ │ │ ├── OIDDefines.h │ │ │ ├── OIDEndSessionRequest.h │ │ │ ├── OIDEndSessionResponse.h │ │ │ ├── OIDError.h │ │ │ ├── OIDErrorUtilities.h │ │ │ ├── OIDExternalUserAgent.h │ │ │ ├── OIDExternalUserAgentCatalyst.h │ │ │ ├── OIDExternalUserAgentIOS.h │ │ │ ├── OIDExternalUserAgentIOSCustomBrowser.h │ │ │ ├── OIDExternalUserAgentRequest.h │ │ │ ├── OIDExternalUserAgentSession.h │ │ │ ├── OIDFieldMapping.h │ │ │ ├── OIDGrantTypes.h │ │ │ ├── OIDIDToken.h │ │ │ ├── OIDRegistrationRequest.h │ │ │ ├── OIDRegistrationResponse.h │ │ │ ├── OIDResponseTypes.h │ │ │ ├── OIDScopeUtilities.h │ │ │ ├── OIDScopes.h │ │ │ ├── OIDServiceConfiguration.h │ │ │ ├── OIDServiceDiscovery.h │ │ │ ├── OIDTokenRequest.h │ │ │ ├── OIDTokenResponse.h │ │ │ ├── OIDTokenUtilities.h │ │ │ ├── OIDURLQueryComponent.h │ │ │ └── OIDURLSessionProvider.h │ │ ├── GTMAppAuth │ │ │ ├── GTMAppAuth.h │ │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.h │ │ │ ├── GTMAppAuthFetcherAuthorization.h │ │ │ ├── GTMKeychain.h │ │ │ └── GTMOAuth2KeychainCompatibility.h │ │ ├── GTMSessionFetcher │ │ │ ├── GTMGatherInputStream.h │ │ │ ├── GTMMIMEDocument.h │ │ │ ├── GTMReadMonitorInputStream.h │ │ │ ├── GTMSessionFetcher.h │ │ │ ├── GTMSessionFetcherLogging.h │ │ │ ├── GTMSessionFetcherService.h │ │ │ └── GTMSessionUploadFetcher.h │ │ ├── GoogleAPIClientForREST │ │ │ ├── GTLRBase64.h │ │ │ ├── GTLRBatchQuery.h │ │ │ ├── GTLRBatchResult.h │ │ │ ├── GTLRDateTime.h │ │ │ ├── GTLRDefines.h │ │ │ ├── GTLRDrive.h │ │ │ ├── GTLRDriveObjects.h │ │ │ ├── GTLRDriveQuery.h │ │ │ ├── GTLRDriveService.h │ │ │ ├── GTLRDuration.h │ │ │ ├── GTLRErrorObject.h │ │ │ ├── GTLRFramework.h │ │ │ ├── GTLRObject.h │ │ │ ├── GTLRQuery.h │ │ │ ├── GTLRRuntimeCommon.h │ │ │ ├── GTLRService.h │ │ │ ├── GTLRURITemplate.h │ │ │ ├── GTLRUploadParameters.h │ │ │ └── GTLRUtilities.h │ │ ├── GoogleSignIn │ │ │ ├── GIDAuthStateMigration.h │ │ │ ├── GIDAuthentication.h │ │ │ ├── GIDAuthentication_Private.h │ │ │ ├── GIDCallbackQueue.h │ │ │ ├── GIDConfiguration.h │ │ │ ├── GIDEMMErrorHandler.h │ │ │ ├── GIDGoogleUser.h │ │ │ ├── GIDGoogleUser_Private.h │ │ │ ├── GIDMDMPasscodeCache.h │ │ │ ├── GIDMDMPasscodeState.h │ │ │ ├── GIDMDMPasscodeState_Private.h │ │ │ ├── GIDProfileData.h │ │ │ ├── GIDProfileData_Private.h │ │ │ ├── GIDScopes.h │ │ │ ├── GIDSignIn.h │ │ │ ├── GIDSignInButton.h │ │ │ ├── GIDSignInCallbackSchemes.h │ │ │ ├── GIDSignInInternalOptions.h │ │ │ ├── GIDSignInPreferences.h │ │ │ ├── GIDSignInStrings.h │ │ │ ├── GIDSignIn_Private.h │ │ │ ├── GoogleSignIn.h │ │ │ └── NSBundle+GID3PAdditions.h │ │ ├── Harmony │ │ │ └── Harmony │ │ │ │ └── Harmony.h │ │ ├── Roxas │ │ │ ├── NSBundle+Extensions.h │ │ │ ├── NSConstraintConflict+Conveniences.h │ │ │ ├── NSFileManager+URLs.h │ │ │ ├── NSLayoutConstraint+Edges.h │ │ │ ├── NSPredicate+Search.h │ │ │ ├── NSString+Localization.h │ │ │ ├── NSUserDefaults+DynamicProperties.h │ │ │ ├── RSTActivityIndicating.h │ │ │ ├── RSTArrayDataSource.h │ │ │ ├── RSTBlockOperation.h │ │ │ ├── RSTCellContentCell.h │ │ │ ├── RSTCellContentChange.h │ │ │ ├── RSTCellContentChangeOperation.h │ │ │ ├── RSTCellContentDataSource.h │ │ │ ├── RSTCellContentDataSource_Subclasses.h │ │ │ ├── RSTCellContentPrefetchingDataSource.h │ │ │ ├── RSTCellContentView.h │ │ │ ├── RSTCollectionViewCell.h │ │ │ ├── RSTCollectionViewGridLayout.h │ │ │ ├── RSTCompositeDataSource.h │ │ │ ├── RSTConstants.h │ │ │ ├── RSTDefines.h │ │ │ ├── RSTDynamicDataSource.h │ │ │ ├── RSTError.h │ │ │ ├── RSTFetchedResultsDataSource.h │ │ │ ├── RSTHasher.h │ │ │ ├── RSTHelperFile.h │ │ │ ├── RSTLaunchViewController.h │ │ │ ├── RSTLoadOperation.h │ │ │ ├── RSTNavigationController.h │ │ │ ├── RSTNibView.h │ │ │ ├── RSTOperation.h │ │ │ ├── RSTOperationQueue.h │ │ │ ├── RSTOperation_Subclasses.h │ │ │ ├── RSTPersistentContainer.h │ │ │ ├── RSTPlaceholderView.h │ │ │ ├── RSTRelationshipPreservingMergePolicy.h │ │ │ ├── RSTSearchController.h │ │ │ ├── RSTSeparatorView.h │ │ │ ├── RSTTintedImageView.h │ │ │ ├── RSTToastView.h │ │ │ ├── Roxas.h │ │ │ ├── UIAlertAction+Actions.h │ │ │ ├── UICollectionView+CellContent.h │ │ │ ├── UICollectionViewCell+CellContent.h │ │ │ ├── UICollectionViewCell+Nibs.h │ │ │ ├── UIImage+Manipulation.h │ │ │ ├── UIKit+ActivityIndicating.h │ │ │ ├── UISpringTimingParameters+Conveniences.h │ │ │ ├── UITableView+CellContent.h │ │ │ ├── UITableViewCell+CellContent.h │ │ │ ├── UIView+AnimatedHide.h │ │ │ └── UIViewController+TransitionState.h │ │ ├── SDWebImage │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDecoder.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ │ ├── SMCalloutView │ │ │ ├── SMCalloutView.h │ │ │ └── SMClassicCalloutView.h │ │ ├── SQLite.swift │ │ │ ├── SQLite.h │ │ │ ├── SQLiteObjc.h │ │ │ └── fts3_tokenizer.h │ │ └── SwiftyDropbox │ │ │ ├── DBChunkInputStream.h │ │ │ └── SwiftyDropbox.h │ └── Public │ │ ├── Alamofire │ │ ├── Alamofire-umbrella.h │ │ └── Alamofire.modulemap │ │ ├── AppAuth │ │ ├── AppAuth-umbrella.h │ │ ├── AppAuth.h │ │ ├── AppAuth.modulemap │ │ ├── AppAuthCore.h │ │ ├── OIDAuthState+IOS.h │ │ ├── OIDAuthState.h │ │ ├── OIDAuthStateChangeDelegate.h │ │ ├── OIDAuthStateErrorDelegate.h │ │ ├── OIDAuthorizationRequest.h │ │ ├── OIDAuthorizationResponse.h │ │ ├── OIDAuthorizationService+IOS.h │ │ ├── OIDAuthorizationService.h │ │ ├── OIDClientMetadataParameters.h │ │ ├── OIDDefines.h │ │ ├── OIDEndSessionRequest.h │ │ ├── OIDEndSessionResponse.h │ │ ├── OIDError.h │ │ ├── OIDErrorUtilities.h │ │ ├── OIDExternalUserAgent.h │ │ ├── OIDExternalUserAgentCatalyst.h │ │ ├── OIDExternalUserAgentIOS.h │ │ ├── OIDExternalUserAgentIOSCustomBrowser.h │ │ ├── OIDExternalUserAgentRequest.h │ │ ├── OIDExternalUserAgentSession.h │ │ ├── OIDFieldMapping.h │ │ ├── OIDGrantTypes.h │ │ ├── OIDIDToken.h │ │ ├── OIDRegistrationRequest.h │ │ ├── OIDRegistrationResponse.h │ │ ├── OIDResponseTypes.h │ │ ├── OIDScopeUtilities.h │ │ ├── OIDScopes.h │ │ ├── OIDServiceConfiguration.h │ │ ├── OIDServiceDiscovery.h │ │ ├── OIDTokenRequest.h │ │ ├── OIDTokenResponse.h │ │ ├── OIDTokenUtilities.h │ │ ├── OIDURLQueryComponent.h │ │ └── OIDURLSessionProvider.h │ │ ├── GTMAppAuth │ │ ├── GTMAppAuth-umbrella.h │ │ ├── GTMAppAuth.h │ │ ├── GTMAppAuth.modulemap │ │ ├── GTMAppAuthFetcherAuthorization+Keychain.h │ │ ├── GTMAppAuthFetcherAuthorization.h │ │ ├── GTMKeychain.h │ │ └── GTMOAuth2KeychainCompatibility.h │ │ ├── GTMSessionFetcher │ │ ├── GTMGatherInputStream.h │ │ ├── GTMMIMEDocument.h │ │ ├── GTMReadMonitorInputStream.h │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.h │ │ ├── GTMSessionFetcher.modulemap │ │ ├── GTMSessionFetcherLogging.h │ │ ├── GTMSessionFetcherService.h │ │ └── GTMSessionUploadFetcher.h │ │ ├── GoogleAPIClientForREST │ │ ├── GTLRBase64.h │ │ ├── GTLRBatchQuery.h │ │ ├── GTLRBatchResult.h │ │ ├── GTLRDateTime.h │ │ ├── GTLRDefines.h │ │ ├── GTLRDrive.h │ │ ├── GTLRDriveObjects.h │ │ ├── GTLRDriveQuery.h │ │ ├── GTLRDriveService.h │ │ ├── GTLRDuration.h │ │ ├── GTLRErrorObject.h │ │ ├── GTLRFramework.h │ │ ├── GTLRObject.h │ │ ├── GTLRQuery.h │ │ ├── GTLRRuntimeCommon.h │ │ ├── GTLRService.h │ │ ├── GTLRURITemplate.h │ │ ├── GTLRUploadParameters.h │ │ ├── GTLRUtilities.h │ │ ├── GoogleAPIClientForREST-umbrella.h │ │ └── GoogleAPIClientForREST.modulemap │ │ ├── GoogleSignIn │ │ ├── GIDAuthentication.h │ │ ├── GIDConfiguration.h │ │ ├── GIDGoogleUser.h │ │ ├── GIDProfileData.h │ │ ├── GIDSignIn.h │ │ ├── GIDSignInButton.h │ │ ├── GoogleSignIn-umbrella.h │ │ ├── GoogleSignIn.h │ │ └── GoogleSignIn.modulemap │ │ ├── Harmony │ │ ├── Harmony-umbrella.h │ │ ├── Harmony.modulemap │ │ └── Harmony │ │ │ └── Harmony.h │ │ ├── Roxas │ │ ├── NSBundle+Extensions.h │ │ ├── NSConstraintConflict+Conveniences.h │ │ ├── NSFileManager+URLs.h │ │ ├── NSLayoutConstraint+Edges.h │ │ ├── NSPredicate+Search.h │ │ ├── NSString+Localization.h │ │ ├── NSUserDefaults+DynamicProperties.h │ │ ├── RSTActivityIndicating.h │ │ ├── RSTArrayDataSource.h │ │ ├── RSTBlockOperation.h │ │ ├── RSTCellContentCell.h │ │ ├── RSTCellContentChange.h │ │ ├── RSTCellContentChangeOperation.h │ │ ├── RSTCellContentDataSource.h │ │ ├── RSTCellContentPrefetchingDataSource.h │ │ ├── RSTCellContentView.h │ │ ├── RSTCollectionViewCell.h │ │ ├── RSTCollectionViewGridLayout.h │ │ ├── RSTCompositeDataSource.h │ │ ├── RSTConstants.h │ │ ├── RSTDefines.h │ │ ├── RSTDynamicDataSource.h │ │ ├── RSTError.h │ │ ├── RSTFetchedResultsDataSource.h │ │ ├── RSTHasher.h │ │ ├── RSTHelperFile.h │ │ ├── RSTLaunchViewController.h │ │ ├── RSTLoadOperation.h │ │ ├── RSTNavigationController.h │ │ ├── RSTNibView.h │ │ ├── RSTOperation.h │ │ ├── RSTOperationQueue.h │ │ ├── RSTOperation_Subclasses.h │ │ ├── RSTPersistentContainer.h │ │ ├── RSTPlaceholderView.h │ │ ├── RSTRelationshipPreservingMergePolicy.h │ │ ├── RSTSearchController.h │ │ ├── RSTSeparatorView.h │ │ ├── RSTTintedImageView.h │ │ ├── RSTToastView.h │ │ ├── Roxas-umbrella.h │ │ ├── Roxas.h │ │ ├── Roxas.modulemap │ │ ├── UIAlertAction+Actions.h │ │ ├── UICollectionView+CellContent.h │ │ ├── UICollectionViewCell+CellContent.h │ │ ├── UICollectionViewCell+Nibs.h │ │ ├── UIImage+Manipulation.h │ │ ├── UIKit+ActivityIndicating.h │ │ ├── UISpringTimingParameters+Conveniences.h │ │ ├── UITableView+CellContent.h │ │ ├── UITableViewCell+CellContent.h │ │ ├── UIView+AnimatedHide.h │ │ └── UIViewController+TransitionState.h │ │ ├── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── SDImageCache.h │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.modulemap │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ │ ├── SMCalloutView │ │ ├── SMCalloutView-umbrella.h │ │ ├── SMCalloutView.h │ │ ├── SMCalloutView.modulemap │ │ └── SMClassicCalloutView.h │ │ ├── SQLite.swift │ │ ├── SQLite.h │ │ └── SQLiteObjc.h │ │ ├── SQLite │ │ ├── SQLite.swift-umbrella.h │ │ └── SQLite.swift.modulemap │ │ └── SwiftyDropbox │ │ ├── DBChunkInputStream.h │ │ ├── SwiftyDropbox-umbrella.h │ │ ├── SwiftyDropbox.h │ │ └── SwiftyDropbox.modulemap ├── Local Podspecs │ ├── Harmony.podspec.json │ └── Roxas.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── DSDeltaCore.xcscheme │ │ ├── DeltaCore.xcscheme │ │ ├── GBADeltaCore.xcscheme │ │ ├── GBCDeltaCore.xcscheme │ │ ├── Harmony.xcscheme │ │ ├── MelonDSDeltaCore.xcscheme │ │ ├── N64DeltaCore.xcscheme │ │ ├── NESDeltaCore.xcscheme │ │ ├── Pods-Delta 1.xcscheme │ │ ├── Pods-Delta.xcscheme │ │ ├── Pods-DeltaUI.xcscheme │ │ └── SNESDeltaCore.xcscheme ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── SMCalloutView │ ├── LICENSE │ ├── README.md │ ├── SMCalloutView.h │ ├── SMCalloutView.m │ ├── SMClassicCalloutView.h │ └── SMClassicCalloutView.m ├── SQLite.swift │ ├── LICENSE.txt │ ├── README.md │ └── Sources │ │ ├── SQLite │ │ ├── Core │ │ │ ├── Blob.swift │ │ │ ├── Connection.swift │ │ │ ├── Errors.swift │ │ │ ├── Statement.swift │ │ │ └── Value.swift │ │ ├── Extensions │ │ │ ├── FTS4.swift │ │ │ ├── FTS5.swift │ │ │ └── RTree.swift │ │ ├── Foundation.swift │ │ ├── Helpers.swift │ │ ├── SQLite.h │ │ └── Typed │ │ │ ├── AggregateFunctions.swift │ │ │ ├── Coding.swift │ │ │ ├── Collation.swift │ │ │ ├── CoreFunctions.swift │ │ │ ├── CustomFunctions.swift │ │ │ ├── DateAndTimeFunctions.swift │ │ │ ├── Expression.swift │ │ │ ├── Operators.swift │ │ │ ├── Query.swift │ │ │ ├── Schema.swift │ │ │ └── Setter.swift │ │ └── SQLiteObjc │ │ ├── SQLiteObjc.m │ │ ├── fts3_tokenizer.h │ │ └── include │ │ └── SQLiteObjc.h ├── SwiftyDropbox │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyDropbox │ │ ├── Platform │ │ └── SwiftyDropbox_iOS │ │ │ └── OAuthMobile.swift │ │ └── Shared │ │ ├── Generated │ │ ├── Async.swift │ │ ├── Auth.swift │ │ ├── AuthRoutes.swift │ │ ├── Base.swift │ │ ├── BaseTeam.swift │ │ ├── Common.swift │ │ ├── Contacts.swift │ │ ├── ContactsRoutes.swift │ │ ├── FileProperties.swift │ │ ├── FilePropertiesRoutes.swift │ │ ├── FileRequests.swift │ │ ├── FileRequestsRoutes.swift │ │ ├── Files.swift │ │ ├── FilesRoutes.swift │ │ ├── Paper.swift │ │ ├── PaperRoutes.swift │ │ ├── SeenState.swift │ │ ├── Sharing.swift │ │ ├── SharingRoutes.swift │ │ ├── StoneBase.swift │ │ ├── StoneSerializers.swift │ │ ├── StoneValidators.swift │ │ ├── Team.swift │ │ ├── TeamCommon.swift │ │ ├── TeamLog.swift │ │ ├── TeamLogRoutes.swift │ │ ├── TeamPolicies.swift │ │ ├── TeamRoutes.swift │ │ ├── Users.swift │ │ ├── UsersCommon.swift │ │ └── UsersRoutes.swift │ │ └── Handwritten │ │ ├── Custom.swift │ │ ├── CustomRoutes.swift │ │ ├── CustomTasks.swift │ │ ├── DBChunkInputStream.h │ │ ├── DBChunkInputStream.m │ │ ├── DropboxClient.swift │ │ ├── DropboxClientsManager.swift │ │ ├── DropboxTeamClient.swift │ │ ├── DropboxTransportClient.swift │ │ ├── OAuth.swift │ │ ├── SDKConstants.swift │ │ ├── SwiftyDropbox.h │ │ └── TransportConfig.swift ├── Target Support Files │ ├── Alamofire │ │ ├── Alamofire-dummy.m │ │ ├── Alamofire-prefix.pch │ │ ├── Alamofire-umbrella.h │ │ ├── Alamofire.debug.xcconfig │ │ ├── Alamofire.modulemap │ │ ├── Alamofire.release.xcconfig │ │ └── Alamofire.xcconfig │ ├── AppAuth │ │ ├── AppAuth-dummy.m │ │ ├── AppAuth-prefix.pch │ │ ├── AppAuth-umbrella.h │ │ ├── AppAuth.debug.xcconfig │ │ ├── AppAuth.modulemap │ │ ├── AppAuth.release.xcconfig │ │ └── ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist │ ├── GTMAppAuth │ │ ├── GTMAppAuth-dummy.m │ │ ├── GTMAppAuth-umbrella.h │ │ ├── GTMAppAuth.debug.xcconfig │ │ ├── GTMAppAuth.modulemap │ │ └── GTMAppAuth.release.xcconfig │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ ├── GTMSessionFetcher.modulemap │ │ ├── GTMSessionFetcher.release.xcconfig │ │ └── GTMSessionFetcher.xcconfig │ ├── GoogleAPIClientForREST │ │ ├── GoogleAPIClientForREST-dummy.m │ │ ├── GoogleAPIClientForREST-prefix.pch │ │ ├── GoogleAPIClientForREST-umbrella.h │ │ ├── GoogleAPIClientForREST.debug.xcconfig │ │ ├── GoogleAPIClientForREST.modulemap │ │ ├── GoogleAPIClientForREST.release.xcconfig │ │ └── GoogleAPIClientForREST.xcconfig │ ├── GoogleSignIn │ │ ├── GoogleSignIn-dummy.m │ │ ├── GoogleSignIn-umbrella.h │ │ ├── GoogleSignIn.debug.xcconfig │ │ ├── GoogleSignIn.modulemap │ │ ├── GoogleSignIn.release.xcconfig │ │ ├── GoogleSignIn.xcconfig │ │ └── ResourceBundle-GoogleSignIn-GoogleSignIn-Info.plist │ ├── Harmony │ │ ├── Harmony-dummy.m │ │ ├── Harmony-prefix.pch │ │ ├── Harmony-umbrella.h │ │ ├── Harmony.debug.xcconfig │ │ ├── Harmony.modulemap │ │ ├── Harmony.release.xcconfig │ │ └── Harmony.xcconfig │ ├── Pods-Delta │ │ ├── Info.plist │ │ ├── Pods-Delta-Info.plist │ │ ├── Pods-Delta-acknowledgements.markdown │ │ ├── Pods-Delta-acknowledgements.plist │ │ ├── Pods-Delta-dummy.m │ │ ├── Pods-Delta-frameworks.sh │ │ ├── Pods-Delta-resources.sh │ │ ├── Pods-Delta-umbrella.h │ │ ├── Pods-Delta.debug.xcconfig │ │ ├── Pods-Delta.modulemap │ │ └── Pods-Delta.release.xcconfig │ ├── Pods-DeltaPreviews │ │ ├── Pods-DeltaPreviews-acknowledgements.markdown │ │ ├── Pods-DeltaPreviews-acknowledgements.plist │ │ ├── Pods-DeltaPreviews-dummy.m │ │ ├── Pods-DeltaPreviews-resources.sh │ │ ├── Pods-DeltaPreviews-umbrella.h │ │ ├── Pods-DeltaPreviews.debug.xcconfig │ │ ├── Pods-DeltaPreviews.modulemap │ │ └── Pods-DeltaPreviews.release.xcconfig │ ├── Roxas │ │ ├── Roxas-Info.plist │ │ ├── Roxas-dummy.m │ │ ├── Roxas-prefix.pch │ │ ├── Roxas-umbrella.h │ │ ├── Roxas.debug.xcconfig │ │ ├── Roxas.modulemap │ │ ├── Roxas.release.xcconfig │ │ └── Roxas.xcconfig │ ├── SDWebImage │ │ ├── Info.plist │ │ ├── SDWebImage-Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.debug.xcconfig │ │ ├── SDWebImage.modulemap │ │ ├── SDWebImage.release.xcconfig │ │ └── SDWebImage.xcconfig │ ├── SMCalloutView │ │ ├── Info.plist │ │ ├── SMCalloutView-Info.plist │ │ ├── SMCalloutView-dummy.m │ │ ├── SMCalloutView-prefix.pch │ │ ├── SMCalloutView-umbrella.h │ │ ├── SMCalloutView.debug.xcconfig │ │ ├── SMCalloutView.modulemap │ │ ├── SMCalloutView.release.xcconfig │ │ └── SMCalloutView.xcconfig │ ├── SQLite.swift │ │ ├── Info.plist │ │ ├── SQLite.swift-Info.plist │ │ ├── SQLite.swift-dummy.m │ │ ├── SQLite.swift-prefix.pch │ │ ├── SQLite.swift-umbrella.h │ │ ├── SQLite.swift.debug.xcconfig │ │ ├── SQLite.swift.modulemap │ │ ├── SQLite.swift.release.xcconfig │ │ └── SQLite.swift.xcconfig │ └── SwiftyDropbox │ │ ├── SwiftyDropbox-dummy.m │ │ ├── SwiftyDropbox-prefix.pch │ │ ├── SwiftyDropbox-umbrella.h │ │ ├── SwiftyDropbox.debug.xcconfig │ │ ├── SwiftyDropbox.modulemap │ │ ├── SwiftyDropbox.release.xcconfig │ │ └── SwiftyDropbox.xcconfig └── exported_symbols.txt ├── README.md ├── Resources ├── AltIcons.plist ├── AppIcon.icon │ ├── Assets │ │ ├── delta_icon.svg │ │ └── delta_shadow.svg │ └── icon.json ├── Assets.xcassets │ ├── BoxArt.imageset │ │ ├── BoxArt.png │ │ ├── BoxArt@2x.png │ │ ├── BoxArt@3x.png │ │ └── Contents.json │ ├── BoxArtGlass.imageset │ │ ├── BoxArt_customGlass.png │ │ └── Contents.json │ ├── Colors │ │ ├── Contents.json │ │ ├── DarkGray.colorset │ │ │ └── Contents.json │ │ └── Purple.colorset │ │ │ └── Contents.json │ ├── Contents.json │ ├── Custom Symbols │ │ ├── Contents.json │ │ └── gamecontroller.slash.symbolset │ │ │ ├── Contents.json │ │ │ └── gamecontroller.slash.svg │ ├── DS Home Screen.imageset │ │ ├── Contents.json │ │ └── DS.pdf │ ├── Delta.imageset │ │ ├── Contents.json │ │ └── DeltaSplash.pdf │ ├── DeltaPlaceholder.imageset │ │ ├── Contents.json │ │ ├── DeltaPlaceholder.png │ │ ├── DeltaPlaceholder@2x.png │ │ └── DeltaPlaceholder@3x.png │ ├── Link.imageset │ │ ├── Contents.json │ │ ├── Link@1x.png │ │ ├── Link@2x.png │ │ └── Link@3x.png │ ├── LinkOut.symbolset │ │ ├── Contents.json │ │ └── LinkOut.svg │ ├── Pause Icons │ │ ├── CheatCodes.imageset │ │ │ ├── Contents.json │ │ │ ├── cheats@1x.png │ │ │ ├── cheats@2x.png │ │ │ └── cheats@3x.png │ │ ├── Contents.json │ │ ├── FastForward.imageset │ │ │ ├── Contents.json │ │ │ ├── FastForward.png │ │ │ ├── FastForward@2x.png │ │ │ └── FastForward@3x.png │ │ ├── LoadSaveState.imageset │ │ │ ├── Contents.json │ │ │ ├── LoadSaveState.png │ │ │ ├── LoadSaveState@2x.png │ │ │ └── LoadSaveState@3x.png │ │ ├── Lu.imageset │ │ │ ├── 108x108_white3.png │ │ │ ├── 36x36_white3.png │ │ │ ├── 72x72_white3.png │ │ │ └── Contents.json │ │ ├── Pause.imageset │ │ │ ├── Contents.json │ │ │ ├── Pause.png │ │ │ ├── Pause@2x.png │ │ │ └── Pause@3x.png │ │ ├── SaveSaveState.imageset │ │ │ ├── Contents.json │ │ │ ├── SaveSaveState.png │ │ │ ├── SaveSaveState@2x.png │ │ │ └── SaveSaveState@3x.png │ │ ├── Screenshot.imageset │ │ │ ├── Contents.json │ │ │ ├── screenshot.png │ │ │ ├── screenshot@2x.png │ │ │ └── screenshot@3x.png │ │ └── SustainButtons.imageset │ │ │ ├── Contents.json │ │ │ ├── sustain@1x.png │ │ │ ├── sustain@2x.png │ │ │ └── sustain@3x.png │ ├── Riley.imageset │ │ ├── Contents.json │ │ └── riley.jpg │ ├── SettingsButton.imageset │ │ ├── Contents.json │ │ └── gear_1.pdf │ ├── Shane.imageset │ │ ├── Contents.json │ │ └── shane.jpeg │ └── Social Media │ │ ├── Bluesky.imageset │ │ ├── Contents.json │ │ └── bluesky.png │ │ ├── BlueskyAppIcon.imageset │ │ ├── Bluesky.jpg │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── GitHub.imageset │ │ ├── Contents.json │ │ └── GitHub.png │ │ ├── GitHubAppIcon.imageset │ │ ├── Contents.json │ │ └── github.png │ │ ├── Mastodon.imageset │ │ ├── Contents.json │ │ └── mastodon.png │ │ ├── MastodonAppIcon.imageset │ │ ├── Contents.json │ │ └── Mastodon.png │ │ ├── Threads.imageset │ │ ├── Contents.json │ │ └── threads_icon.png │ │ └── ThreadsAppIcon.imageset │ │ ├── Contents.json │ │ └── Threads.png ├── Contributors.plist ├── Icons.xcassets │ ├── Classic │ │ ├── BrokenIcon.appiconset │ │ │ ├── BrokenDelta.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── OriginalIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── original-1024.png │ ├── Contents.json │ ├── Modern │ │ ├── Contents.json │ │ ├── DeltaRed.appiconset │ │ │ ├── Contents.json │ │ │ └── DeltaRed.png │ │ ├── GBA4iOS.appiconset │ │ │ ├── Contents.json │ │ │ └── GBA4iOS.png │ │ └── ModernIcon.appiconset │ │ │ ├── AppIconDark.png │ │ │ ├── AppIconTinted.png │ │ │ ├── Contents.json │ │ │ └── Icon1024.png │ ├── Patrons - Button Pack │ │ ├── Contents.json │ │ ├── GBAIcon.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GBA.png │ │ │ └── GBA_Dark.png │ │ ├── GBCIcon.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GBC_Dark.png │ │ │ └── GBC_Grape.png │ │ ├── GBCIcon_Berry.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GBC_Berry.png │ │ │ └── GBC_Dark.png │ │ ├── GBCIcon_Dandelion.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GBC_Dandelion.png │ │ │ └── GBC_Dark.png │ │ ├── GBCIcon_Kiwi.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GBC_Dark.png │ │ │ └── GBC_Kiwi.png │ │ ├── GBCIcon_Teal.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GBC_Dark.png │ │ │ └── GBC_Teal.png │ │ ├── GBIcon.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── GameBoy.png │ │ │ └── GameBoy_Dark.png │ │ ├── N64Icon.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── N64.png │ │ │ └── N64_Dark.png │ │ ├── NESIcon.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── NES.png │ │ │ └── NES_Dark.png │ │ └── SNESIcon.appiconset │ │ │ ├── AppIcon_Tinted.png │ │ │ ├── Contents.json │ │ │ ├── SNES.png │ │ │ └── SNES_Dark.png │ ├── Patrons │ │ ├── Contents.json │ │ ├── DeltaGold.appiconset │ │ │ ├── Contents.json │ │ │ └── DeltaGold.png │ │ ├── Halogenide.appiconset │ │ │ ├── Contents.json │ │ │ └── Halide@72ppi.png │ │ ├── KetchupIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── KetchupIcon.png │ │ │ ├── KetchupIcon_Dark 1.png │ │ │ └── KetchupIcon_Dark.png │ │ └── MicrochipIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Microchip - Dark.png │ │ │ ├── Microchip - Tinted.png │ │ │ └── MicrochipIcon.png │ └── Raw │ │ ├── AppIcon.imageset │ │ ├── Contents.json │ │ ├── GlassIcon_Dark.png │ │ └── GlassIcon_Light.png │ │ ├── Classic │ │ ├── BrokenIcon.imageset │ │ │ ├── BrokenDelta.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── OriginalIcon.imageset │ │ │ ├── Contents.json │ │ │ └── original-1024.png │ │ ├── Contents.json │ │ ├── Modern │ │ ├── Contents.json │ │ ├── DeltaRed.imageset │ │ │ ├── Contents.json │ │ │ └── DeltaRed.png │ │ ├── GBA4iOS.imageset │ │ │ ├── AppIcon_Dark.png │ │ │ ├── Contents.json │ │ │ └── GBA4iOS.png │ │ └── ModernIcon.imageset │ │ │ ├── AppIcon_Dark.png │ │ │ ├── Contents.json │ │ │ └── Icon1024.png │ │ ├── Patrons - Button Pack │ │ ├── Contents.json │ │ ├── GBAIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── GBA.png │ │ │ └── GBA_Dark.png │ │ ├── GBCIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── GBC_Dark.png │ │ │ └── GBC_Grape.png │ │ ├── GBCIcon_Berry.imageset │ │ │ ├── Contents.json │ │ │ ├── GBC_Berry.png │ │ │ └── GBC_Dark.png │ │ ├── GBCIcon_Dandelion.imageset │ │ │ ├── Contents.json │ │ │ ├── GBC_Dandelion.png │ │ │ └── GBC_Dark.png │ │ ├── GBCIcon_Kiwi.imageset │ │ │ ├── Contents.json │ │ │ ├── GBC_Dark.png │ │ │ └── GBC_Kiwi.png │ │ ├── GBCIcon_Teal.imageset │ │ │ ├── Contents.json │ │ │ ├── GBC_Dark.png │ │ │ └── GBC_Teal.png │ │ ├── GBIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── GameBoy.png │ │ │ └── GameBoy_Dark.png │ │ ├── N64Icon.imageset │ │ │ ├── Contents.json │ │ │ ├── N64.png │ │ │ └── N64_Dark.png │ │ ├── NESIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── NES.png │ │ │ └── NES_Dark.png │ │ └── SNESIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── SNES.png │ │ │ └── SNES_Dark.png │ │ └── Patrons │ │ ├── Contents.json │ │ ├── DeltaGold.imageset │ │ ├── Contents.json │ │ └── DeltaGold.png │ │ ├── Halogenide.imageset │ │ ├── Contents.json │ │ └── Halide@72ppi.png │ │ ├── KetchupIcon.imageset │ │ ├── Contents.json │ │ ├── KetchupIcon.png │ │ └── Ketchup_Dark.png │ │ └── MicrochipIcon.imageset │ │ ├── Contents.json │ │ ├── Microchip - Dark.png │ │ └── MicrochipIcon.png ├── MicrochipIcon.icon │ ├── Assets │ │ ├── 00_stripes.png │ │ ├── 00_stripes.svg │ │ ├── 01_connectors.png │ │ ├── 01_connectors.svg │ │ ├── 02_chip.png │ │ ├── 02_chip.svg │ │ ├── 04_symbols.svg │ │ ├── delta-text.svg │ │ ├── logo.svg │ │ ├── texture.svg │ │ └── thnx.svg │ └── icon.json ├── PatreonAPI.plist ├── Profanity.txt ├── WhatsNew.plist ├── cheatbase.zip └── openvgdb.sqlite └── Systems ├── Systems.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Systems.xcscheme ├── Systems.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── Systems ├── Info.plist ├── Systems.h └── Systems.swift └── build.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/.gitmodules -------------------------------------------------------------------------------- /Artwork/BoxArt.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Artwork/BoxArt.sketch -------------------------------------------------------------------------------- /Artwork/Icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Artwork/Icon.ai -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/COPYING -------------------------------------------------------------------------------- /Delta.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Delta.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Delta.xcodeproj/xcshareddata/xcschemes/Delta.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcodeproj/xcshareddata/xcschemes/Delta.xcscheme -------------------------------------------------------------------------------- /Delta.xcodeproj/xcshareddata/xcschemes/Systems.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcodeproj/xcshareddata/xcschemes/Systems.xcscheme -------------------------------------------------------------------------------- /Delta.xcodeproj/xcshareddata/xcschemes/mogenerator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcodeproj/xcshareddata/xcschemes/mogenerator.xcscheme -------------------------------------------------------------------------------- /Delta.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Delta.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Delta.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Delta.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Delta/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/AppDelegate.swift -------------------------------------------------------------------------------- /Delta/Base.lproj/GamesDatabase.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Base.lproj/GamesDatabase.storyboard -------------------------------------------------------------------------------- /Delta/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Delta/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Delta/Base.lproj/PauseMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Base.lproj/PauseMenu.storyboard -------------------------------------------------------------------------------- /Delta/Base.lproj/PausePresentationControllerContentView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Base.lproj/PausePresentationControllerContentView.xib -------------------------------------------------------------------------------- /Delta/Base.lproj/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Base.lproj/Settings.storyboard -------------------------------------------------------------------------------- /Delta/Components/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Action.swift -------------------------------------------------------------------------------- /Delta/Components/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Box.swift -------------------------------------------------------------------------------- /Delta/Components/Collection View/RoundedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Collection View/RoundedImageView.swift -------------------------------------------------------------------------------- /Delta/Components/FollowUsFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/FollowUsFooterView.swift -------------------------------------------------------------------------------- /Delta/Components/FollowUsFooterView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/FollowUsFooterView.xib -------------------------------------------------------------------------------- /Delta/Components/Keychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Keychain.swift -------------------------------------------------------------------------------- /Delta/Components/Loading/LoadImageURLOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Loading/LoadImageURLOperation.swift -------------------------------------------------------------------------------- /Delta/Components/Popover Menu/ListMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Popover Menu/ListMenuViewController.swift -------------------------------------------------------------------------------- /Delta/Components/Popover Menu/PopoverMenuButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Popover Menu/PopoverMenuButton.swift -------------------------------------------------------------------------------- /Delta/Components/Popover Menu/PopoverMenuController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Popover Menu/PopoverMenuController.swift -------------------------------------------------------------------------------- /Delta/Components/Table View/AttributedHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Table View/AttributedHeaderFooterView.swift -------------------------------------------------------------------------------- /Delta/Components/Table View/BadgedTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Table View/BadgedTableViewCell.swift -------------------------------------------------------------------------------- /Delta/Components/Table View/GameTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Table View/GameTableViewCell.swift -------------------------------------------------------------------------------- /Delta/Components/Table View/GameTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Components/Table View/GameTableViewCell.xib -------------------------------------------------------------------------------- /Delta/Database/Cheats/CheatBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Cheats/CheatBase.swift -------------------------------------------------------------------------------- /Delta/Database/Cheats/CheatBaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Cheats/CheatBaseView.swift -------------------------------------------------------------------------------- /Delta/Database/Cheats/CheatDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Cheats/CheatDevice.swift -------------------------------------------------------------------------------- /Delta/Database/Cheats/CheatMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Cheats/CheatMetadata.swift -------------------------------------------------------------------------------- /Delta/Database/Cheats/LegacySearchBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Cheats/LegacySearchBar.swift -------------------------------------------------------------------------------- /Delta/Database/DatabaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/DatabaseManager.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Delta.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Delta.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Delta/Database/Model/Human/Cheat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/Cheat.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/ControllerSkin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/ControllerSkin.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/Game.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/GameCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/GameCollection.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/GameControllerInputMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/GameControllerInputMapping.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/GameSave.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/GameSave.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/ManagedPatron.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/ManagedPatron.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/PatreonAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/PatreonAccount.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Human/SaveState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Human/SaveState.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_Cheat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_Cheat.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_ControllerSkin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_ControllerSkin.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_Game.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_GameCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_GameCollection.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_GameSave.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_GameSave.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_ManagedPatron.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_ManagedPatron.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_PatreonAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_PatreonAccount.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Machine/_SaveState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Machine/_SaveState.swift -------------------------------------------------------------------------------- /Delta/Database/Model/Misc/ControllerSkinConfigurations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Misc/ControllerSkinConfigurations.h -------------------------------------------------------------------------------- /Delta/Database/Model/Misc/GameSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Misc/GameSetting.h -------------------------------------------------------------------------------- /Delta/Database/Model/Misc/GameSetting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Model/Misc/GameSetting.m -------------------------------------------------------------------------------- /Delta/Database/OpenVGDB/GameMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/OpenVGDB/GameMetadata.swift -------------------------------------------------------------------------------- /Delta/Database/OpenVGDB/GamesDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/OpenVGDB/GamesDatabase.swift -------------------------------------------------------------------------------- /Delta/Database/Repair/GamePickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Repair/GamePickerViewController.swift -------------------------------------------------------------------------------- /Delta/Database/Repair/RepairDatabaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Repair/RepairDatabaseViewController.swift -------------------------------------------------------------------------------- /Delta/Database/Repair/ReviewSaveStatesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Database/Repair/ReviewSaveStatesViewController.swift -------------------------------------------------------------------------------- /Delta/Deep Linking/CopyDeepLinkActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Deep Linking/CopyDeepLinkActivity.swift -------------------------------------------------------------------------------- /Delta/Deep Linking/DeepLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Deep Linking/DeepLink.swift -------------------------------------------------------------------------------- /Delta/Deep Linking/DeepLinkController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Deep Linking/DeepLinkController.swift -------------------------------------------------------------------------------- /Delta/Delta.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Delta.entitlements -------------------------------------------------------------------------------- /Delta/Emulation/ActionInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Emulation/ActionInput.swift -------------------------------------------------------------------------------- /Delta/Emulation/GameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Emulation/GameViewController.swift -------------------------------------------------------------------------------- /Delta/Emulation/PreviewGameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Emulation/PreviewGameViewController.swift -------------------------------------------------------------------------------- /Delta/Experimental Features/ExperimentalFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Experimental Features/ExperimentalFeatures.swift -------------------------------------------------------------------------------- /Delta/Experimental Features/Features/Lu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Experimental Features/Features/Lu.swift -------------------------------------------------------------------------------- /Delta/Experimental Features/Features/RetroAchievements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Experimental Features/Features/RetroAchievements.swift -------------------------------------------------------------------------------- /Delta/Experimental Features/Features/SkinDebugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Experimental Features/Features/SkinDebugging.swift -------------------------------------------------------------------------------- /Delta/Extensions/Bundle+SwizzleBundleID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/Bundle+SwizzleBundleID.swift -------------------------------------------------------------------------------- /Delta/Extensions/CharacterSet+Filename.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/CharacterSet+Filename.swift -------------------------------------------------------------------------------- /Delta/Extensions/ControllerSkin+Configuring.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/ControllerSkin+Configuring.swift -------------------------------------------------------------------------------- /Delta/Extensions/EmulatorCore+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/EmulatorCore+Delta.swift -------------------------------------------------------------------------------- /Delta/Extensions/GameView+AirPlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/GameView+AirPlay.swift -------------------------------------------------------------------------------- /Delta/Extensions/GameViewController+ExperimentalToasts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/GameViewController+ExperimentalToasts.swift -------------------------------------------------------------------------------- /Delta/Extensions/HarmonyMetadataKey+Keys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/HarmonyMetadataKey+Keys.swift -------------------------------------------------------------------------------- /Delta/Extensions/Input+Display.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/Input+Display.swift -------------------------------------------------------------------------------- /Delta/Extensions/NSFetchedResultsController+Conveniences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/NSFetchedResultsController+Conveniences.h -------------------------------------------------------------------------------- /Delta/Extensions/NSFetchedResultsController+Conveniences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/NSFetchedResultsController+Conveniences.m -------------------------------------------------------------------------------- /Delta/Extensions/NSManagedObject+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/NSManagedObject+Conveniences.swift -------------------------------------------------------------------------------- /Delta/Extensions/NSManagedObjectContext+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/NSManagedObjectContext+Conveniences.swift -------------------------------------------------------------------------------- /Delta/Extensions/NSUserActivity+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/NSUserActivity+Delta.swift -------------------------------------------------------------------------------- /Delta/Extensions/OSLog+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/OSLog+Delta.swift -------------------------------------------------------------------------------- /Delta/Extensions/PHPhotoLibrary+Screenshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/PHPhotoLibrary+Screenshots.swift -------------------------------------------------------------------------------- /Delta/Extensions/PauseViewController+Lu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/PauseViewController+Lu.swift -------------------------------------------------------------------------------- /Delta/Extensions/ProcessInfo+JIT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/ProcessInfo+JIT.swift -------------------------------------------------------------------------------- /Delta/Extensions/ServerManager+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/ServerManager+Delta.swift -------------------------------------------------------------------------------- /Delta/Extensions/Stream+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/Stream+Conveniences.swift -------------------------------------------------------------------------------- /Delta/Extensions/String+Profanity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/String+Profanity.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIAlertController+Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIAlertController+Error.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIAlertController+Importing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIAlertController+Importing.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIColor+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIColor+Delta.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIColor+Hex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIColor+Hex.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIDevice+Processor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIDevice+Processor.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIImage+SymbolFallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIImage+SymbolFallback.swift -------------------------------------------------------------------------------- /Delta/Extensions/UILabel+FontSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UILabel+FontSize.swift -------------------------------------------------------------------------------- /Delta/Extensions/UISceneSession+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UISceneSession+Delta.swift -------------------------------------------------------------------------------- /Delta/Extensions/UIView+ParentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UIView+ParentViewController.swift -------------------------------------------------------------------------------- /Delta/Extensions/UserDefaults+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Extensions/UserDefaults+Delta.swift -------------------------------------------------------------------------------- /Delta/Game Selection/GameCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Game Selection/GameCollectionViewController.swift -------------------------------------------------------------------------------- /Delta/Game Selection/GamesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Game Selection/GamesViewController.swift -------------------------------------------------------------------------------- /Delta/Game Selection/Segues/GamesStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Game Selection/Segues/GamesStoryboardSegue.swift -------------------------------------------------------------------------------- /Delta/Game Selection/Segues/SaveStatesStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Game Selection/Segues/SaveStatesStoryboardSegue.swift -------------------------------------------------------------------------------- /Delta/Importing/Import Options/ClipboardImportOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Importing/Import Options/ClipboardImportOption.swift -------------------------------------------------------------------------------- /Delta/Importing/Import Options/iTunesImportOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Importing/Import Options/iTunesImportOption.swift -------------------------------------------------------------------------------- /Delta/Importing/ImportController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Importing/ImportController.swift -------------------------------------------------------------------------------- /Delta/Importing/ImportOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Importing/ImportOption.swift -------------------------------------------------------------------------------- /Delta/Launch/LaunchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Launch/LaunchViewController.swift -------------------------------------------------------------------------------- /Delta/Launch/WhatsNewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Launch/WhatsNewCell.swift -------------------------------------------------------------------------------- /Delta/Launch/WhatsNewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Launch/WhatsNewViewController.swift -------------------------------------------------------------------------------- /Delta/Patreon/Benefit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/Benefit.swift -------------------------------------------------------------------------------- /Delta/Patreon/Campaign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/Campaign.swift -------------------------------------------------------------------------------- /Delta/Patreon/PatreonAPI+Responses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/PatreonAPI+Responses.swift -------------------------------------------------------------------------------- /Delta/Patreon/PatreonAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/PatreonAPI.swift -------------------------------------------------------------------------------- /Delta/Patreon/Patron.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/Patron.swift -------------------------------------------------------------------------------- /Delta/Patreon/Tier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/Tier.swift -------------------------------------------------------------------------------- /Delta/Patreon/UserAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Patreon/UserAccount.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Cheats/CheatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Cheats/CheatTableViewCell.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Cheats/CheatTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Cheats/CheatTextView.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Cheats/CheatValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Cheats/CheatValidator.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Cheats/CheatsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Cheats/CheatsViewController.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Cheats/EditCheatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Cheats/EditCheatViewController.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/GridMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/GridMenuViewController.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/MenuItem.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/PauseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/PauseViewController.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Save States/SaveStatesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Save States/SaveStatesViewController.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Segues/PauseStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Segues/PauseStoryboardSegue.swift -------------------------------------------------------------------------------- /Delta/Pause Menu/Segues/PauseTransitionCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Pause Menu/Segues/PauseTransitionCoordinator.swift -------------------------------------------------------------------------------- /Delta/Purchases/FriendZoneManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Purchases/FriendZoneManager.swift -------------------------------------------------------------------------------- /Delta/Purchases/PurchaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Purchases/PurchaseManager.swift -------------------------------------------------------------------------------- /Delta/Purchases/RevenueCatManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Purchases/RevenueCatManager.swift -------------------------------------------------------------------------------- /Delta/RetroAchievements/Achievement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/RetroAchievements/Achievement.swift -------------------------------------------------------------------------------- /Delta/RetroAchievements/AchievementsError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/RetroAchievements/AchievementsError.swift -------------------------------------------------------------------------------- /Delta/RetroAchievements/AchievementsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/RetroAchievements/AchievementsManager.swift -------------------------------------------------------------------------------- /Delta/RetroAchievements/AchievementsTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/RetroAchievements/AchievementsTracker.swift -------------------------------------------------------------------------------- /Delta/Scenes/ExternalDisplaySceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Scenes/ExternalDisplaySceneDelegate.swift -------------------------------------------------------------------------------- /Delta/Scenes/GameSceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Scenes/GameSceneDelegate.swift -------------------------------------------------------------------------------- /Delta/Scenes/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Scenes/SceneDelegate.swift -------------------------------------------------------------------------------- /Delta/Settings/App Icon/AltAppIconsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/App Icon/AltAppIconsViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/App Icon/AppIconShortcutsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/App Icon/AppIconShortcutsViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Contributors/Contributor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Contributors/Contributor.swift -------------------------------------------------------------------------------- /Delta/Settings/Contributors/ContributorsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Contributors/ContributorsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Controllers/InputCalloutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Controllers/InputCalloutView.swift -------------------------------------------------------------------------------- /Delta/Settings/Controllers/LocalDeviceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Controllers/LocalDeviceController.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/CoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/CoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/GBACoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/GBACoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/GBCColorPalette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/GBCColorPalette.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/GBCCoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/GBCCoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/GenesisCoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/GenesisCoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/MelonDSCoreSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/MelonDSCoreSettingsViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/N64CoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/N64CoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/NESCoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/NESCoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/SNESCoreSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/SNESCoreSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Cores/SystemBIOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Cores/SystemBIOS.swift -------------------------------------------------------------------------------- /Delta/Settings/Experimental Features/FeatureDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Experimental Features/FeatureDetailView.swift -------------------------------------------------------------------------------- /Delta/Settings/Features/DSAirPlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Features/DSAirPlay.swift -------------------------------------------------------------------------------- /Delta/Settings/Features/Features.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Features/Features.swift -------------------------------------------------------------------------------- /Delta/Settings/Games/GameSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Games/GameSettingsView.swift -------------------------------------------------------------------------------- /Delta/Settings/Games/GameSettingsWrapperViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Games/GameSettingsWrapperViews.swift -------------------------------------------------------------------------------- /Delta/Settings/LicensesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/LicensesViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Patreon/AboutPatreonHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Patreon/AboutPatreonHeaderView.xib -------------------------------------------------------------------------------- /Delta/Settings/Patreon/IAPScareScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Patreon/IAPScareScreen.swift -------------------------------------------------------------------------------- /Delta/Settings/Patreon/JoinPatreonButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Patreon/JoinPatreonButton.swift -------------------------------------------------------------------------------- /Delta/Settings/Patreon/PatreonComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Patreon/PatreonComponents.swift -------------------------------------------------------------------------------- /Delta/Settings/Patreon/PatreonTiersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Patreon/PatreonTiersViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Patreon/PatreonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Patreon/PatreonViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Settings.swift -------------------------------------------------------------------------------- /Delta/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Syncing/GameSyncStatusViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Syncing/GameSyncStatusViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Syncing/RecordSyncStatusViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Syncing/RecordSyncStatusViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Syncing/RecordVersionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Syncing/RecordVersionsViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Syncing/SyncStatusViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Syncing/SyncStatusViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/Syncing/SyncingServicesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/Syncing/SyncingServicesViewController.swift -------------------------------------------------------------------------------- /Delta/Settings/WFC/WFCManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/WFC/WFCManager.swift -------------------------------------------------------------------------------- /Delta/Settings/WFC/WFCServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/WFC/WFCServer.swift -------------------------------------------------------------------------------- /Delta/Settings/WFC/WFCServersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Settings/WFC/WFCServersView.swift -------------------------------------------------------------------------------- /Delta/Supporting Files/Delta-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Supporting Files/Delta-Bridging-Header.h -------------------------------------------------------------------------------- /Delta/Supporting Files/Delta.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Supporting Files/Delta.entitlements -------------------------------------------------------------------------------- /Delta/Supporting Files/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Supporting Files/GoogleService-Info.plist -------------------------------------------------------------------------------- /Delta/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Delta/Supporting Files/Lu-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Supporting Files/Lu-Info.plist -------------------------------------------------------------------------------- /Delta/Syncing/SyncManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Syncing/SyncManager.swift -------------------------------------------------------------------------------- /Delta/Syncing/SyncResultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Syncing/SyncResultViewController.swift -------------------------------------------------------------------------------- /Delta/Syncing/SyncResultsViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Syncing/SyncResultsViewController.storyboard -------------------------------------------------------------------------------- /Delta/Syncing/SyncValidationError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Syncing/SyncValidationError.swift -------------------------------------------------------------------------------- /Delta/Systems/DeltaCoreProtocol+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Systems/DeltaCoreProtocol+Delta.swift -------------------------------------------------------------------------------- /Delta/Systems/System.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Systems/System.swift -------------------------------------------------------------------------------- /Delta/Theming/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Delta/Theming/Theme.swift -------------------------------------------------------------------------------- /DeltaFeatures/Extensions/Collection+Optionals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Extensions/Collection+Optionals.swift -------------------------------------------------------------------------------- /DeltaFeatures/Extensions/NotificationName+Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Extensions/NotificationName+Settings.swift -------------------------------------------------------------------------------- /DeltaFeatures/Extensions/UserDefaults+OptionValues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Extensions/UserDefaults+OptionValues.swift -------------------------------------------------------------------------------- /DeltaFeatures/Feature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Feature.swift -------------------------------------------------------------------------------- /DeltaFeatures/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Option.swift -------------------------------------------------------------------------------- /DeltaFeatures/Protocols/AnyFeature.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Protocols/AnyFeature.swift -------------------------------------------------------------------------------- /DeltaFeatures/Protocols/AnyOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Protocols/AnyOption.swift -------------------------------------------------------------------------------- /DeltaFeatures/Protocols/FeatureContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Protocols/FeatureContainer.swift -------------------------------------------------------------------------------- /DeltaFeatures/Protocols/OptionalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Protocols/OptionalProtocol.swift -------------------------------------------------------------------------------- /DeltaFeatures/Types/DisplayInlineKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Types/DisplayInlineKey.swift -------------------------------------------------------------------------------- /DeltaFeatures/Types/LocalizedOptionValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Types/LocalizedOptionValue.swift -------------------------------------------------------------------------------- /DeltaFeatures/Types/OptionValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Types/OptionValue.swift -------------------------------------------------------------------------------- /DeltaFeatures/Types/SettingsName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Types/SettingsName.swift -------------------------------------------------------------------------------- /DeltaFeatures/Types/SettingsUserInfoKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Types/SettingsUserInfoKey.swift -------------------------------------------------------------------------------- /DeltaFeatures/Views/OptionPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Views/OptionPickerView.swift -------------------------------------------------------------------------------- /DeltaFeatures/Views/OptionToggleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaFeatures/Views/OptionToggleView.swift -------------------------------------------------------------------------------- /DeltaPreviews/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaPreviews/ContentView.swift -------------------------------------------------------------------------------- /DeltaPreviews/DeltaPreviews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaPreviews/DeltaPreviews.h -------------------------------------------------------------------------------- /DeltaPreviews/Experimental Features/CustomTintColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaPreviews/Experimental Features/CustomTintColor.swift -------------------------------------------------------------------------------- /DeltaPreviews/MockDatabaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaPreviews/MockDatabaseManager.swift -------------------------------------------------------------------------------- /DeltaPreviews/MockPurchaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/DeltaPreviews/MockPurchaseManager.swift -------------------------------------------------------------------------------- /Docs/ExperimentalFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Docs/ExperimentalFeatures.md -------------------------------------------------------------------------------- /Docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Docs/pull_request_template.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Result.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/ServerTrustPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/SessionManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/TaskDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/TaskDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Timeline.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/AppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/LICENSE -------------------------------------------------------------------------------- /Pods/AppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/README.md -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuth.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuth/iOS/OIDAuthState+IOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuth/iOS/OIDAuthState+IOS.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuth/iOS/OIDAuthState+IOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuth/iOS/OIDAuthState+IOS.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOS.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOS.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDAuthState.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDAuthStateErrorDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDAuthStateErrorDelegate.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDAuthorizationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDAuthorizationRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDDefines.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionRequest.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionResponse.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDEndSessionResponse.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDError.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDError.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDErrorUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDErrorUtilities.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDErrorUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDErrorUtilities.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDExternalUserAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDExternalUserAgent.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDFieldMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDFieldMapping.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDFieldMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDFieldMapping.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDGrantTypes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDIDToken.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDRegistrationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDRegistrationRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDRegistrationRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDRegistrationRequest.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDResponseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDResponseTypes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDResponseTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDResponseTypes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDScopeUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDScopeUtilities.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDScopeUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDScopeUtilities.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDScopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDScopes.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDScopes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDScopes.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDServiceDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDServiceDiscovery.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDServiceDiscovery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDServiceDiscovery.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDTokenRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDTokenRequest.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDTokenRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDTokenRequest.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDTokenResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDTokenResponse.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDTokenResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDTokenResponse.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDTokenUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDTokenUtilities.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDTokenUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDTokenUtilities.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDURLQueryComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDURLQueryComponent.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDURLQueryComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDURLQueryComponent.m -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDURLSessionProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDURLSessionProvider.h -------------------------------------------------------------------------------- /Pods/AppAuth/Sources/AppAuthCore/OIDURLSessionProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/AppAuth/Sources/AppAuthCore/OIDURLSessionProvider.m -------------------------------------------------------------------------------- /Pods/GTMAppAuth/GTMAppAuth/Sources/GTMKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMAppAuth/GTMAppAuth/Sources/GTMKeychain.m -------------------------------------------------------------------------------- /Pods/GTMAppAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMAppAuth/LICENSE -------------------------------------------------------------------------------- /Pods/GTMAppAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMAppAuth/README.md -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMSessionFetcher/LICENSE -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMSessionFetcher/README.md -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Sources/Core/GTMSessionFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMSessionFetcher/Sources/Core/GTMSessionFetcher.m -------------------------------------------------------------------------------- /Pods/GTMSessionFetcher/Sources/Full/GTMMIMEDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GTMSessionFetcher/Sources/Full/GTMMIMEDocument.m -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/README.md -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/GTLRDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/GTLRDefines.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRDateTime.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRDateTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRDateTime.m -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRDuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRDuration.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRDuration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRDuration.m -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRObject.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRObject.m -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRQuery.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRQuery.m -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRService.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Objects/GTLRService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Objects/GTLRService.m -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Utilities/GTLRBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Utilities/GTLRBase64.h -------------------------------------------------------------------------------- /Pods/GoogleAPIClientForREST/Source/Utilities/GTLRBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleAPIClientForREST/Source/Utilities/GTLRBase64.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDCallbackQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDCallbackQueue.h -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDCallbackQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDCallbackQueue.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDConfiguration.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDGoogleUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDGoogleUser.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDProfileData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDProfileData.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDScopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDScopes.h -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDScopes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDScopes.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignIn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignIn.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignInButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignInButton.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignInStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignInStrings.h -------------------------------------------------------------------------------- /Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignInStrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/GoogleSignIn/Sources/GIDSignInStrings.m -------------------------------------------------------------------------------- /Pods/GoogleSignIn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/LICENSE -------------------------------------------------------------------------------- /Pods/GoogleSignIn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/GoogleSignIn/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/AppAuth.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/AppAuthCore.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthState+IOS.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDAuthState+IOS.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthState.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthStateChangeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthStateChangeDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthStateErrorDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthStateErrorDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthorizationRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthorizationRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthorizationResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthorizationResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthorizationService+IOS.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDAuthorizationService+IOS.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDAuthorizationService.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthorizationService.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDClientMetadataParameters.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDClientMetadataParameters.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDDefines.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDEndSessionRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDEndSessionRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDEndSessionResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDEndSessionResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDError.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDErrorUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDErrorUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDExternalUserAgent.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDExternalUserAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDExternalUserAgentCatalyst.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentCatalyst.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDExternalUserAgentIOS.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOS.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDExternalUserAgentIOSCustomBrowser.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOSCustomBrowser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDExternalUserAgentRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDExternalUserAgentRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDExternalUserAgentSession.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDExternalUserAgentSession.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDFieldMapping.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDFieldMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDGrantTypes.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDGrantTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDIDToken.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDIDToken.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDRegistrationRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDRegistrationRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDRegistrationResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDRegistrationResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDResponseTypes.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDResponseTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDScopeUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDScopeUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDScopes.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDScopes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDServiceConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDServiceConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDServiceDiscovery.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDServiceDiscovery.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDTokenRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDTokenRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDTokenResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDTokenResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDTokenUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDTokenUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDURLQueryComponent.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDURLQueryComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/AppAuth/OIDURLSessionProvider.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDURLSessionProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMAppAuth/GTMAppAuth.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMAppAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMAppAuth/GTMAppAuthFetcherAuthorization.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMAppAuthFetcherAuthorization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMAppAuth/GTMKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMAppAuth/GTMOAuth2KeychainCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMOAuth2KeychainCompatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMGatherInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Full/Public/GTMSessionFetcher/GTMGatherInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMMIMEDocument.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Full/Public/GTMSessionFetcher/GTMMIMEDocument.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMReadMonitorInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Full/Public/GTMSessionFetcher/GTMReadMonitorInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMSessionFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMSessionFetcherLogging.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMSessionFetcherService.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GTMSessionFetcher/GTMSessionUploadFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRBase64.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRBase64.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRBatchQuery.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRBatchQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRBatchResult.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRBatchResult.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDateTime.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRDateTime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDefines.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GTLRDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDrive.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDrive.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDriveObjects.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDriveObjects.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDriveQuery.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDriveQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDriveService.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDriveService.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRDuration.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRDuration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRErrorObject.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRErrorObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRFramework.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRFramework.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRObject.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRObject.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRQuery.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRRuntimeCommon.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRRuntimeCommon.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRService.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRService.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRURITemplate.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRURITemplate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRUploadParameters.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRUploadParameters.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleAPIClientForREST/GTLRUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDAuthStateMigration.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDAuthStateMigration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDAuthentication.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDAuthentication.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDAuthentication_Private.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDAuthentication_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDCallbackQueue.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDCallbackQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDEMMErrorHandler.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDEMMErrorHandler.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDGoogleUser.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDGoogleUser.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDGoogleUser_Private.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDGoogleUser_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDMDMPasscodeCache.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDMDMPasscodeCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDMDMPasscodeState.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDMDMPasscodeState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDMDMPasscodeState_Private.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDMDMPasscodeState_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDProfileData.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDProfileData.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDProfileData_Private.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDProfileData_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDScopes.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDScopes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignIn.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignInButton.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignInButton.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignInCallbackSchemes.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDSignInCallbackSchemes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignInInternalOptions.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDSignInInternalOptions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignInPreferences.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDSignInPreferences.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignInStrings.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDSignInStrings.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GIDSignIn_Private.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/GIDSignIn_Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/GoogleSignIn.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GoogleSignIn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/GoogleSignIn/NSBundle+GID3PAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/NSBundle+GID3PAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Harmony/Harmony/Harmony.h: -------------------------------------------------------------------------------- 1 | ../../../../../External/Harmony/Harmony/Harmony.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSBundle+Extensions.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSBundle+Extensions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSConstraintConflict+Conveniences.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSConstraintConflict+Conveniences.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSFileManager+URLs.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSFileManager+URLs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSLayoutConstraint+Edges.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSLayoutConstraint+Edges.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSPredicate+Search.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSPredicate+Search.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSString+Localization.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSString+Localization.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/NSUserDefaults+DynamicProperties.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSUserDefaults+DynamicProperties.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTActivityIndicating.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTActivityIndicating.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTArrayDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTArrayDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTBlockOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTBlockOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentCell.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentChange.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentChange.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentChangeOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentChangeOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentDataSource_Subclasses.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentDataSource_Subclasses.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentPrefetchingDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentPrefetchingDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCellContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCollectionViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCollectionViewGridLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCollectionViewGridLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTCompositeDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCompositeDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTDynamicDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTDynamicDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTError.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTError.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTFetchedResultsDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTFetchedResultsDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTHasher.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTHasher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTHelperFile.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTHelperFile.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTLaunchViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTLaunchViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTLoadOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTLoadOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTNavigationController.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTNavigationController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTNibView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTNibView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTOperationQueue.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTOperationQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTOperation_Subclasses.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTOperation_Subclasses.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTPersistentContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTPersistentContainer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTPlaceholderView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTPlaceholderView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTRelationshipPreservingMergePolicy.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTRelationshipPreservingMergePolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTSearchController.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTSearchController.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTSeparatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTSeparatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTTintedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTTintedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/RSTToastView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTToastView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/Roxas.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/Roxas.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UIAlertAction+Actions.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIAlertAction+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UICollectionView+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UICollectionView+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UICollectionViewCell+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UICollectionViewCell+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UICollectionViewCell+Nibs.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UICollectionViewCell+Nibs.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UIImage+Manipulation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIImage+Manipulation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UIKit+ActivityIndicating.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIKit+ActivityIndicating.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UISpringTimingParameters+Conveniences.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UISpringTimingParameters+Conveniences.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UITableView+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UITableView+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UITableViewCell+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UITableViewCell+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UIView+AnimatedHide.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIView+AnimatedHide.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Roxas/UIViewController+TransitionState.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIViewController+TransitionState.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SMCalloutView/SMCalloutView.h: -------------------------------------------------------------------------------- 1 | ../../../SMCalloutView/SMCalloutView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SMCalloutView/SMClassicCalloutView.h: -------------------------------------------------------------------------------- 1 | ../../../SMCalloutView/SMClassicCalloutView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SQLite.swift/SQLite.h: -------------------------------------------------------------------------------- 1 | ../../../SQLite.swift/Sources/SQLite/SQLite.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SQLite.swift/SQLiteObjc.h: -------------------------------------------------------------------------------- 1 | ../../../SQLite.swift/Sources/SQLiteObjc/include/SQLiteObjc.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SQLite.swift/fts3_tokenizer.h: -------------------------------------------------------------------------------- 1 | ../../../SQLite.swift/Sources/SQLiteObjc/fts3_tokenizer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SwiftyDropbox/DBChunkInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../SwiftyDropbox/Source/SwiftyDropbox/Shared/Handwritten/DBChunkInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Private/SwiftyDropbox/SwiftyDropbox.h: -------------------------------------------------------------------------------- 1 | ../../../SwiftyDropbox/Source/SwiftyDropbox/Shared/Handwritten/SwiftyDropbox.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/AppAuth-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/AppAuth/AppAuth-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/AppAuth.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/AppAuth.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/AppAuth/AppAuth.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/AppAuthCore.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthState+IOS.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDAuthState+IOS.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthState.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthState.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthStateChangeDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthStateChangeDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthStateErrorDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthStateErrorDelegate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthorizationRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthorizationRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthorizationResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthorizationResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthorizationService+IOS.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDAuthorizationService+IOS.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDAuthorizationService.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDAuthorizationService.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDClientMetadataParameters.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDClientMetadataParameters.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDDefines.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDEndSessionRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDEndSessionRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDEndSessionResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDEndSessionResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDError.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDErrorUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDErrorUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDExternalUserAgent.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDExternalUserAgent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDExternalUserAgentCatalyst.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentCatalyst.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDExternalUserAgentIOS.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOS.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDExternalUserAgentIOSCustomBrowser.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuth/iOS/OIDExternalUserAgentIOSCustomBrowser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDExternalUserAgentRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDExternalUserAgentRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDExternalUserAgentSession.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDExternalUserAgentSession.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDFieldMapping.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDFieldMapping.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDGrantTypes.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDGrantTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDIDToken.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDIDToken.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDRegistrationRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDRegistrationRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDRegistrationResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDRegistrationResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDResponseTypes.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDResponseTypes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDScopeUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDScopeUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDScopes.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDScopes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDServiceConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDServiceConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDServiceDiscovery.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDServiceDiscovery.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDTokenRequest.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDTokenRequest.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDTokenResponse.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDTokenResponse.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDTokenUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDTokenUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDURLQueryComponent.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDURLQueryComponent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/AppAuth/OIDURLSessionProvider.h: -------------------------------------------------------------------------------- 1 | ../../../AppAuth/Sources/AppAuthCore/OIDURLSessionProvider.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMAppAuth/GTMAppAuth-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GTMAppAuth/GTMAppAuth-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMAppAuth/GTMAppAuth.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMAppAuth.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMAppAuth/GTMAppAuth.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GTMAppAuth/GTMAppAuth.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMAppAuth/GTMAppAuthFetcherAuthorization.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMAppAuthFetcherAuthorization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMAppAuth/GTMKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMKeychain.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMAppAuth/GTMOAuth2KeychainCompatibility.h: -------------------------------------------------------------------------------- 1 | ../../../GTMAppAuth/GTMAppAuth/Sources/Public/GTMAppAuth/GTMOAuth2KeychainCompatibility.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMGatherInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Full/Public/GTMSessionFetcher/GTMGatherInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMMIMEDocument.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Full/Public/GTMSessionFetcher/GTMMIMEDocument.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMReadMonitorInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Full/Public/GTMSessionFetcher/GTMReadMonitorInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMSessionFetcher-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GTMSessionFetcher/GTMSessionFetcher-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMSessionFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMSessionFetcher.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GTMSessionFetcher/GTMSessionFetcher.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherLogging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMSessionFetcherService.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionFetcherService.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h: -------------------------------------------------------------------------------- 1 | ../../../GTMSessionFetcher/Sources/Core/Public/GTMSessionFetcher/GTMSessionUploadFetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRBase64.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRBase64.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRBatchQuery.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRBatchQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRBatchResult.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRBatchResult.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDateTime.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRDateTime.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDefines.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GTLRDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDrive.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDrive.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDriveObjects.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDriveObjects.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDriveQuery.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDriveQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDriveService.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/GeneratedServices/Drive/GTLRDriveService.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRDuration.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRDuration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRErrorObject.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRErrorObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRFramework.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRFramework.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRObject.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRObject.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRQuery.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRQuery.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRRuntimeCommon.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRRuntimeCommon.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRService.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRService.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRURITemplate.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRURITemplate.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRUploadParameters.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Objects/GTLRUploadParameters.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GTLRUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleAPIClientForREST/Source/Utilities/GTLRUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GoogleAPIClientForREST-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GoogleAPIClientForREST/GoogleAPIClientForREST-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleAPIClientForREST/GoogleAPIClientForREST.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GoogleAPIClientForREST/GoogleAPIClientForREST.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GIDAuthentication.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDAuthentication.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GIDConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GIDGoogleUser.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDGoogleUser.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GIDProfileData.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDProfileData.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GIDSignIn.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignIn.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GIDSignInButton.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GIDSignInButton.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GoogleSignIn-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GoogleSignIn/GoogleSignIn-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GoogleSignIn.h: -------------------------------------------------------------------------------- 1 | ../../../GoogleSignIn/GoogleSignIn/Sources/Public/GoogleSignIn/GoogleSignIn.h -------------------------------------------------------------------------------- /Pods/Headers/Public/GoogleSignIn/GoogleSignIn.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/GoogleSignIn/GoogleSignIn.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Harmony/Harmony-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Harmony/Harmony-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Harmony/Harmony.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Harmony/Harmony.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Harmony/Harmony/Harmony.h: -------------------------------------------------------------------------------- 1 | ../../../../../External/Harmony/Harmony/Harmony.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSBundle+Extensions.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSBundle+Extensions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSConstraintConflict+Conveniences.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSConstraintConflict+Conveniences.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSFileManager+URLs.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSFileManager+URLs.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSLayoutConstraint+Edges.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSLayoutConstraint+Edges.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSPredicate+Search.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSPredicate+Search.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSString+Localization.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSString+Localization.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/NSUserDefaults+DynamicProperties.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/NSUserDefaults+DynamicProperties.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTActivityIndicating.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTActivityIndicating.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTArrayDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTArrayDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTBlockOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTBlockOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCellContentCell.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCellContentChange.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentChange.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCellContentChangeOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentChangeOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCellContentDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCellContentPrefetchingDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentPrefetchingDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCellContentView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCellContentView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCollectionViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCollectionViewCell.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCollectionViewGridLayout.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCollectionViewGridLayout.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTCompositeDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTCompositeDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTConstants.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTDefines.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTDynamicDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTDynamicDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTError.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTError.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTFetchedResultsDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTFetchedResultsDataSource.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTHasher.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTHasher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTHelperFile.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTHelperFile.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTLaunchViewController.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTLaunchViewController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTLoadOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTLoadOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTNavigationController.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTNavigationController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTNibView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTNibView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTOperation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTOperationQueue.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTOperationQueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTOperation_Subclasses.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTOperation_Subclasses.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTPersistentContainer.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTPersistentContainer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTPlaceholderView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTPlaceholderView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTRelationshipPreservingMergePolicy.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTRelationshipPreservingMergePolicy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTSearchController.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTSearchController.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTSeparatorView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTSeparatorView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTTintedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTTintedImageView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/RSTToastView.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/RSTToastView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/Roxas-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Roxas/Roxas-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/Roxas.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/Roxas.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/Roxas.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Roxas/Roxas.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UIAlertAction+Actions.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIAlertAction+Actions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UICollectionView+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UICollectionView+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UICollectionViewCell+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UICollectionViewCell+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UICollectionViewCell+Nibs.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UICollectionViewCell+Nibs.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UIImage+Manipulation.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIImage+Manipulation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UIKit+ActivityIndicating.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIKit+ActivityIndicating.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UISpringTimingParameters+Conveniences.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UISpringTimingParameters+Conveniences.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UITableView+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UITableView+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UITableViewCell+CellContent.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UITableViewCell+CellContent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UIView+AnimatedHide.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIView+AnimatedHide.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Roxas/UIViewController+TransitionState.h: -------------------------------------------------------------------------------- 1 | ../../../../External/Roxas/Roxas/UIViewController+TransitionState.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImage-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SDWebImage/SDWebImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SMCalloutView/SMCalloutView-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SMCalloutView/SMCalloutView-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SMCalloutView/SMCalloutView.h: -------------------------------------------------------------------------------- 1 | ../../../SMCalloutView/SMCalloutView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SMCalloutView/SMCalloutView.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SMCalloutView/SMCalloutView.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/SMCalloutView/SMClassicCalloutView.h: -------------------------------------------------------------------------------- 1 | ../../../SMCalloutView/SMClassicCalloutView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SQLite.swift/SQLite.h: -------------------------------------------------------------------------------- 1 | ../../../SQLite.swift/Sources/SQLite/SQLite.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SQLite.swift/SQLiteObjc.h: -------------------------------------------------------------------------------- 1 | ../../../SQLite.swift/Sources/SQLiteObjc/include/SQLiteObjc.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SQLite/SQLite.swift-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SQLite.swift/SQLite.swift-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SQLite/SQLite.swift.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SQLite.swift/SQLite.swift.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/SwiftyDropbox/DBChunkInputStream.h: -------------------------------------------------------------------------------- 1 | ../../../SwiftyDropbox/Source/SwiftyDropbox/Shared/Handwritten/DBChunkInputStream.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SwiftyDropbox/SwiftyDropbox-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SwiftyDropbox/SwiftyDropbox-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SwiftyDropbox/SwiftyDropbox.h: -------------------------------------------------------------------------------- 1 | ../../../SwiftyDropbox/Source/SwiftyDropbox/Shared/Handwritten/SwiftyDropbox.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SwiftyDropbox/SwiftyDropbox.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SwiftyDropbox/SwiftyDropbox.modulemap -------------------------------------------------------------------------------- /Pods/Local Podspecs/Harmony.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Local Podspecs/Harmony.podspec.json -------------------------------------------------------------------------------- /Pods/Local Podspecs/Roxas.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Local Podspecs/Roxas.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/SDWebImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/LICENSE -------------------------------------------------------------------------------- /Pods/SDWebImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/README.md -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SDWebImage/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /Pods/SMCalloutView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SMCalloutView/LICENSE -------------------------------------------------------------------------------- /Pods/SMCalloutView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SMCalloutView/README.md -------------------------------------------------------------------------------- /Pods/SMCalloutView/SMCalloutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SMCalloutView/SMCalloutView.h -------------------------------------------------------------------------------- /Pods/SMCalloutView/SMCalloutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SMCalloutView/SMCalloutView.m -------------------------------------------------------------------------------- /Pods/SMCalloutView/SMClassicCalloutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SMCalloutView/SMClassicCalloutView.h -------------------------------------------------------------------------------- /Pods/SMCalloutView/SMClassicCalloutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SMCalloutView/SMClassicCalloutView.m -------------------------------------------------------------------------------- /Pods/SQLite.swift/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/LICENSE.txt -------------------------------------------------------------------------------- /Pods/SQLite.swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/README.md -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Core/Blob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Core/Blob.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Core/Connection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Core/Connection.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Core/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Core/Errors.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Core/Statement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Core/Statement.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Core/Value.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Core/Value.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Extensions/FTS4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Extensions/FTS4.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Extensions/FTS5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Extensions/FTS5.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Extensions/RTree.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Extensions/RTree.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Foundation.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Helpers.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/SQLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/SQLite.h -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Coding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Coding.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Collation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Collation.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Expression.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Operators.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Query.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Schema.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLite/Typed/Setter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLite/Typed/Setter.swift -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLiteObjc/SQLiteObjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLiteObjc/SQLiteObjc.m -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLiteObjc/fts3_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLiteObjc/fts3_tokenizer.h -------------------------------------------------------------------------------- /Pods/SQLite.swift/Sources/SQLiteObjc/include/SQLiteObjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SQLite.swift/Sources/SQLiteObjc/include/SQLiteObjc.h -------------------------------------------------------------------------------- /Pods/SwiftyDropbox/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SwiftyDropbox/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyDropbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/SwiftyDropbox/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/AppAuth/AppAuth-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/AppAuth/AppAuth-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/AppAuth/AppAuth-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/AppAuth/AppAuth.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/AppAuth/AppAuth.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/AppAuth/AppAuth.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/GTMAppAuth/GTMAppAuth-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/GTMAppAuth/GTMAppAuth.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Harmony/Harmony-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Harmony/Harmony-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Harmony/Harmony-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Harmony/Harmony-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Harmony/Harmony-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Harmony/Harmony-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Harmony/Harmony.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Harmony/Harmony.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Harmony/Harmony.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Harmony/Harmony.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Harmony/Harmony.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Harmony/Harmony.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Delta/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Pods-Delta/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Delta/Pods-Delta-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Pods-Delta/Pods-Delta-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Delta/Pods-Delta.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Pods-Delta/Pods-Delta.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Roxas/Roxas.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/Roxas/Roxas.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/SDWebImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/SDWebImage/SDWebImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SMCalloutView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/SMCalloutView/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SQLite.swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/Target Support Files/SQLite.swift/Info.plist -------------------------------------------------------------------------------- /Pods/exported_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Pods/exported_symbols.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AltIcons.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/AltIcons.plist -------------------------------------------------------------------------------- /Resources/AppIcon.icon/Assets/delta_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/AppIcon.icon/Assets/delta_icon.svg -------------------------------------------------------------------------------- /Resources/AppIcon.icon/Assets/delta_shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/AppIcon.icon/Assets/delta_shadow.svg -------------------------------------------------------------------------------- /Resources/AppIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/AppIcon.icon/icon.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/BoxArt.imageset/BoxArt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/BoxArt.imageset/BoxArt.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/BoxArt.imageset/BoxArt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/BoxArt.imageset/BoxArt@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/BoxArt.imageset/BoxArt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/BoxArt.imageset/BoxArt@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/BoxArt.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/BoxArt.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Custom Symbols/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Custom Symbols/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/DS Home Screen.imageset/DS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/DS Home Screen.imageset/DS.pdf -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Delta.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Delta.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Delta.imageset/DeltaSplash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Delta.imageset/DeltaSplash.pdf -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Link.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Link.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Link.imageset/Link@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Link.imageset/Link@1x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Link.imageset/Link@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Link.imageset/Link@2x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Link.imageset/Link@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Link.imageset/Link@3x.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/LinkOut.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/LinkOut.symbolset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/LinkOut.symbolset/LinkOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/LinkOut.symbolset/LinkOut.svg -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Pause Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Pause Icons/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Riley.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Riley.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Riley.imageset/riley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Riley.imageset/riley.jpg -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Shane.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Shane.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Shane.imageset/shane.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Shane.imageset/shane.jpeg -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Social Media/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Assets.xcassets/Social Media/Contents.json -------------------------------------------------------------------------------- /Resources/Contributors.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Contributors.plist -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Classic/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Classic/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Modern/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Modern/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Patrons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Patrons/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Raw/Classic/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Raw/Classic/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Raw/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Raw/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Raw/Modern/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Raw/Modern/Contents.json -------------------------------------------------------------------------------- /Resources/Icons.xcassets/Raw/Patrons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Icons.xcassets/Raw/Patrons/Contents.json -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/00_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/00_stripes.png -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/00_stripes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/00_stripes.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/01_connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/01_connectors.png -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/01_connectors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/01_connectors.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/02_chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/02_chip.png -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/02_chip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/02_chip.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/04_symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/04_symbols.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/delta-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/delta-text.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/logo.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/texture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/texture.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/Assets/thnx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/Assets/thnx.svg -------------------------------------------------------------------------------- /Resources/MicrochipIcon.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/MicrochipIcon.icon/icon.json -------------------------------------------------------------------------------- /Resources/PatreonAPI.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/PatreonAPI.plist -------------------------------------------------------------------------------- /Resources/Profanity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/Profanity.txt -------------------------------------------------------------------------------- /Resources/WhatsNew.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/WhatsNew.plist -------------------------------------------------------------------------------- /Resources/cheatbase.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/cheatbase.zip -------------------------------------------------------------------------------- /Resources/openvgdb.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Resources/openvgdb.sqlite -------------------------------------------------------------------------------- /Systems/Systems.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Systems/Systems.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Systems/Systems.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Systems/Systems.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Systems/Systems/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Systems/Systems/Info.plist -------------------------------------------------------------------------------- /Systems/Systems/Systems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Systems/Systems/Systems.h -------------------------------------------------------------------------------- /Systems/Systems/Systems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Systems/Systems/Systems.swift -------------------------------------------------------------------------------- /Systems/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/Delta/HEAD/Systems/build.sh --------------------------------------------------------------------------------