├── .crowdin.yml ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── feature.yml ├── SECURITY.md ├── SUPPORT.md └── workflows │ ├── build.yml │ ├── no-response.yml │ └── stale.yml ├── .gitignore ├── .periphery.yml ├── .swiftformat ├── .swiftlint.yml ├── .xcode-version ├── Cryptomator.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── AllTests.xcscheme │ ├── Cryptomator.xcscheme │ ├── CryptomatorFileProvider.xcscheme │ ├── CryptomatorIntents.xcscheme │ ├── FileProviderExtension.xcscheme │ ├── FileProviderExtensionUI.xcscheme │ └── Snapshots.xcscheme ├── Cryptomator ├── AddVault │ ├── AddVaultCoordinator.swift │ ├── AddVaultSuccesing.swift │ ├── AddVaultSuccessCoordinator.swift │ ├── AddVaultSuccessViewController.swift │ ├── AddVaultSuccessViewModel.swift │ ├── AddVaultViewController.swift │ ├── ChooseCloudViewController.swift │ ├── ChooseCloudViewModel.swift │ ├── CloudCell.swift │ ├── CloudChoosing.swift │ ├── CreateNewVault │ │ ├── CreateNewVaultChooseFolderViewController.swift │ │ ├── CreateNewVaultChooseFolderViewModel.swift │ │ ├── CreateNewVaultCoordinator.swift │ │ ├── CreateNewVaultPasswordViewController.swift │ │ ├── CreateNewVaultPasswordViewModel.swift │ │ ├── DetectedVaultFailureView.swift │ │ ├── DetectedVaultFailureViewController.swift │ │ ├── LocalVault │ │ │ ├── CreateNewLocalVaultCoordinator.swift │ │ │ └── CreateNewLocalVaultViewModel.swift │ │ ├── SetVaultNameViewController.swift │ │ ├── SetVaultNameViewModel.swift │ │ └── VaultNaming.swift │ ├── Hub │ │ └── HubAddVaultCoordinator.swift │ ├── LocalVault │ │ ├── AddLocalVaultViewController.swift │ │ ├── LocalFileSystemAuthenticating.swift │ │ ├── LocalFileSystemAuthenticationViewController.swift │ │ ├── LocalFileSystemAuthenticationViewModel.swift │ │ └── LocalVaultAdding.swift │ ├── OpenExistingVault │ │ ├── LocalVault │ │ │ ├── OpenExistingLocalVaultCoordinator.swift │ │ │ └── OpenExistingLocalVaultViewModel.swift │ │ ├── OpenExistingLegacyVaultPasswordViewModel.swift │ │ ├── OpenExistingVaultChooseFolderViewController.swift │ │ ├── OpenExistingVaultCoordinator.swift │ │ ├── OpenExistingVaultPasswordViewController.swift │ │ └── OpenExistingVaultPasswordViewModel.swift │ ├── VaultCoordinatorError.swift │ ├── VaultInstallationCoordinator.swift │ └── VaultInstalling.swift ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.storyboard ├── Common │ ├── ActionButton.swift │ ├── AutoHidingLabel.swift │ ├── BaseNavigationController.swift │ ├── BaseUITableViewController.swift │ ├── Bindable.swift │ ├── Cells │ │ ├── BindableTableViewCellViewModel.swift │ │ ├── ButtonCellViewModel.swift │ │ ├── CheckMarkCell.swift │ │ ├── LoadingButtonCell.swift │ │ ├── LoadingButtonCellViewModel.swift │ │ ├── LoadingCell.swift │ │ ├── LoadingWithLabelCell.swift │ │ ├── LoadingWithLabelCellViewModel.swift │ │ ├── PasswordFieldCell.swift │ │ ├── ReturnButtonSupport.swift │ │ ├── SwitchCell.swift │ │ ├── SwitchCellViewModel.swift │ │ ├── SystemSymbolButtonCell.swift │ │ ├── SystemSymbolButtonCellViewModel.swift │ │ ├── TableViewCell.swift │ │ ├── TextFieldCell.swift │ │ ├── TextFieldCellViewModel.swift │ │ ├── URLFieldCell.swift │ │ └── UsernameFieldCell.swift │ ├── ChildCoordinator.swift │ ├── ChooseFolder │ │ ├── ChooseFolderViewController.swift │ │ ├── ChooseFolderViewModel.swift │ │ ├── CloudItemCell.swift │ │ ├── CreateNewFolderViewController.swift │ │ ├── CreateNewFolderViewModel.swift │ │ ├── FileCell.swift │ │ ├── FolderCell.swift │ │ ├── FolderChoosing.swift │ │ └── FolderCreating.swift │ ├── CloudAccountList │ │ ├── AccountCell.swift │ │ ├── AccountCellContent.swift │ │ ├── AccountInfo.swift │ │ ├── AccountListPosition.swift │ │ ├── AccountListViewController.swift │ │ ├── AccountListViewModel.swift │ │ └── AccountListing.swift │ ├── CloudAuthenticator.swift │ ├── CloudProviderType+Localization.swift │ ├── Combine │ │ ├── Publisher+OptionalAssign.swift │ │ ├── UIControl+Publisher.swift │ │ └── UISwitch+Publisher.swift │ ├── DatabaseManager.swift │ ├── DefaultShowEditAccountBehavior.swift │ ├── EditableDataSource.swift │ ├── EditableTableViewHeader.swift │ ├── EmptyListMessage.swift │ ├── FilesAppUtil.swift │ ├── HeaderFooter │ │ ├── AttributedTextHeaderFooterView.swift │ │ ├── AttributedTextHeaderFooterViewModel.swift │ │ ├── BaseHeaderFooterView.swift │ │ ├── BindableAttributedTextHeaderFooterViewModel.swift │ │ └── HeaderFooterViewModel.swift │ ├── ListViewController.swift │ ├── ListViewModel.swift │ ├── LocalWeb │ │ ├── LocalWebViewController.swift │ │ └── LocalWebViewModel.swift │ ├── MaintenanceModeError+Localization.swift │ ├── NSAttributedString+Extension.swift │ ├── PoppingCloseCoordinator.swift │ ├── Previews │ │ ├── UIView+Preview.swift │ │ └── UIViewController+Preview.swift │ ├── SingleSectionTableViewController.swift │ ├── StaticUITableViewController.swift │ ├── TableViewModel.swift │ ├── UIImage+CloudProviderType.swift │ ├── UIViewController+ProgressHUDError.swift │ ├── URL+Zip.swift │ ├── VaultDetailItem.swift │ └── VaultDetector.swift ├── Cryptomator.entitlements ├── Info.plist ├── MainCoordinator.swift ├── MicrosoftGraph │ ├── EnterSharePointURLViewController.swift │ ├── EnterSharePointURLViewModel.swift │ ├── MicrosoftGraphAuthenticatorError+Localization.swift │ ├── OneDriveAuthenticator.swift │ ├── SharePointAuthenticating.swift │ ├── SharePointAuthenticationCoordinator.swift │ ├── SharePointAuthenticator.swift │ ├── SharePointCredential.swift │ ├── SharePointDriveListViewController.swift │ ├── SharePointDriveListViewModel.swift │ └── SharePointURLValidationError+Localization.swift ├── Onboarding │ ├── OnboardingCoordinator.swift │ ├── OnboardingNavigationController.swift │ ├── OnboardingViewController.swift │ └── OnboardingViewModel.swift ├── Purchase │ ├── Cells │ │ ├── DisclosureCell.swift │ │ ├── IAPCell.swift │ │ ├── PurchaseCell.swift │ │ └── TrialCell.swift │ ├── IAPHeaderView.swift │ ├── IAPViewController.swift │ ├── PremiumManager.swift │ ├── PurchaseAlert.swift │ ├── PurchaseCoordinator.swift │ ├── PurchaseFooterView.swift │ ├── PurchaseViewController.swift │ ├── PurchaseViewModel.swift │ ├── SKProduct+LocalizedPrice.swift │ ├── SalePromo.swift │ ├── StoreManager.swift │ ├── StoreObserver.swift │ ├── TrialExpiredCoordinator.swift │ ├── TrialExpiredNavigationController.swift │ └── UpgradeViewModel.swift ├── Resources │ ├── about.html │ ├── jquery-3.6.0.slim.min.js │ └── style.css ├── S3 │ ├── S3Authenticating.swift │ ├── S3AuthenticationView.swift │ ├── S3AuthenticationViewController.swift │ ├── S3AuthenticationViewModel.swift │ ├── S3Authenticator+VC.swift │ └── S3CredentialVerifier.swift ├── Settings │ ├── About │ │ ├── AboutCoordinator.swift │ │ └── AboutViewModel.swift │ ├── SettingsCoordinator.swift │ ├── SettingsViewController.swift │ └── SettingsViewModel.swift ├── Snapshots │ ├── SnapshotCoordinator.swift │ └── SnapshotVaultListViewModel.swift ├── VaultDetail │ ├── ChangePassword │ │ ├── ChangePasswordViewController.swift │ │ ├── ChangePasswordViewModel.swift │ │ └── VaultPasswordChanging.swift │ ├── KeepUnlocked │ │ ├── KeepUnlockedSectionFooterViewModel.swift │ │ ├── VaultKeepUnlockedViewController.swift │ │ └── VaultKeepUnlockedViewModel.swift │ ├── MoveVault │ │ ├── MoveVaultCoordinator.swift │ │ ├── MoveVaultViewController.swift │ │ └── MoveVaultViewModel.swift │ ├── RenameVault │ │ ├── RenameVaultViewController.swift │ │ └── RenameVaultViewModel.swift │ ├── ShareVault │ │ ├── ShareVaultCoordinator.swift │ │ ├── ShareVaultView.swift │ │ ├── ShareVaultViewController.swift │ │ └── ShareVaultViewModel.swift │ ├── UnlockSectionFooterViewModel.swift │ ├── VaultDetailCoordinator.swift │ ├── VaultDetailInfoFooterViewModel.swift │ ├── VaultDetailUnlockCoordinator.swift │ ├── VaultDetailUnlockVaultViewController.swift │ ├── VaultDetailUnlockVaultViewModel.swift │ ├── VaultDetailViewController.swift │ ├── VaultDetailViewModel.swift │ └── VaultPasswordVerifying.swift ├── VaultList │ ├── VaultCell.swift │ ├── VaultCellViewModel.swift │ ├── VaultInfo.swift │ ├── VaultListPosition.swift │ ├── VaultListViewController.swift │ └── VaultListViewModel.swift └── WebDAV │ ├── TLSCertificateValidationHelper.swift │ ├── WebDAVAuthenticating.swift │ ├── WebDAVAuthentication.swift │ ├── WebDAVAuthenticationCoordinator.swift │ ├── WebDAVAuthenticationViewController.swift │ ├── WebDAVAuthenticationViewModel.swift │ ├── WebDAVAuthenticator+VC.swift │ └── WebDAVCredentialCoordinator.swift ├── CryptomatorCommon ├── .swiftpm │ └── xcode │ │ ├── package.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── CryptomatorCommon.xcscheme │ │ └── CryptomatorCommonCore.xcscheme ├── Package.swift ├── Sources │ ├── CryptomatorCommon │ │ └── CryptomatorHubAuthenticator+HubAuthenticating.swift │ └── CryptomatorCommonCore │ │ ├── Box │ │ └── BoxTokenStorage.swift │ │ ├── CloudPath+Contains.swift │ │ ├── Coordinator.swift │ │ ├── CryptoBotHeaderFooterView.swift │ │ ├── CryptomatorConstants.swift │ │ ├── CryptomatorDatabase.swift │ │ ├── CryptomatorErrorView.swift │ │ ├── CryptomatorKeychain.swift │ │ ├── CryptomatorSimpleButtonView.swift │ │ ├── CryptomatorUserDefaults.swift │ │ ├── FileProviderXPC │ │ ├── CacheManaging.swift │ │ ├── FileImporting.swift │ │ ├── FileProviderConnector.swift │ │ ├── LogLevelUpdating.swift │ │ ├── MaintenanceModeHelper.swift │ │ ├── UploadRetrying.swift │ │ ├── VaultLocking.swift │ │ ├── VaultUnlocking.swift │ │ └── XPCErrorHelper.swift │ │ ├── FullVersionChecker.swift │ │ ├── Hub │ │ ├── CryptomatorHubAuthenticator.swift │ │ ├── CryptomatorHubKeyProvider.swift │ │ ├── HubAuthenticating.swift │ │ ├── HubAuthenticationCoordinator.swift │ │ ├── HubAuthenticationFlowDelegate.swift │ │ ├── HubAuthenticationView.swift │ │ ├── HubAuthenticationViewController.swift │ │ ├── HubAuthenticationViewModel.swift │ │ ├── HubDeviceRegisteringService.swift │ │ ├── HubDeviceRegistrationView.swift │ │ ├── HubErrorWithRefreshView.swift │ │ ├── HubKeyService.swift │ │ ├── HubRepository.swift │ │ ├── HubSubscriptionState.swift │ │ ├── HubUserAuthenticator.swift │ │ ├── HubUserLogin.swift │ │ ├── HubXPCLoginCoordinator.swift │ │ └── UnlockHandler │ │ │ ├── AddHubVaultUnlockHandler.swift │ │ │ ├── HubVaultUnlockHandler.swift │ │ │ └── HubXPCVaultUnlockHandler.swift │ │ ├── ItemNameValidator.swift │ │ ├── JWEHelper.swift │ │ ├── KeepUnlockedDuration.swift │ │ ├── LargeHeaderFooterView.swift │ │ ├── LocalAuthentication+Localization.swift │ │ ├── LocalFileSystem │ │ └── LocalFileSystemBookmarkManager.swift │ │ ├── LocalizedCloudProviderDecorator.swift │ │ ├── LocalizedCloudProviderError.swift │ │ ├── LocalizedString.swift │ │ ├── LoggerSetup.swift │ │ ├── Manager │ │ ├── CloudProviderAccountDBManager.swift │ │ ├── CloudProviderDBManager.swift │ │ ├── CloudProviderType.swift │ │ ├── ExistingHubVault.swift │ │ ├── MasterkeyCacheManager.swift │ │ ├── VaultAccountDBManager.swift │ │ ├── VaultDBCache.swift │ │ ├── VaultDBManager.swift │ │ ├── VaultKeepUnlockedManager.swift │ │ └── VaultPasswordManager.swift │ │ ├── MicrosoftGraph │ │ └── MicrosoftGraphAccountDBManager.swift │ │ ├── Mocks │ │ ├── CacheManagingMock.swift │ │ ├── CloudProviderMock.swift │ │ ├── CloudProviderUpdatingMock.swift │ │ ├── CryptomatorKeychainMock.swift │ │ ├── CryptomatorSettingsMock.swift │ │ ├── FileProviderConnectorMock.swift │ │ ├── FullVersionCheckerMock.swift │ │ ├── HubRepositoryMock.swift │ │ ├── MaintenanceModeHelperMock.swift │ │ ├── MasterkeyCacheHelperMock.swift │ │ ├── MasterkeyCacheManagerMock.swift │ │ ├── S3CredentialManagerMock.swift │ │ ├── UpgradeCheckerMock.swift │ │ ├── VaultCacheMock.swift │ │ ├── VaultKeepUnlockedHelperMock.swift │ │ ├── VaultKeepUnlockedSettingsMock.swift │ │ ├── VaultManagerMock.swift │ │ ├── VaultPasswordManagerMock.swift │ │ └── WebDAVCredentialManagerMock.swift │ │ ├── NSLayoutConstraint+Extensions.swift │ │ ├── PCloud │ │ └── PCloudCredential+Keychain.swift │ │ ├── ProgressHUD.swift │ │ ├── Promise+AllIgnoringResult.swift │ │ ├── Promise+StructuredConcurrency.swift │ │ ├── S3 │ │ ├── CryptomatorKeychain+S3.swift │ │ └── S3CredentialManager.swift │ │ ├── SwiftUI │ │ ├── SwiftUI+CustomKeyboard.swift │ │ ├── SwiftUI+Focus.swift │ │ └── SwiftUI+ListBackground.swift │ │ ├── UIColor+CryptomatorColors.swift │ │ ├── UIView+Shaking.swift │ │ ├── URLSessionError+Localization.swift │ │ ├── UpgradeChecker.swift │ │ ├── VaultAccountManagerError+Localization.swift │ │ ├── VaultItem.swift │ │ ├── VaultProviderFactory+Localization.swift │ │ └── WebDAV │ │ ├── WebDAVAuthenticator+Keychain.swift │ │ └── WebDAVAuthenticatorError+Localization.swift └── Tests │ └── CryptomatorCommonCoreTests │ ├── FullVersionCheckerTests.swift │ ├── Hub │ ├── AddHubVaultUnlockHandlerTests.swift │ ├── HubAuthenticationViewModelTests.swift │ ├── HubDBRepositoryTests.swift │ ├── HubVaultUnlockHandlerDelegateMock.swift │ └── JWEHelperTests.swift │ ├── ItemNameValidatorTests.swift │ ├── Manager │ ├── CloudProviderAccountManagerTests.swift │ ├── CloudProviderManagerTests.swift │ ├── MasterkeyCacheKeychainManagerTests.swift │ ├── S3CredentialManagerTests.swift │ ├── VaultDBCacheTests.swift │ ├── VaultKeepUnlockedManagerTests.swift │ └── VaultManagerTests.swift │ ├── Promise+AllIgnoringResultsTests.swift │ └── XCTestCase+Promises.swift ├── CryptomatorCommonHostedTests ├── Info.plist └── Keychain │ ├── PCloudKeychainTests.swift │ ├── VaultPasswordKeychainManagerTests.swift │ └── WebDAVKeychainTests.swift ├── CryptomatorFileProvider ├── Actions │ └── FileProviderAction.swift ├── CachedFileManagerFactory.swift ├── CloudPath+GetParent.swift ├── CloudPath+NameCollision.swift ├── CloudTask │ ├── CloudTask.swift │ ├── DeletionTask.swift │ ├── DownloadTask.swift │ ├── FolderCreationTask.swift │ ├── ItemEnumerationTask.swift │ ├── ReparentTask.swift │ └── UploadTask.swift ├── CryptomatorFileProvider.h ├── DB │ ├── CachedFileDBManager.swift │ ├── DBManagerError.swift │ ├── DatabaseHelper.swift │ ├── DeletionTaskDBManager.swift │ ├── DeletionTaskRecord.swift │ ├── DownloadTaskDBManager.swift │ ├── DownloadTaskRecord.swift │ ├── ItemEnumerationTaskDBManager.swift │ ├── ItemEnumerationTaskRecord.swift │ ├── ItemMetadata.swift │ ├── ItemMetadataDBManager.swift │ ├── LocalCachedFileInfo.swift │ ├── MaintenanceDBManager.swift │ ├── ReparentTaskDBManager.swift │ ├── ReparentTaskRecord.swift │ ├── TaskError.swift │ ├── UploadTaskDBManager.swift │ ├── UploadTaskRecord.swift │ └── WorkingSetObserver.swift ├── DatabaseURLProvider.swift ├── DeleteItemHelper.swift ├── DocumentStorageURLProvider.swift ├── ErrorWrapper.swift ├── FileProviderAdapter.swift ├── FileProviderAdapterError.swift ├── FileProviderAdapterManager.swift ├── FileProviderEnumerator.swift ├── FileProviderItem.swift ├── FileProviderItemList.swift ├── FileProviderNotificator.swift ├── FileProviderNotificatorManager.swift ├── ItemStatus.swift ├── LocalURLProviderType.swift ├── Locks │ ├── FileSystemLock.swift │ ├── LockManager.swift │ ├── LockNode.swift │ └── RWLock.swift ├── Middleware │ ├── ErrorMapper.swift │ ├── OnlineItemNameCollisionHandler.swift │ ├── TaskExecutor │ │ ├── DeletionTaskExecutor.swift │ │ ├── DownloadTaskExecutor.swift │ │ ├── FolderCreationTaskExecutor.swift │ │ ├── ItemEnumerationTaskExecutor.swift │ │ ├── ReparentTaskExecutor.swift │ │ └── UploadTaskExecutor.swift │ └── WorkflowMiddleware.swift ├── NSFileProviderDomainProvider.swift ├── NSFileProviderItemIdentifier+Database.swift ├── PermissionProvider.swift ├── ProgressManager.swift ├── RootFileProviderItem.swift ├── ServiceSource │ ├── CacheManagingServiceSource.swift │ ├── FileImportingServiceSource.swift │ ├── LogLevelUpdatingServiceSource.swift │ ├── MaintenanceModeHelperServiceSource.swift │ ├── ServiceSource.swift │ ├── UploadRetryingServiceSource.swift │ ├── VaultLockingServiceSource.swift │ └── VaultUnlockingServiceSource.swift ├── SessionTaskRegistrator.swift ├── URL+NameCollisionExtension.swift ├── UnlockMonitor.swift ├── VaultUnlockingServiceSource.swift └── Workflow │ ├── Workflow.swift │ ├── WorkflowConstraint.swift │ ├── WorkflowDependencyFactory.swift │ ├── WorkflowDependencyMiddleware.swift │ ├── WorkflowDependencyTaskCollection.swift │ ├── WorkflowFactory.swift │ ├── WorkflowFactoryLocking.swift │ └── WorkflowScheduler.swift ├── CryptomatorFileProviderTests ├── CloudPath+NameCollision.swift ├── DB │ ├── CachedFileManagerTests.swift │ ├── DeletionTaskManagerTests.swift │ ├── DownloadTaskManagerTests.swift │ ├── ItemEnumerationTaskManagerTests.swift │ ├── MaintenanceManagerTests.swift │ ├── MetadataManagerTests.swift │ ├── ReparentTaskManagerTests.swift │ └── UploadTaskManagerTests.swift ├── FileImportingServiceSourceTests.swift ├── FileProviderAdapter │ ├── FileProviderAdapterCreateDirectoryTests.swift │ ├── FileProviderAdapterDeleteItemTests.swift │ ├── FileProviderAdapterEnumerateItemTests.swift │ ├── FileProviderAdapterGetItemIdentifierTests.swift │ ├── FileProviderAdapterGetItemTests.swift │ ├── FileProviderAdapterImportDirectoryTests.swift │ ├── FileProviderAdapterImportDocumentTests.swift │ ├── FileProviderAdapterMoveItemTests.swift │ ├── FileProviderAdapterSetFavoriteRankTests.swift │ ├── FileProviderAdapterSetTagDataTests.swift │ ├── FileProviderAdapterStartProvidingItemRestrictedVersionTests.swift │ ├── FileProviderAdapterStartProvidingItemTests.swift │ └── FileProviderAdapterTestCase.swift ├── FileProviderAdapterManagerTests.swift ├── FileProviderEnumeratorTests.swift ├── FileProviderItemTests.swift ├── FileProviderNotificatorTests.swift ├── InMemoryProgressManagerTests.swift ├── Info.plist ├── LocalURLProviderTests.swift ├── Middleware │ ├── ErrorMapperTests.swift │ ├── OnlineItemNameCollisionHandlerTests.swift │ ├── TaskExecutor │ │ ├── CloudTaskExecutorTestCase.swift │ │ ├── DeletionTaskExecutorTests.swift │ │ ├── DownloadTaskExecutorTests.swift │ │ ├── FolderCreationTaskExecutorTests.swift │ │ ├── ItemEnumerationTaskTests.swift │ │ ├── ReparentTaskExecutorTests.swift │ │ └── UploadTaskExecutorTests.swift │ └── WorkflowMiddlewareMock.swift ├── Mocks │ ├── CacheManagerMock.swift │ ├── CachedFileManagerFactoryMock.swift │ ├── CloudProviderPaginationMock.swift │ ├── CustomCloudProviderMock.swift │ ├── CustomCloudProviderMockTests.swift │ ├── DocumentStorageURLProviderMock.swift │ ├── EnumerationSignalingMock.swift │ ├── FileProviderAdapterCacheTypeMock.swift │ ├── FileProviderAdapterProvidingMock.swift │ ├── FileProviderAdapterTypeMock.swift │ ├── FileProviderItemUpdateDelegateMock.swift │ ├── FileProviderNotificatorManagerMock.swift │ ├── FileProviderNotificatorMock.swift │ ├── LocalURLProviderMock.swift │ ├── MaintenanceManagerMock.swift │ ├── NSFileProviderChangeObserverMock.swift │ ├── NSFileProviderDomainProviderMock.swift │ ├── NSFileProviderEnumerationObserverMock.swift │ ├── PermissionProviderMock.swift │ ├── ProgressManagerMock.swift │ ├── SessionTaskRegistratorMock.swift │ ├── UnlockMonitorTaskExecutorMock.swift │ ├── UploadTaskManagerMock.swift │ ├── WorkflowDependencyTasksCollectionMock.swift │ └── WorkingSetObservingMock.swift ├── PermissionProviderImplTests.swift ├── ServiceSource │ ├── CacheManagingServiceSourceTests.swift │ ├── LogLevelUpdatingServiceSourceTests.swift │ └── UploadRetryingServiceSourceTests.swift ├── URL+NameCollisionExtensionTests.swift ├── UnlockMonitorTests.swift ├── WorkflowDependencyFactoryTests.swift ├── WorkingSetEnumerationTests.swift ├── WorkingSetObserverTests.swift └── XCTestCase+Promises.swift ├── CryptomatorIntents ├── Base.lproj │ └── Intents.intentdefinition ├── Common │ └── VaultOptionsProvider.swift ├── CryptomatorIntents.entitlements ├── GetFolderIntentHandler.swift ├── GetFolderIntentHandlerError.swift ├── Info.plist ├── IntentHandler.swift ├── IsVaultUnlockedIntentHandler.swift ├── LockVaultIntentHandler.swift ├── OpenVaultIntentHandler.swift ├── SaveFileIntentHandler.swift ├── af.lproj │ └── Intents.strings ├── ar.lproj │ └── Intents.strings ├── ba.lproj │ └── Intents.strings ├── be.lproj │ └── Intents.strings ├── bg.lproj │ └── Intents.strings ├── bn.lproj │ └── Intents.strings ├── bs.lproj │ └── Intents.strings ├── ca.lproj │ └── Intents.strings ├── cs.lproj │ └── Intents.strings ├── da.lproj │ └── Intents.strings ├── de.lproj │ └── Intents.strings ├── el.lproj │ └── Intents.strings ├── en.lproj │ └── Intents.strings ├── es.lproj │ └── Intents.strings ├── fa.lproj │ └── Intents.strings ├── fi.lproj │ └── Intents.strings ├── fil.lproj │ └── Intents.strings ├── fr.lproj │ └── Intents.strings ├── gl.lproj │ └── Intents.strings ├── he.lproj │ └── Intents.strings ├── hi.lproj │ └── Intents.strings ├── hr.lproj │ └── Intents.strings ├── hu.lproj │ └── Intents.strings ├── id.lproj │ └── Intents.strings ├── it.lproj │ └── Intents.strings ├── ja.lproj │ └── Intents.strings ├── ko.lproj │ └── Intents.strings ├── lv.lproj │ └── Intents.strings ├── mk.lproj │ └── Intents.strings ├── mr.lproj │ └── Intents.strings ├── nb.lproj │ └── Intents.strings ├── nl.lproj │ └── Intents.strings ├── nn-NO.lproj │ └── Intents.strings ├── no.lproj │ └── Intents.strings ├── pa.lproj │ └── Intents.strings ├── pl.lproj │ └── Intents.strings ├── pt-BR.lproj │ └── Intents.strings ├── pt.lproj │ └── Intents.strings ├── ro.lproj │ └── Intents.strings ├── ru.lproj │ └── Intents.strings ├── si.lproj │ └── Intents.strings ├── sk.lproj │ └── Intents.strings ├── sl.lproj │ └── Intents.strings ├── sr-Latn.lproj │ └── Intents.strings ├── sr.lproj │ └── Intents.strings ├── sv.lproj │ └── Intents.strings ├── sw-TZ.lproj │ └── Intents.strings ├── ta.lproj │ └── Intents.strings ├── te.lproj │ └── Intents.strings ├── th.lproj │ └── Intents.strings ├── tr.lproj │ └── Intents.strings ├── ug.lproj │ └── Intents.strings ├── uk.lproj │ └── Intents.strings ├── ur.lproj │ └── Intents.strings ├── vi.lproj │ └── Intents.strings ├── zh-HK.lproj │ └── Intents.strings ├── zh-Hans.lproj │ └── Intents.strings └── zh-Hant.lproj │ └── Intents.strings ├── CryptomatorTests ├── AccountListViewModelTests.swift ├── AddLocalVault │ ├── AddLocalVaultViewModelTestCase.swift │ ├── CreateNewLocalVaultViewModelTests.swift │ └── OpenExistingLocalVaultViewModelTests.swift ├── ChangePasswordViewModelTests.swift ├── CreateNewFolderViewModelTests.swift ├── CreateNewVaultPasswordViewModelTests.swift ├── DatabaseManagerTests.swift ├── FileProviderConnectorMock.swift ├── Info.plist ├── MockError.swift ├── Mocks │ ├── IAPManagerMock.swift │ ├── IAPStoreMock.swift │ ├── PremiumManagerMock.swift │ ├── S3CredentialVerifierMock.swift │ └── TLSCertificateValidationHelperMock.swift ├── MoveVaultViewModelTests.swift ├── Purchase │ ├── IAPViewModelTestCase.swift │ ├── PurchaseViewModelTests.swift │ ├── StoreObserverTests.swift │ └── UpgradeViewModelTests.swift ├── RenameVaultViewModelTests.swift ├── S3AuthenticationViewModelTests.swift ├── SetVaultNameViewModelTests.swift ├── SettingsViewModelTests.swift ├── VaultKeepUnlockedViewModelTests.swift ├── VaultListViewModelTests.swift ├── WebDAVAuthenticationViewModelTests.swift ├── XCTest+Async.swift ├── XCTest+Combine.swift └── XCTestCase+Promises.swift ├── FileProviderExtension ├── FileProvider+Actions.swift ├── FileProviderExtension-Bridging-Header.h ├── FileProviderExtension.entitlements ├── FileProviderExtension.swift ├── FileProviderValidationServiceSource.h ├── FileProviderValidationServiceSource.m ├── Info.plist └── Snapshots │ ├── FileProviderEnumeratorSnapshotMock.swift │ └── VaultUnlockingServiceSourceSnapshotMock.swift ├── FileProviderExtensionUI ├── FileProviderCoordinator.swift ├── FileProviderCoordinatorError.swift ├── FileProviderExtensionUI.entitlements ├── Info.plist ├── OnboardingViewController.swift ├── RootViewController.swift ├── Snapshots │ └── FileProviderCoordinatorSnapshotMock.swift ├── UnauthorizedErrorViewController.swift ├── UnlockVaultViewController.swift ├── UnlockVaultViewModel.swift └── UploadProgressAlertController.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Scripts ├── git-format-staged.py ├── process.sh └── xccov-to-sonarqube-generic.sh ├── SharedResources ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── DarkIcon.png │ │ ├── LightIcon.png │ │ └── TintedIcon.png │ ├── Contents.json │ ├── bot-vault.imageset │ │ ├── Contents.json │ │ ├── bot-vault.png │ │ ├── bot-vault@2x.png │ │ └── bot-vault@3x.png │ ├── bot.imageset │ │ ├── Contents.json │ │ ├── bot.png │ │ ├── bot@2x.png │ │ └── bot@3x.png │ ├── box-vault-selected.imageset │ │ ├── Contents.json │ │ ├── box-vault-selected.png │ │ ├── box-vault-selected@2x.png │ │ └── box-vault-selected@3x.png │ ├── box-vault.imageset │ │ ├── Contents.json │ │ ├── box-vault.png │ │ ├── box-vault@2x.png │ │ └── box-vault@3x.png │ ├── box.imageset │ │ ├── Contents.json │ │ ├── box.png │ │ ├── box@2.png │ │ └── box@3.png │ ├── cryptomator-hub-logo.imageset │ │ ├── Contents.json │ │ ├── cryptomator-hub-logo@1x.png │ │ ├── cryptomator-hub-logo@2x.png │ │ └── cryptomator-hub-logo@3x.png │ ├── cryptomator-hub.imageset │ │ ├── Contents.json │ │ ├── cryptomator-hub@1x.png │ │ ├── cryptomator-hub@2x.png │ │ └── cryptomator-hub@3x.png │ ├── dropbox-vault-selected.imageset │ │ ├── Contents.json │ │ ├── dropbox-vault-selected.png │ │ ├── dropbox-vault-selected@2x.png │ │ └── dropbox-vault-selected@3x.png │ ├── dropbox-vault.imageset │ │ ├── Contents.json │ │ ├── dropbox-vault.png │ │ ├── dropbox-vault@2x.png │ │ └── dropbox-vault@3x.png │ ├── dropbox.imageset │ │ ├── Contents.json │ │ ├── dropbox.png │ │ ├── dropbox@2x.png │ │ └── dropbox@3x.png │ ├── file-provider-vault-selected.imageset │ │ ├── Contents.json │ │ ├── file-provider-vault-selected.png │ │ ├── file-provider-vault-selected@2x.png │ │ └── file-provider-vault-selected@3x.png │ ├── file-provider-vault.imageset │ │ ├── Contents.json │ │ ├── file-provider-vault.png │ │ ├── file-provider-vault@2x.png │ │ └── file-provider-vault@3x.png │ ├── file-provider.imageset │ │ ├── Contents.json │ │ ├── file-provider.png │ │ ├── file-provider@2x.png │ │ └── file-provider@3x.png │ ├── google-drive-vault-selected.imageset │ │ ├── Contents.json │ │ ├── google-drive-vault-selected.png │ │ ├── google-drive-vault-selected@2x.png │ │ └── google-drive-vault-selected@3x.png │ ├── google-drive-vault.imageset │ │ ├── Contents.json │ │ ├── google-drive-vault.png │ │ ├── google-drive-vault@2x.png │ │ └── google-drive-vault@3x.png │ ├── google-drive.imageset │ │ ├── Contents.json │ │ ├── google-drive.png │ │ ├── google-drive@2x.png │ │ └── google-drive@3x.png │ ├── icloud-drive-vault-selected.imageset │ │ ├── Contents.json │ │ ├── icloud-drive-vault-selected.png │ │ ├── icloud-drive-vault-selected@2x.png │ │ └── icloud-drive-vault-selected@3x.png │ ├── icloud-drive-vault.imageset │ │ ├── Contents.json │ │ ├── icloud-drive-vault.png │ │ ├── icloud-drive-vault@2x.png │ │ └── icloud-drive-vault@3x.png │ ├── icloud-drive.imageset │ │ ├── Contents.json │ │ ├── icloud-drive.png │ │ ├── icloud-drive@2x.png │ │ └── icloud-drive@3x.png │ ├── onedrive-vault-selected.imageset │ │ ├── Contents.json │ │ ├── onedrive-vault-selected.png │ │ ├── onedrive-vault-selected@2x.png │ │ └── onedrive-vault-selected@3x.png │ ├── onedrive-vault.imageset │ │ ├── Contents.json │ │ ├── onedrive-vault.png │ │ ├── onedrive-vault@2x.png │ │ └── onedrive-vault@3x.png │ ├── onedrive.imageset │ │ ├── Contents.json │ │ ├── onedrive.png │ │ ├── onedrive@2x.png │ │ └── onedrive@3x.png │ ├── pcloud-vault-selected.imageset │ │ ├── Contents.json │ │ ├── pcloud-vault-selected.png │ │ ├── pcloud-vault-selected@2x.png │ │ └── pcloud-vault-selected@3x.png │ ├── pcloud-vault.imageset │ │ ├── Contents.json │ │ ├── pcloud-vault.png │ │ ├── pcloud-vault@2x.png │ │ └── pcloud-vault@3x.png │ ├── pcloud.imageset │ │ ├── Contents.json │ │ ├── pcloud.png │ │ ├── pcloud@2x.png │ │ └── pcloud@3x.png │ ├── s3-vault-selected.imageset │ │ ├── Contents.json │ │ ├── s3-vault-selected.png │ │ ├── s3-vault-selected@2x.png │ │ └── s3-vault-selected@3x.png │ ├── s3-vault.imageset │ │ ├── Contents.json │ │ ├── s3-vault.png │ │ ├── s3-vault@2x.png │ │ └── s3-vault@3x.png │ ├── s3.imageset │ │ ├── Contents.json │ │ ├── s3.png │ │ ├── s3@2x.png │ │ └── s3@3x.png │ ├── sharepoint-selected.imageset │ │ ├── Contents.json │ │ ├── sharepoint-vault-selected.png │ │ ├── sharepoint-vault-selected@2x.png │ │ └── sharepoint-vault-selected@3x.png │ ├── sharepoint-vault.imageset │ │ ├── Contents.json │ │ ├── sharepoint-vault.png │ │ ├── sharepoint-vault@2x.png │ │ └── sharepoint-vault@3x.png │ ├── sharepoint.imageset │ │ ├── Contents.json │ │ ├── sharepoint.png │ │ ├── sharepoint@2x.png │ │ └── sharepoint@3x.png │ ├── webdav-vault-selected.imageset │ │ ├── Contents.json │ │ ├── webdav-vault-selected.png │ │ ├── webdav-vault-selected@2x.png │ │ └── webdav-vault-selected@3x.png │ ├── webdav-vault.imageset │ │ ├── Contents.json │ │ ├── webdav-vault.png │ │ ├── webdav-vault@2x.png │ │ └── webdav-vault@3x.png │ └── webdav.imageset │ │ ├── Contents.json │ │ ├── webdav.png │ │ ├── webdav@2x.png │ │ └── webdav@3x.png ├── Colors.xcassets │ ├── Contents.json │ ├── background.colorset │ │ └── Contents.json │ ├── primary.colorset │ │ └── Contents.json │ └── yellow.colorset │ │ └── Contents.json ├── PrivacyInfo.xcprivacy ├── af.lproj │ └── Localizable.strings ├── ar.lproj │ └── Localizable.strings ├── ba.lproj │ └── Localizable.strings ├── be.lproj │ └── Localizable.strings ├── bg.lproj │ └── Localizable.strings ├── bn.lproj │ └── Localizable.strings ├── bs.lproj │ └── Localizable.strings ├── ca.lproj │ └── Localizable.strings ├── cs.lproj │ └── Localizable.strings ├── da.lproj │ └── Localizable.strings ├── de.lproj │ └── Localizable.strings ├── el.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── fa.lproj │ └── Localizable.strings ├── fi.lproj │ └── Localizable.strings ├── fil.lproj │ └── Localizable.strings ├── fr.lproj │ └── Localizable.strings ├── gl.lproj │ └── Localizable.strings ├── he.lproj │ └── Localizable.strings ├── hi.lproj │ └── Localizable.strings ├── hr.lproj │ └── Localizable.strings ├── hu.lproj │ └── Localizable.strings ├── id.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── ko.lproj │ └── Localizable.strings ├── lv.lproj │ └── Localizable.strings ├── mk.lproj │ └── Localizable.strings ├── mr.lproj │ └── Localizable.strings ├── nb.lproj │ └── Localizable.strings ├── nl.lproj │ └── Localizable.strings ├── nn-NO.lproj │ └── Localizable.strings ├── no.lproj │ └── Localizable.strings ├── pa.lproj │ └── Localizable.strings ├── pl.lproj │ └── Localizable.strings ├── pt-BR.lproj │ └── Localizable.strings ├── pt.lproj │ └── Localizable.strings ├── ro.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── si.lproj │ └── Localizable.strings ├── sk.lproj │ └── Localizable.strings ├── sl.lproj │ └── Localizable.strings ├── sr-CS.lproj │ └── Localizable.strings ├── sr-Latn.lproj │ └── Localizable.strings ├── sr.lproj │ └── Localizable.strings ├── sv.lproj │ └── Localizable.strings ├── sw-TZ.lproj │ └── Localizable.strings ├── ta.lproj │ └── Localizable.strings ├── te.lproj │ └── Localizable.strings ├── th.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── ug.lproj │ └── Localizable.strings ├── uk.lproj │ └── Localizable.strings ├── ur.lproj │ └── Localizable.strings ├── vi.lproj │ └── Localizable.strings ├── zh-HK.lproj │ └── Localizable.strings ├── zh-Hans.lproj │ └── Localizable.strings └── zh-Hant.lproj │ └── Localizable.strings ├── Snapshots ├── SnapshotBiometrics.h ├── SnapshotBiometrics.m ├── SnapshotHelper.swift ├── Snapshots-Bridging-Header.h └── Snapshots.swift ├── StoreKitTestConfiguration ├── Configuration.storekit └── StoreKitTestCertificate.cer ├── fastlane ├── .env.freemium ├── .env.premium ├── Appfile ├── Deliverfile ├── Fastfile ├── Gymfile ├── Matchfile ├── README.md ├── Scanfile ├── Snapfile ├── beta_app_description.txt ├── changelog.txt ├── config │ ├── freemium │ │ ├── DarkIcon.png │ │ ├── LightIcon.png │ │ ├── TintedIcon.png │ │ └── metadata │ │ │ ├── copyright.txt │ │ │ ├── de-DE │ │ │ ├── description.txt │ │ │ ├── marketing_url.txt │ │ │ ├── privacy_url.txt │ │ │ ├── release_notes.txt │ │ │ └── support_url.txt │ │ │ ├── default │ │ │ ├── keywords.txt │ │ │ ├── name.txt │ │ │ └── subtitle.txt │ │ │ ├── en-US │ │ │ ├── description.txt │ │ │ ├── marketing_url.txt │ │ │ ├── privacy_url.txt │ │ │ ├── release_notes.txt │ │ │ └── support_url.txt │ │ │ ├── primary_category.txt │ │ │ └── secondary_category.txt │ └── premium │ │ ├── DarkIcon.png │ │ ├── LightIcon.png │ │ ├── TintedIcon.png │ │ └── metadata │ │ ├── copyright.txt │ │ ├── de-DE │ │ ├── description.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ │ ├── default │ │ └── keywords.txt │ │ ├── en-US │ │ ├── description.txt │ │ ├── marketing_url.txt │ │ ├── name.txt │ │ ├── privacy_url.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ │ ├── primary_category.txt │ │ └── secondary_category.txt └── scripts │ ├── create-app-constants.sh │ ├── create-app-icon.sh │ ├── create-cloud-access-secrets.sh │ └── iap-pricing.sh └── sonar-project.properties /.crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.crowdin.yml -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.periphery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.periphery.yml -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 26.0.1 2 | -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/AllTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/AllTests.xcscheme -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/Cryptomator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/Cryptomator.xcscheme -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/CryptomatorFileProvider.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/CryptomatorFileProvider.xcscheme -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/CryptomatorIntents.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/CryptomatorIntents.xcscheme -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/FileProviderExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/FileProviderExtension.xcscheme -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/FileProviderExtensionUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/FileProviderExtensionUI.xcscheme -------------------------------------------------------------------------------- /Cryptomator.xcodeproj/xcshareddata/xcschemes/Snapshots.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator.xcodeproj/xcshareddata/xcschemes/Snapshots.xcscheme -------------------------------------------------------------------------------- /Cryptomator/AddVault/AddVaultCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/AddVaultCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/AddVaultSuccesing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/AddVaultSuccesing.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/AddVaultSuccessCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/AddVaultSuccessCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/AddVaultSuccessViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/AddVaultSuccessViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/AddVaultSuccessViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/AddVaultSuccessViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/AddVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/AddVaultViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/ChooseCloudViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/ChooseCloudViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/ChooseCloudViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/ChooseCloudViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CloudCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CloudCell.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CloudChoosing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CloudChoosing.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/CreateNewVaultChooseFolderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/CreateNewVaultChooseFolderViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/CreateNewVaultCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/CreateNewVaultCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/CreateNewVaultPasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/CreateNewVaultPasswordViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/CreateNewVaultPasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/CreateNewVaultPasswordViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/DetectedVaultFailureView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/DetectedVaultFailureView.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/DetectedVaultFailureViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/DetectedVaultFailureViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/LocalVault/CreateNewLocalVaultViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/LocalVault/CreateNewLocalVaultViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/SetVaultNameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/SetVaultNameViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/SetVaultNameViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/SetVaultNameViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/CreateNewVault/VaultNaming.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/CreateNewVault/VaultNaming.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/Hub/HubAddVaultCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/Hub/HubAddVaultCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/LocalVault/AddLocalVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/LocalVault/AddLocalVaultViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/LocalVault/LocalFileSystemAuthenticating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/LocalVault/LocalFileSystemAuthenticating.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/LocalVault/LocalFileSystemAuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/LocalVault/LocalFileSystemAuthenticationViewController.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/LocalVault/LocalFileSystemAuthenticationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/LocalVault/LocalFileSystemAuthenticationViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/LocalVault/LocalVaultAdding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/LocalVault/LocalVaultAdding.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/OpenExistingVault/OpenExistingVaultCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/OpenExistingVault/OpenExistingVaultCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/OpenExistingVault/OpenExistingVaultPasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/OpenExistingVault/OpenExistingVaultPasswordViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/VaultCoordinatorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/VaultCoordinatorError.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/VaultInstallationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/VaultInstallationCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/AddVault/VaultInstalling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AddVault/VaultInstalling.swift -------------------------------------------------------------------------------- /Cryptomator/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/AppDelegate.swift -------------------------------------------------------------------------------- /Cryptomator/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Cryptomator/Common/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ActionButton.swift -------------------------------------------------------------------------------- /Cryptomator/Common/AutoHidingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/AutoHidingLabel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/BaseNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/BaseNavigationController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/BaseUITableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/BaseUITableViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Bindable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Bindable.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/BindableTableViewCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/BindableTableViewCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/ButtonCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/ButtonCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/CheckMarkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/CheckMarkCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/LoadingButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/LoadingButtonCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/LoadingButtonCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/LoadingButtonCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/LoadingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/LoadingCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/LoadingWithLabelCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/LoadingWithLabelCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/LoadingWithLabelCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/LoadingWithLabelCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/PasswordFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/PasswordFieldCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/ReturnButtonSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/ReturnButtonSupport.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/SwitchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/SwitchCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/SwitchCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/SwitchCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/SystemSymbolButtonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/SystemSymbolButtonCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/SystemSymbolButtonCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/SystemSymbolButtonCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/TableViewCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/TextFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/TextFieldCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/TextFieldCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/TextFieldCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/URLFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/URLFieldCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Cells/UsernameFieldCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Cells/UsernameFieldCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChildCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChildCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/ChooseFolderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/ChooseFolderViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/ChooseFolderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/ChooseFolderViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/CloudItemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/CloudItemCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/CreateNewFolderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/CreateNewFolderViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/CreateNewFolderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/CreateNewFolderViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/FileCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/FileCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/FolderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/FolderCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/FolderChoosing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/FolderChoosing.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ChooseFolder/FolderCreating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ChooseFolder/FolderCreating.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountCell.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountCellContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountCellContent.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountInfo.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountListPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountListPosition.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountListViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountListViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAccountList/AccountListing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAccountList/AccountListing.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudAuthenticator.swift -------------------------------------------------------------------------------- /Cryptomator/Common/CloudProviderType+Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/CloudProviderType+Localization.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Combine/Publisher+OptionalAssign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Combine/Publisher+OptionalAssign.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Combine/UIControl+Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Combine/UIControl+Publisher.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Combine/UISwitch+Publisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Combine/UISwitch+Publisher.swift -------------------------------------------------------------------------------- /Cryptomator/Common/DatabaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/DatabaseManager.swift -------------------------------------------------------------------------------- /Cryptomator/Common/DefaultShowEditAccountBehavior.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/DefaultShowEditAccountBehavior.swift -------------------------------------------------------------------------------- /Cryptomator/Common/EditableDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/EditableDataSource.swift -------------------------------------------------------------------------------- /Cryptomator/Common/EditableTableViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/EditableTableViewHeader.swift -------------------------------------------------------------------------------- /Cryptomator/Common/EmptyListMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/EmptyListMessage.swift -------------------------------------------------------------------------------- /Cryptomator/Common/FilesAppUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/FilesAppUtil.swift -------------------------------------------------------------------------------- /Cryptomator/Common/HeaderFooter/AttributedTextHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/HeaderFooter/AttributedTextHeaderFooterView.swift -------------------------------------------------------------------------------- /Cryptomator/Common/HeaderFooter/AttributedTextHeaderFooterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/HeaderFooter/AttributedTextHeaderFooterViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/HeaderFooter/BaseHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/HeaderFooter/BaseHeaderFooterView.swift -------------------------------------------------------------------------------- /Cryptomator/Common/HeaderFooter/BindableAttributedTextHeaderFooterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/HeaderFooter/BindableAttributedTextHeaderFooterViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/HeaderFooter/HeaderFooterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/HeaderFooter/HeaderFooterViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ListViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/ListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/ListViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/LocalWeb/LocalWebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/LocalWeb/LocalWebViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/LocalWeb/LocalWebViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/LocalWeb/LocalWebViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/MaintenanceModeError+Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/MaintenanceModeError+Localization.swift -------------------------------------------------------------------------------- /Cryptomator/Common/NSAttributedString+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/NSAttributedString+Extension.swift -------------------------------------------------------------------------------- /Cryptomator/Common/PoppingCloseCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/PoppingCloseCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Previews/UIView+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Previews/UIView+Preview.swift -------------------------------------------------------------------------------- /Cryptomator/Common/Previews/UIViewController+Preview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/Previews/UIViewController+Preview.swift -------------------------------------------------------------------------------- /Cryptomator/Common/SingleSectionTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/SingleSectionTableViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/StaticUITableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/StaticUITableViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Common/TableViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/TableViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Common/UIImage+CloudProviderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/UIImage+CloudProviderType.swift -------------------------------------------------------------------------------- /Cryptomator/Common/UIViewController+ProgressHUDError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/UIViewController+ProgressHUDError.swift -------------------------------------------------------------------------------- /Cryptomator/Common/URL+Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/URL+Zip.swift -------------------------------------------------------------------------------- /Cryptomator/Common/VaultDetailItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/VaultDetailItem.swift -------------------------------------------------------------------------------- /Cryptomator/Common/VaultDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Common/VaultDetector.swift -------------------------------------------------------------------------------- /Cryptomator/Cryptomator.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Cryptomator.entitlements -------------------------------------------------------------------------------- /Cryptomator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Info.plist -------------------------------------------------------------------------------- /Cryptomator/MainCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MainCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/EnterSharePointURLViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/EnterSharePointURLViewController.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/EnterSharePointURLViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/EnterSharePointURLViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/MicrosoftGraphAuthenticatorError+Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/MicrosoftGraphAuthenticatorError+Localization.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/OneDriveAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/OneDriveAuthenticator.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointAuthenticating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointAuthenticating.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointAuthenticationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointAuthenticationCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointAuthenticator.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointCredential.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointDriveListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointDriveListViewController.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointDriveListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointDriveListViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/MicrosoftGraph/SharePointURLValidationError+Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/MicrosoftGraph/SharePointURLValidationError+Localization.swift -------------------------------------------------------------------------------- /Cryptomator/Onboarding/OnboardingCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Onboarding/OnboardingCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Onboarding/OnboardingNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Onboarding/OnboardingNavigationController.swift -------------------------------------------------------------------------------- /Cryptomator/Onboarding/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Onboarding/OnboardingViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Onboarding/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Onboarding/OnboardingViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/Cells/DisclosureCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/Cells/DisclosureCell.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/Cells/IAPCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/Cells/IAPCell.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/Cells/PurchaseCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/Cells/PurchaseCell.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/Cells/TrialCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/Cells/TrialCell.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/IAPHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/IAPHeaderView.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/IAPViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/IAPViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/PremiumManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/PremiumManager.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/PurchaseAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/PurchaseAlert.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/PurchaseCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/PurchaseCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/PurchaseFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/PurchaseFooterView.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/PurchaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/PurchaseViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/PurchaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/PurchaseViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/SKProduct+LocalizedPrice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/SKProduct+LocalizedPrice.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/SalePromo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/SalePromo.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/StoreManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/StoreManager.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/StoreObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/StoreObserver.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/TrialExpiredCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/TrialExpiredCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/TrialExpiredNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/TrialExpiredNavigationController.swift -------------------------------------------------------------------------------- /Cryptomator/Purchase/UpgradeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Purchase/UpgradeViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Resources/about.html -------------------------------------------------------------------------------- /Cryptomator/Resources/jquery-3.6.0.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Resources/jquery-3.6.0.slim.min.js -------------------------------------------------------------------------------- /Cryptomator/Resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Resources/style.css -------------------------------------------------------------------------------- /Cryptomator/S3/S3Authenticating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/S3/S3Authenticating.swift -------------------------------------------------------------------------------- /Cryptomator/S3/S3AuthenticationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/S3/S3AuthenticationView.swift -------------------------------------------------------------------------------- /Cryptomator/S3/S3AuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/S3/S3AuthenticationViewController.swift -------------------------------------------------------------------------------- /Cryptomator/S3/S3AuthenticationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/S3/S3AuthenticationViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/S3/S3Authenticator+VC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/S3/S3Authenticator+VC.swift -------------------------------------------------------------------------------- /Cryptomator/S3/S3CredentialVerifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/S3/S3CredentialVerifier.swift -------------------------------------------------------------------------------- /Cryptomator/Settings/About/AboutCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Settings/About/AboutCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Settings/About/AboutViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Settings/About/AboutViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Settings/SettingsCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Settings/SettingsCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Cryptomator/Settings/SettingsViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Settings/SettingsViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/Snapshots/SnapshotCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Snapshots/SnapshotCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/Snapshots/SnapshotVaultListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/Snapshots/SnapshotVaultListViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ChangePassword/ChangePasswordViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ChangePassword/ChangePasswordViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ChangePassword/ChangePasswordViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ChangePassword/ChangePasswordViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ChangePassword/VaultPasswordChanging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ChangePassword/VaultPasswordChanging.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/KeepUnlocked/KeepUnlockedSectionFooterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/KeepUnlocked/KeepUnlockedSectionFooterViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/KeepUnlocked/VaultKeepUnlockedViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/KeepUnlocked/VaultKeepUnlockedViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/KeepUnlocked/VaultKeepUnlockedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/KeepUnlocked/VaultKeepUnlockedViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/MoveVault/MoveVaultCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/MoveVault/MoveVaultCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/MoveVault/MoveVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/MoveVault/MoveVaultViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/MoveVault/MoveVaultViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/MoveVault/MoveVaultViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/RenameVault/RenameVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/RenameVault/RenameVaultViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/RenameVault/RenameVaultViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/RenameVault/RenameVaultViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ShareVault/ShareVaultCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ShareVault/ShareVaultCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ShareVault/ShareVaultView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ShareVault/ShareVaultView.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ShareVault/ShareVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ShareVault/ShareVaultViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/ShareVault/ShareVaultViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/ShareVault/ShareVaultViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/UnlockSectionFooterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/UnlockSectionFooterViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailInfoFooterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailInfoFooterViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailUnlockCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailUnlockCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailUnlockVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailUnlockVaultViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailUnlockVaultViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailUnlockVaultViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultDetailViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultDetail/VaultPasswordVerifying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultDetail/VaultPasswordVerifying.swift -------------------------------------------------------------------------------- /Cryptomator/VaultList/VaultCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultList/VaultCell.swift -------------------------------------------------------------------------------- /Cryptomator/VaultList/VaultCellViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultList/VaultCellViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/VaultList/VaultInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultList/VaultInfo.swift -------------------------------------------------------------------------------- /Cryptomator/VaultList/VaultListPosition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultList/VaultListPosition.swift -------------------------------------------------------------------------------- /Cryptomator/VaultList/VaultListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultList/VaultListViewController.swift -------------------------------------------------------------------------------- /Cryptomator/VaultList/VaultListViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/VaultList/VaultListViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/TLSCertificateValidationHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/TLSCertificateValidationHelper.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVAuthenticating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVAuthenticating.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVAuthentication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVAuthentication.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVAuthenticationCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVAuthenticationCoordinator.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVAuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVAuthenticationViewController.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVAuthenticationViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVAuthenticationViewModel.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVAuthenticator+VC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVAuthenticator+VC.swift -------------------------------------------------------------------------------- /Cryptomator/WebDAV/WebDAVCredentialCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Cryptomator/WebDAV/WebDAVCredentialCoordinator.swift -------------------------------------------------------------------------------- /CryptomatorCommon/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CryptomatorCommon/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Package.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Box/BoxTokenStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Box/BoxTokenStorage.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CloudPath+Contains.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CloudPath+Contains.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Coordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Coordinator.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptoBotHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptoBotHeaderFooterView.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorConstants.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorDatabase.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorErrorView.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorKeychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorKeychain.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorSimpleButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorSimpleButtonView.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorUserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/CryptomatorUserDefaults.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/FullVersionChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/FullVersionChecker.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubAuthenticating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubAuthenticating.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubAuthenticationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubAuthenticationView.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubErrorWithRefreshView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubErrorWithRefreshView.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubKeyService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubKeyService.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubRepository.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubSubscriptionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubSubscriptionState.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubUserAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubUserAuthenticator.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubUserLogin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubUserLogin.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubXPCLoginCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Hub/HubXPCLoginCoordinator.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/ItemNameValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/ItemNameValidator.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/JWEHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/JWEHelper.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/KeepUnlockedDuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/KeepUnlockedDuration.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/LargeHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/LargeHeaderFooterView.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/LocalizedCloudProviderError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/LocalizedCloudProviderError.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/LocalizedString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/LocalizedString.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/LoggerSetup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/LoggerSetup.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/CloudProviderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/CloudProviderType.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/ExistingHubVault.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/ExistingHubVault.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/VaultDBCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/VaultDBCache.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/VaultDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Manager/VaultDBManager.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/CacheManagingMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/CacheManagingMock.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/CloudProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/CloudProviderMock.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/HubRepositoryMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/HubRepositoryMock.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/UpgradeCheckerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/UpgradeCheckerMock.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/VaultCacheMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/VaultCacheMock.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/VaultManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Mocks/VaultManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/ProgressHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/ProgressHUD.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/Promise+AllIgnoringResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/Promise+AllIgnoringResult.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/S3/CryptomatorKeychain+S3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/S3/CryptomatorKeychain+S3.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/S3/S3CredentialManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/S3/S3CredentialManager.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/SwiftUI/SwiftUI+Focus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/SwiftUI/SwiftUI+Focus.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/UIColor+CryptomatorColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/UIColor+CryptomatorColors.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/UIView+Shaking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/UIView+Shaking.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/UpgradeChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/UpgradeChecker.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Sources/CryptomatorCommonCore/VaultItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Sources/CryptomatorCommonCore/VaultItem.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Tests/CryptomatorCommonCoreTests/FullVersionCheckerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Tests/CryptomatorCommonCoreTests/FullVersionCheckerTests.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Tests/CryptomatorCommonCoreTests/Hub/HubDBRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Tests/CryptomatorCommonCoreTests/Hub/HubDBRepositoryTests.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Tests/CryptomatorCommonCoreTests/Hub/JWEHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Tests/CryptomatorCommonCoreTests/Hub/JWEHelperTests.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Tests/CryptomatorCommonCoreTests/ItemNameValidatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Tests/CryptomatorCommonCoreTests/ItemNameValidatorTests.swift -------------------------------------------------------------------------------- /CryptomatorCommon/Tests/CryptomatorCommonCoreTests/XCTestCase+Promises.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommon/Tests/CryptomatorCommonCoreTests/XCTestCase+Promises.swift -------------------------------------------------------------------------------- /CryptomatorCommonHostedTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommonHostedTests/Info.plist -------------------------------------------------------------------------------- /CryptomatorCommonHostedTests/Keychain/PCloudKeychainTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommonHostedTests/Keychain/PCloudKeychainTests.swift -------------------------------------------------------------------------------- /CryptomatorCommonHostedTests/Keychain/VaultPasswordKeychainManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommonHostedTests/Keychain/VaultPasswordKeychainManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorCommonHostedTests/Keychain/WebDAVKeychainTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorCommonHostedTests/Keychain/WebDAVKeychainTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Actions/FileProviderAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Actions/FileProviderAction.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CachedFileManagerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CachedFileManagerFactory.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudPath+GetParent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudPath+GetParent.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudPath+NameCollision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudPath+NameCollision.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/CloudTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/CloudTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/DeletionTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/DeletionTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/DownloadTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/DownloadTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/FolderCreationTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/FolderCreationTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/ItemEnumerationTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/ItemEnumerationTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/ReparentTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/ReparentTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CloudTask/UploadTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CloudTask/UploadTask.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/CryptomatorFileProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/CryptomatorFileProvider.h -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/CachedFileDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/CachedFileDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/DBManagerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/DBManagerError.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/DatabaseHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/DatabaseHelper.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/DeletionTaskDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/DeletionTaskDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/DeletionTaskRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/DeletionTaskRecord.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/DownloadTaskDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/DownloadTaskDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/DownloadTaskRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/DownloadTaskRecord.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/ItemEnumerationTaskDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/ItemEnumerationTaskDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/ItemEnumerationTaskRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/ItemEnumerationTaskRecord.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/ItemMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/ItemMetadata.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/ItemMetadataDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/ItemMetadataDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/LocalCachedFileInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/LocalCachedFileInfo.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/MaintenanceDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/MaintenanceDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/ReparentTaskDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/ReparentTaskDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/ReparentTaskRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/ReparentTaskRecord.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/TaskError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/TaskError.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/UploadTaskDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/UploadTaskDBManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/UploadTaskRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/UploadTaskRecord.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DB/WorkingSetObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DB/WorkingSetObserver.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DatabaseURLProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DatabaseURLProvider.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DeleteItemHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DeleteItemHelper.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/DocumentStorageURLProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/DocumentStorageURLProvider.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ErrorWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ErrorWrapper.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderAdapter.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderAdapterError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderAdapterError.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderAdapterManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderAdapterManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderEnumerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderEnumerator.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderItem.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderItemList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderItemList.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderNotificator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderNotificator.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/FileProviderNotificatorManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/FileProviderNotificatorManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ItemStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ItemStatus.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/LocalURLProviderType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/LocalURLProviderType.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Locks/FileSystemLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Locks/FileSystemLock.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Locks/LockManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Locks/LockManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Locks/LockNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Locks/LockNode.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Locks/RWLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Locks/RWLock.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/ErrorMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/ErrorMapper.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/OnlineItemNameCollisionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/OnlineItemNameCollisionHandler.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/TaskExecutor/DeletionTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/TaskExecutor/DeletionTaskExecutor.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/TaskExecutor/DownloadTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/TaskExecutor/DownloadTaskExecutor.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/TaskExecutor/FolderCreationTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/TaskExecutor/FolderCreationTaskExecutor.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/TaskExecutor/ReparentTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/TaskExecutor/ReparentTaskExecutor.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/TaskExecutor/UploadTaskExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/TaskExecutor/UploadTaskExecutor.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Middleware/WorkflowMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Middleware/WorkflowMiddleware.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/NSFileProviderDomainProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/NSFileProviderDomainProvider.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/NSFileProviderItemIdentifier+Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/NSFileProviderItemIdentifier+Database.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/PermissionProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/PermissionProvider.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ProgressManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ProgressManager.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/RootFileProviderItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/RootFileProviderItem.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/CacheManagingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/CacheManagingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/FileImportingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/FileImportingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/LogLevelUpdatingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/LogLevelUpdatingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/MaintenanceModeHelperServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/MaintenanceModeHelperServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/ServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/ServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/UploadRetryingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/UploadRetryingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/VaultLockingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/VaultLockingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/ServiceSource/VaultUnlockingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/ServiceSource/VaultUnlockingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/SessionTaskRegistrator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/SessionTaskRegistrator.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/URL+NameCollisionExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/URL+NameCollisionExtension.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/UnlockMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/UnlockMonitor.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/VaultUnlockingServiceSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/VaultUnlockingServiceSource.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/Workflow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/Workflow.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowConstraint.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowDependencyFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowDependencyFactory.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowDependencyMiddleware.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowDependencyMiddleware.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowDependencyTaskCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowDependencyTaskCollection.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowFactory.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowFactoryLocking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowFactoryLocking.swift -------------------------------------------------------------------------------- /CryptomatorFileProvider/Workflow/WorkflowScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProvider/Workflow/WorkflowScheduler.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/CloudPath+NameCollision.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/CloudPath+NameCollision.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/CachedFileManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/CachedFileManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/DeletionTaskManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/DeletionTaskManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/DownloadTaskManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/DownloadTaskManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/ItemEnumerationTaskManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/ItemEnumerationTaskManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/MaintenanceManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/MaintenanceManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/MetadataManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/MetadataManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/ReparentTaskManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/ReparentTaskManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/DB/UploadTaskManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/DB/UploadTaskManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/FileImportingServiceSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/FileImportingServiceSourceTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/FileProviderAdapterManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/FileProviderAdapterManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/FileProviderEnumeratorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/FileProviderEnumeratorTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/FileProviderItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/FileProviderItemTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/FileProviderNotificatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/FileProviderNotificatorTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/InMemoryProgressManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/InMemoryProgressManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Info.plist -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/LocalURLProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/LocalURLProviderTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Middleware/ErrorMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Middleware/ErrorMapperTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Middleware/WorkflowMiddlewareMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Middleware/WorkflowMiddlewareMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/CacheManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/CacheManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/CachedFileManagerFactoryMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/CachedFileManagerFactoryMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/CloudProviderPaginationMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/CloudProviderPaginationMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/CustomCloudProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/CustomCloudProviderMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/CustomCloudProviderMockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/CustomCloudProviderMockTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/DocumentStorageURLProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/DocumentStorageURLProviderMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/EnumerationSignalingMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/EnumerationSignalingMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/FileProviderAdapterCacheTypeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/FileProviderAdapterCacheTypeMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/FileProviderAdapterProvidingMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/FileProviderAdapterProvidingMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/FileProviderAdapterTypeMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/FileProviderAdapterTypeMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/FileProviderItemUpdateDelegateMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/FileProviderItemUpdateDelegateMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/FileProviderNotificatorManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/FileProviderNotificatorManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/FileProviderNotificatorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/FileProviderNotificatorMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/LocalURLProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/LocalURLProviderMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/MaintenanceManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/MaintenanceManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/NSFileProviderChangeObserverMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/NSFileProviderChangeObserverMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/NSFileProviderDomainProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/NSFileProviderDomainProviderMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/NSFileProviderEnumerationObserverMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/NSFileProviderEnumerationObserverMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/PermissionProviderMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/PermissionProviderMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/ProgressManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/ProgressManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/SessionTaskRegistratorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/SessionTaskRegistratorMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/UnlockMonitorTaskExecutorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/UnlockMonitorTaskExecutorMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/UploadTaskManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/UploadTaskManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/WorkflowDependencyTasksCollectionMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/WorkflowDependencyTasksCollectionMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/Mocks/WorkingSetObservingMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/Mocks/WorkingSetObservingMock.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/PermissionProviderImplTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/PermissionProviderImplTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/URL+NameCollisionExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/URL+NameCollisionExtensionTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/UnlockMonitorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/UnlockMonitorTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/WorkflowDependencyFactoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/WorkflowDependencyFactoryTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/WorkingSetEnumerationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/WorkingSetEnumerationTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/WorkingSetObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/WorkingSetObserverTests.swift -------------------------------------------------------------------------------- /CryptomatorFileProviderTests/XCTestCase+Promises.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorFileProviderTests/XCTestCase+Promises.swift -------------------------------------------------------------------------------- /CryptomatorIntents/Base.lproj/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/Base.lproj/Intents.intentdefinition -------------------------------------------------------------------------------- /CryptomatorIntents/Common/VaultOptionsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/Common/VaultOptionsProvider.swift -------------------------------------------------------------------------------- /CryptomatorIntents/CryptomatorIntents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/CryptomatorIntents.entitlements -------------------------------------------------------------------------------- /CryptomatorIntents/GetFolderIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/GetFolderIntentHandler.swift -------------------------------------------------------------------------------- /CryptomatorIntents/GetFolderIntentHandlerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/GetFolderIntentHandlerError.swift -------------------------------------------------------------------------------- /CryptomatorIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/Info.plist -------------------------------------------------------------------------------- /CryptomatorIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/IntentHandler.swift -------------------------------------------------------------------------------- /CryptomatorIntents/IsVaultUnlockedIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/IsVaultUnlockedIntentHandler.swift -------------------------------------------------------------------------------- /CryptomatorIntents/LockVaultIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/LockVaultIntentHandler.swift -------------------------------------------------------------------------------- /CryptomatorIntents/OpenVaultIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/OpenVaultIntentHandler.swift -------------------------------------------------------------------------------- /CryptomatorIntents/SaveFileIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/SaveFileIntentHandler.swift -------------------------------------------------------------------------------- /CryptomatorIntents/af.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/ar.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ar.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ba.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ba.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/be.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/be.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/bg.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "Хранилище"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/bn.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "ভোল্ট"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/bs.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "Sef"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/ca.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ca.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/cs.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/cs.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/da.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/da.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/de.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/de.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/el.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/el.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/en.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/en.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/es.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/es.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/fa.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/fa.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/fi.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "Holvi"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/fil.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/fil.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/fr.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/fr.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/gl.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/he.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/he.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/hi.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/hi.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/hr.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/hr.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/hu.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/hu.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/id.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/id.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/it.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/it.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ja.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ja.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ko.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ko.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/lv.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/lv.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/mk.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "Сеф"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/mr.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/nb.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/nb.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/nl.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/nl.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/nn-NO.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/no.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/pa.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/pa.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/pl.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/pl.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/pt-BR.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/pt-BR.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/pt.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/pt.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ro.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ro.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ru.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ru.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/si.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/sk.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/sk.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/sl.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/sl.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/sr-Latn.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "Sef"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/sr.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "Sef"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/sv.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/sv.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/sw-TZ.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/sw-TZ.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ta.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/ta.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/te.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/th.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/th.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/tr.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/tr.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ug.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | "common.vault" = "ئامبار"; 2 | -------------------------------------------------------------------------------- /CryptomatorIntents/uk.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/uk.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/ur.lproj/Intents.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CryptomatorIntents/vi.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/vi.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/zh-HK.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/zh-HK.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/zh-Hans.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/zh-Hans.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorIntents/zh-Hant.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorIntents/zh-Hant.lproj/Intents.strings -------------------------------------------------------------------------------- /CryptomatorTests/AccountListViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/AccountListViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/AddLocalVault/AddLocalVaultViewModelTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/AddLocalVault/AddLocalVaultViewModelTestCase.swift -------------------------------------------------------------------------------- /CryptomatorTests/AddLocalVault/CreateNewLocalVaultViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/AddLocalVault/CreateNewLocalVaultViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/AddLocalVault/OpenExistingLocalVaultViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/AddLocalVault/OpenExistingLocalVaultViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/ChangePasswordViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/ChangePasswordViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/CreateNewFolderViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/CreateNewFolderViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/CreateNewVaultPasswordViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/CreateNewVaultPasswordViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/DatabaseManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/DatabaseManagerTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/FileProviderConnectorMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/FileProviderConnectorMock.swift -------------------------------------------------------------------------------- /CryptomatorTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Info.plist -------------------------------------------------------------------------------- /CryptomatorTests/MockError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/MockError.swift -------------------------------------------------------------------------------- /CryptomatorTests/Mocks/IAPManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Mocks/IAPManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorTests/Mocks/IAPStoreMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Mocks/IAPStoreMock.swift -------------------------------------------------------------------------------- /CryptomatorTests/Mocks/PremiumManagerMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Mocks/PremiumManagerMock.swift -------------------------------------------------------------------------------- /CryptomatorTests/Mocks/S3CredentialVerifierMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Mocks/S3CredentialVerifierMock.swift -------------------------------------------------------------------------------- /CryptomatorTests/Mocks/TLSCertificateValidationHelperMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Mocks/TLSCertificateValidationHelperMock.swift -------------------------------------------------------------------------------- /CryptomatorTests/MoveVaultViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/MoveVaultViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/Purchase/IAPViewModelTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Purchase/IAPViewModelTestCase.swift -------------------------------------------------------------------------------- /CryptomatorTests/Purchase/PurchaseViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Purchase/PurchaseViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/Purchase/StoreObserverTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Purchase/StoreObserverTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/Purchase/UpgradeViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/Purchase/UpgradeViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/RenameVaultViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/RenameVaultViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/S3AuthenticationViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/S3AuthenticationViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/SetVaultNameViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/SetVaultNameViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/SettingsViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/SettingsViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/VaultKeepUnlockedViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/VaultKeepUnlockedViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/VaultListViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/VaultListViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/WebDAVAuthenticationViewModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/WebDAVAuthenticationViewModelTests.swift -------------------------------------------------------------------------------- /CryptomatorTests/XCTest+Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/XCTest+Async.swift -------------------------------------------------------------------------------- /CryptomatorTests/XCTest+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/XCTest+Combine.swift -------------------------------------------------------------------------------- /CryptomatorTests/XCTestCase+Promises.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/CryptomatorTests/XCTestCase+Promises.swift -------------------------------------------------------------------------------- /FileProviderExtension/FileProvider+Actions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/FileProvider+Actions.swift -------------------------------------------------------------------------------- /FileProviderExtension/FileProviderExtension-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/FileProviderExtension-Bridging-Header.h -------------------------------------------------------------------------------- /FileProviderExtension/FileProviderExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/FileProviderExtension.entitlements -------------------------------------------------------------------------------- /FileProviderExtension/FileProviderExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/FileProviderExtension.swift -------------------------------------------------------------------------------- /FileProviderExtension/FileProviderValidationServiceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/FileProviderValidationServiceSource.h -------------------------------------------------------------------------------- /FileProviderExtension/FileProviderValidationServiceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/FileProviderValidationServiceSource.m -------------------------------------------------------------------------------- /FileProviderExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/Info.plist -------------------------------------------------------------------------------- /FileProviderExtension/Snapshots/FileProviderEnumeratorSnapshotMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/Snapshots/FileProviderEnumeratorSnapshotMock.swift -------------------------------------------------------------------------------- /FileProviderExtension/Snapshots/VaultUnlockingServiceSourceSnapshotMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtension/Snapshots/VaultUnlockingServiceSourceSnapshotMock.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/FileProviderCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/FileProviderCoordinator.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/FileProviderCoordinatorError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/FileProviderCoordinatorError.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/FileProviderExtensionUI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/FileProviderExtensionUI.entitlements -------------------------------------------------------------------------------- /FileProviderExtensionUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/Info.plist -------------------------------------------------------------------------------- /FileProviderExtensionUI/OnboardingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/OnboardingViewController.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/RootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/RootViewController.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/Snapshots/FileProviderCoordinatorSnapshotMock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/Snapshots/FileProviderCoordinatorSnapshotMock.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/UnauthorizedErrorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/UnauthorizedErrorViewController.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/UnlockVaultViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/UnlockVaultViewController.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/UnlockVaultViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/UnlockVaultViewModel.swift -------------------------------------------------------------------------------- /FileProviderExtensionUI/UploadProgressAlertController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/FileProviderExtensionUI/UploadProgressAlertController.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/git-format-staged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Scripts/git-format-staged.py -------------------------------------------------------------------------------- /Scripts/process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Scripts/process.sh -------------------------------------------------------------------------------- /Scripts/xccov-to-sonarqube-generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Scripts/xccov-to-sonarqube-generic.sh -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/AppIcon.appiconset/DarkIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/AppIcon.appiconset/DarkIcon.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/AppIcon.appiconset/LightIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/AppIcon.appiconset/LightIcon.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/AppIcon.appiconset/TintedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/AppIcon.appiconset/TintedIcon.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot-vault.imageset/bot-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot-vault.imageset/bot-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot-vault.imageset/bot-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot-vault.imageset/bot-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot-vault.imageset/bot-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot-vault.imageset/bot-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot.imageset/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot.imageset/bot.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot.imageset/bot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot.imageset/bot@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/bot.imageset/bot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/bot.imageset/bot@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box-vault-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box-vault-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box-vault.imageset/box-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box-vault.imageset/box-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box-vault.imageset/box-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box-vault.imageset/box-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box-vault.imageset/box-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box-vault.imageset/box-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box.imageset/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box.imageset/box.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box.imageset/box@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box.imageset/box@2.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/box.imageset/box@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/box.imageset/box@3.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/cryptomator-hub-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/cryptomator-hub-logo.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/cryptomator-hub.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/cryptomator-hub.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox-vault-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox-vault-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox-vault.imageset/dropbox-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox-vault.imageset/dropbox-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox-vault.imageset/dropbox-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox-vault.imageset/dropbox-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox-vault.imageset/dropbox-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox-vault.imageset/dropbox-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox.imageset/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox.imageset/dropbox.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox.imageset/dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox.imageset/dropbox@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/dropbox.imageset/dropbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/dropbox.imageset/dropbox@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/file-provider-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/file-provider-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/file-provider.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/file-provider.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/file-provider.imageset/file-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/file-provider.imageset/file-provider.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/file-provider.imageset/file-provider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/file-provider.imageset/file-provider@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/file-provider.imageset/file-provider@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/file-provider.imageset/file-provider@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/google-drive-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/google-drive-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/google-drive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/google-drive.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/google-drive.imageset/google-drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/google-drive.imageset/google-drive.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/google-drive.imageset/google-drive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/google-drive.imageset/google-drive@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/google-drive.imageset/google-drive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/google-drive.imageset/google-drive@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/icloud-drive-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/icloud-drive-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/icloud-drive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/icloud-drive.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/icloud-drive.imageset/icloud-drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/icloud-drive.imageset/icloud-drive.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/icloud-drive.imageset/icloud-drive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/icloud-drive.imageset/icloud-drive@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/icloud-drive.imageset/icloud-drive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/icloud-drive.imageset/icloud-drive@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive-vault-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive-vault-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive-vault.imageset/onedrive-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive-vault.imageset/onedrive-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive-vault.imageset/onedrive-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive-vault.imageset/onedrive-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive-vault.imageset/onedrive-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive-vault.imageset/onedrive-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive.imageset/onedrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive.imageset/onedrive.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive.imageset/onedrive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive.imageset/onedrive@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/onedrive.imageset/onedrive@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/onedrive.imageset/onedrive@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud-vault-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud-vault-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud-vault.imageset/pcloud-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud-vault.imageset/pcloud-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud-vault.imageset/pcloud-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud-vault.imageset/pcloud-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud-vault.imageset/pcloud-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud-vault.imageset/pcloud-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud.imageset/pcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud.imageset/pcloud.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud.imageset/pcloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud.imageset/pcloud@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/pcloud.imageset/pcloud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/pcloud.imageset/pcloud@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3-vault-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3-vault-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3-vault.imageset/s3-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3-vault.imageset/s3-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3-vault.imageset/s3-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3-vault.imageset/s3-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3-vault.imageset/s3-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3-vault.imageset/s3-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3.imageset/s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3.imageset/s3.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3.imageset/s3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3.imageset/s3@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/s3.imageset/s3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/s3.imageset/s3@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint-vault.imageset/sharepoint-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint-vault.imageset/sharepoint-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint.imageset/sharepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint.imageset/sharepoint.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint.imageset/sharepoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint.imageset/sharepoint@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/sharepoint.imageset/sharepoint@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/sharepoint.imageset/sharepoint@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav-vault-selected.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav-vault-selected.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav-vault.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav-vault.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav-vault.imageset/webdav-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav-vault.imageset/webdav-vault.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav-vault.imageset/webdav-vault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav-vault.imageset/webdav-vault@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav-vault.imageset/webdav-vault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav-vault.imageset/webdav-vault@3x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav.imageset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav.imageset/webdav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav.imageset/webdav.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav.imageset/webdav@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav.imageset/webdav@2x.png -------------------------------------------------------------------------------- /SharedResources/Assets.xcassets/webdav.imageset/webdav@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Assets.xcassets/webdav.imageset/webdav@3x.png -------------------------------------------------------------------------------- /SharedResources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /SharedResources/Colors.xcassets/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Colors.xcassets/background.colorset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Colors.xcassets/primary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Colors.xcassets/primary.colorset/Contents.json -------------------------------------------------------------------------------- /SharedResources/Colors.xcassets/yellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/Colors.xcassets/yellow.colorset/Contents.json -------------------------------------------------------------------------------- /SharedResources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /SharedResources/af.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharedResources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ba.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ba.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/be.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/be.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/bn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/bn.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/bs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/bs.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/fil.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/fil.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/mk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/mk.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/mr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharedResources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/nn-NO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/nn-NO.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharedResources/pa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/pa.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/si.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/si.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sr-CS.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sr-CS.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sr-Latn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sr-Latn.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/sw-TZ.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/sw-TZ.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ta.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ta.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/te.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/te.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ug.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/ug.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/ur.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharedResources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/zh-HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/zh-HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /SharedResources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/SharedResources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snapshots/SnapshotBiometrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Snapshots/SnapshotBiometrics.h -------------------------------------------------------------------------------- /Snapshots/SnapshotBiometrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Snapshots/SnapshotBiometrics.m -------------------------------------------------------------------------------- /Snapshots/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Snapshots/SnapshotHelper.swift -------------------------------------------------------------------------------- /Snapshots/Snapshots-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Snapshots/Snapshots-Bridging-Header.h -------------------------------------------------------------------------------- /Snapshots/Snapshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/Snapshots/Snapshots.swift -------------------------------------------------------------------------------- /StoreKitTestConfiguration/Configuration.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/StoreKitTestConfiguration/Configuration.storekit -------------------------------------------------------------------------------- /StoreKitTestConfiguration/StoreKitTestCertificate.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/StoreKitTestConfiguration/StoreKitTestCertificate.cer -------------------------------------------------------------------------------- /fastlane/.env.freemium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/.env.freemium -------------------------------------------------------------------------------- /fastlane/.env.premium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/.env.premium -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier(ENV["BUNDLE_IDENTIFIER"]) 2 | team_id("YZQJQUHA3L") 3 | -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Gymfile: -------------------------------------------------------------------------------- 1 | scheme("Cryptomator") 2 | clean(true) 3 | xcargs(ENV["XCARGS"]) 4 | -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /fastlane/Scanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/Scanfile -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/beta_app_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/beta_app_description.txt -------------------------------------------------------------------------------- /fastlane/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/changelog.txt -------------------------------------------------------------------------------- /fastlane/config/freemium/DarkIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/DarkIcon.png -------------------------------------------------------------------------------- /fastlane/config/freemium/LightIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/LightIcon.png -------------------------------------------------------------------------------- /fastlane/config/freemium/TintedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/TintedIcon.png -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2025 cryptomator.org -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/de-DE/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/metadata/de-DE/description.txt -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/de-DE/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/de/ -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/de-DE/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/de/privacy/ -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/de-DE/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/metadata/de-DE/release_notes.txt -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/de-DE/support_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/de/contact/ -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/default/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/metadata/default/keywords.txt -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/default/name.txt: -------------------------------------------------------------------------------- 1 | Cryptomator: Protect Privacy -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/default/subtitle.txt: -------------------------------------------------------------------------------- 1 | Open Source Cloud Encryption -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/ -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/privacy/ -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/freemium/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/contact/ -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY -------------------------------------------------------------------------------- /fastlane/config/freemium/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES -------------------------------------------------------------------------------- /fastlane/config/premium/DarkIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/DarkIcon.png -------------------------------------------------------------------------------- /fastlane/config/premium/LightIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/LightIcon.png -------------------------------------------------------------------------------- /fastlane/config/premium/TintedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/TintedIcon.png -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2025 cryptomator.org -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/metadata/de-DE/description.txt -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/de/ -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/name.txt: -------------------------------------------------------------------------------- 1 | Cryptomator: Vollversion -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/de/privacy/ -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/metadata/de-DE/release_notes.txt -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/subtitle.txt: -------------------------------------------------------------------------------- 1 | Cloudspeicher Verschlüsselung -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/de-DE/support_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/de/contact/ -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/default/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/metadata/default/keywords.txt -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/ -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | Cryptomator: Full Version -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/privacy/ -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/config/premium/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | Cloud Storage Encryption -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://cryptomator.org/contact/ -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY -------------------------------------------------------------------------------- /fastlane/config/premium/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES -------------------------------------------------------------------------------- /fastlane/scripts/create-app-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/scripts/create-app-constants.sh -------------------------------------------------------------------------------- /fastlane/scripts/create-app-icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/scripts/create-app-icon.sh -------------------------------------------------------------------------------- /fastlane/scripts/create-cloud-access-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/scripts/create-cloud-access-secrets.sh -------------------------------------------------------------------------------- /fastlane/scripts/iap-pricing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/fastlane/scripts/iap-pricing.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptomator/ios/HEAD/sonar-project.properties --------------------------------------------------------------------------------