├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── release_template.md ├── pull_request_template.md └── workflows │ ├── build-and-analyze.yml │ ├── pull-transifex.yml │ └── push-transifex.yml ├── .gitignore ├── .gitmodules ├── .swiftlint.yml ├── .tx └── config ├── .xcode-version ├── Gemfile ├── LICENSE ├── OpenCloud Action Extension ├── Info.plist ├── InfoPlist.xcstrings └── OpenCloud Action Extension.entitlements ├── OpenCloud File Provider UI ├── Base.lproj │ └── MainInterface.storyboard ├── CancelLabelViewController.swift ├── DocumentActionViewController.swift ├── Info.plist └── OpenCloud_File_Provider_UI.entitlements ├── OpenCloud File Provider ├── FileProviderContentEnumerator.h ├── FileProviderContentEnumerator.m ├── FileProviderEnumeratorObserver.h ├── FileProviderEnumeratorObserver.m ├── FileProviderExtension.h ├── FileProviderExtension.m ├── FileProviderExtensionThumbnailRequest.h ├── FileProviderExtensionThumbnailRequest.m ├── FileProviderServiceSource.h ├── FileProviderServiceSource.m ├── Info.plist ├── Localizable.xcstrings ├── NSError+MessageResolution.h ├── NSError+MessageResolution.m ├── NSNumber+OCSyncAnchorData.h ├── NSNumber+OCSyncAnchorData.m ├── OCBookmark+FileProvider.h ├── OCBookmark+FileProvider.m ├── OCCore+FileProviderTools.h ├── OCCore+FileProviderTools.m ├── OCItem+FileProviderItem.h ├── OCItem+FileProviderItem.m ├── OCVFSNode+FileProviderItem.h ├── OCVFSNode+FileProviderItem.m └── OpenCloud_File_Provider.entitlements ├── OpenCloud Intents ├── Base.lproj │ └── Intents.intentdefinition ├── CreateFolderIntentHandler.swift ├── DeletePathItemIntentHandler.swift ├── GetAccountIntentHandler.swift ├── GetAccountsIntentHandler.swift ├── GetDirectoryListingIntentHandler.swift ├── GetFileInfoIntentHandler.swift ├── GetFileIntentHandler.swift ├── Info.plist ├── IntentHandler.swift ├── IntentSettings.swift ├── OCBookmarkManager+Extension.swift ├── OpenCloud Intents.entitlements ├── PathExistsIntentHandler.swift ├── SaveFileIntentHandler.swift ├── ar.lproj │ └── Intents.strings ├── cs.lproj │ └── Intents.strings ├── de.lproj │ └── Intents.strings ├── en-GB.lproj │ └── Intents.strings ├── en.lproj │ └── Intents.strings ├── es.lproj │ └── Intents.strings ├── eu.lproj │ └── Intents.strings ├── fr.lproj │ └── Intents.strings ├── ko.lproj │ └── Intents.strings ├── mk.lproj │ └── Intents.strings ├── nb-NO.lproj │ └── Intents.strings ├── nn-NO.lproj │ └── Intents.strings ├── pt-BR.lproj │ └── Intents.strings ├── pt-PT.lproj │ └── Intents.strings ├── ru.lproj │ └── Intents.strings ├── sq.lproj │ └── Intents.strings ├── th-TH.lproj │ └── Intents.strings └── zh-Hans.lproj │ └── Intents.strings ├── OpenCloud Share Extension ├── Info.plist ├── InfoPlist.xcstrings ├── OpenCloud Share Extension.entitlements ├── ShareExtensionViewController.swift └── en.lproj │ └── Info.plist ├── OpenCloud.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── MakeTVG.xcscheme │ ├── OpenCloud File Provider.xcscheme │ ├── OpenCloud File ProviderUI.xcscheme │ ├── OpenCloud Intents.xcscheme │ ├── OpenCloud Share Extension.xcscheme │ ├── OpenCloud.xcscheme │ ├── OpenCloudApp.xcscheme │ ├── OpenCloudScreenshotsTests.xcscheme │ └── OpenCloudTests.xcscheme ├── OpenCloud ├── App Controllers │ ├── AccountController+ExtraItems.swift │ ├── AccountController+ItemActions.swift │ ├── AppRootViewController+ItemActions.swift │ └── AppRootViewController.swift ├── AppDelegate.swift ├── Bookmarks │ ├── BookmarkInfoViewController.swift │ ├── BookmarkViewController.swift │ ├── Composer │ │ ├── BookmarkComposer.swift │ │ └── BookmarkComposerConfiguration.swift │ └── Setup │ │ ├── BookmarkSetupStepViewController.swift │ │ ├── BookmarkSetupViewController.swift │ │ └── Steps │ │ ├── BookmarkSetupStepAuthenticateViewController.swift │ │ ├── BookmarkSetupStepEnterURLViewController.swift │ │ ├── BookmarkSetupStepEnterUsernameViewController.swift │ │ ├── BookmarkSetupStepFinishedViewController.swift │ │ ├── BookmarkSetupStepIntroViewController.swift │ │ ├── BookmarkSetupStepPrepopulateViewController.swift │ │ └── CertificateSummaryView.swift ├── Client │ ├── Actions │ │ ├── Action+UserInterface.swift │ │ ├── Action.swift │ │ ├── Actions+Extensions │ │ │ ├── AddToSidebarAction.swift │ │ │ ├── AvailableOfflineAction.swift │ │ │ ├── CollaborateAction.swift │ │ │ ├── CopyAction.swift │ │ │ ├── CreateDocumentAction.swift │ │ │ ├── CutAction.swift │ │ │ ├── DeleteAction.swift │ │ │ ├── DiscardSceneAction.swift │ │ │ ├── DisplayExifMetadataAction.swift │ │ │ ├── DocumentEditingAction.swift │ │ │ ├── DuplicateAction.swift │ │ │ ├── FavoriteAction.swift │ │ │ ├── ImportPasteboardAction.swift │ │ │ ├── MoveAction.swift │ │ │ ├── OpenInAction.swift │ │ │ ├── OpenSceneAction.swift │ │ │ ├── PDFGotoPageAction.swift │ │ │ ├── PresentationModeAction.swift │ │ │ ├── RemoveFromSidebarAction.swift │ │ │ ├── RenameAction.swift │ │ │ ├── UnfavoriteAction.swift │ │ │ ├── UnshareAction.swift │ │ │ ├── UploadBaseAction.swift │ │ │ ├── UploadCameraMediaAction.swift │ │ │ ├── UploadFileAction.swift │ │ │ └── UploadMediaAction.swift │ │ ├── ClientDirectoryPickerViewController.swift │ │ ├── EditDocumentViewController.swift │ │ ├── ImageMetadataViewController.swift │ │ ├── Scanner │ │ │ ├── FixedHeightImageView.swift │ │ │ ├── ScanAction.swift │ │ │ └── ScanViewController.swift │ │ └── Shortcuts │ │ │ ├── CreateShortcutFileAction.swift │ │ │ ├── CreateShortcutFileViewController.swift │ │ │ └── OpenShortcutFileAction.swift │ ├── ClientActivityCell.swift │ ├── ClientActivityViewController.swift │ ├── ClientFilelistTableViewController.swift │ ├── ClientSessionManager.swift │ ├── ExternalBrowserBusyHandler.swift │ ├── HelpAndSupportViewController.swift │ ├── PhotoAlbumTableViewCell.swift │ ├── PhotoAlbumTableViewController.swift │ ├── PhotoSelectionViewCell.swift │ ├── PhotoSelectionViewController.swift │ └── Viewer │ │ ├── DisplayExtension.swift │ │ ├── DisplayHostViewController.swift │ │ ├── DisplayViewController.swift │ │ ├── DownloadItemsHUDViewController.swift │ │ ├── Image │ │ └── ImageDisplayViewController.swift │ │ ├── Media │ │ └── MediaDisplayViewController.swift │ │ ├── PDF │ │ ├── PDFOutlineViewController.swift │ │ ├── PDFSearchResultsView.swift │ │ ├── PDFSearchTableViewCell.swift │ │ ├── PDFSearchViewController.swift │ │ ├── PDFThumbnailCollectionViewCell.swift │ │ ├── PDFThumbnailsCollectionViewController.swift │ │ ├── PDFTocItem.swift │ │ ├── PDFTocTableViewCell.swift │ │ ├── PDFTocTableViewController.swift │ │ └── PDFViewerViewController.swift │ │ ├── QuickLook │ │ └── PreviewViewController.swift │ │ ├── Shortcut File │ │ └── ShortcutFileDisplayViewController.swift │ │ └── WebView │ │ └── WebViewDisplayViewController.swift ├── Diagnostic │ ├── DiagnosticManager.swift │ ├── DiagnosticViewController.swift │ ├── OCScanJobActivity+DiagnosticGenerator.swift │ └── OCSyncRecordActivity+DiagnosticGenerator.swift ├── FileProvider Integration │ └── FileProviderInterfaceManager.swift ├── Import │ └── ImportFilesController.swift ├── Key Commands │ └── KeyCommands.swift ├── Licensing │ ├── Offers │ │ ├── LicenseOfferButton.swift │ │ ├── LicenseOfferView.swift │ │ └── LicenseOffersViewController.swift │ ├── Product List │ │ ├── LicenseInAppProductListViewController.swift │ │ └── LicenseInAppPurchaseFeatureView.swift │ ├── Tools │ │ └── OCLicenseManager+AppStore.swift │ └── Transactions │ │ └── LicenseTransactionsViewController.swift ├── Media Uploads │ ├── CoreImage Extensions │ │ └── CIImage+Extensions.swift │ ├── MediaUploadActivity.swift │ ├── MediaUploadOperation.swift │ ├── MediaUploadQueue.swift │ ├── MediaUploadStorage.swift │ └── PhotoKit Extensions │ │ ├── PHAsset+Upload.swift │ │ └── PHPhotoLibrary+Extension.swift ├── Messages │ ├── CardIssueMessagePresenter.swift │ ├── MessageGroupCell.swift │ ├── MessageQueueExample.swift │ └── MessageTableViewController.swift ├── OpenCloud.entitlements ├── Release Notes │ ├── ReleaseNotes.plist │ ├── ReleaseNotesHostViewController.swift │ └── ReleaseNotesTableViewController.swift ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── branding-icon-1024x1024.png │ │ │ ├── branding-icon-120x120.png │ │ │ ├── branding-icon-152x152.png │ │ │ ├── branding-icon-167x167.png │ │ │ ├── branding-icon-180x180.png │ │ │ ├── branding-icon-20x20.png │ │ │ ├── branding-icon-29x29.png │ │ │ ├── branding-icon-40x40.png │ │ │ ├── branding-icon-58x58.png │ │ │ ├── branding-icon-60x60.png │ │ │ ├── branding-icon-76x76.png │ │ │ ├── branding-icon-80x80.png │ │ │ └── branding-icon-87x87.png │ │ ├── Contents.json │ │ ├── arrow-down.imageset │ │ │ ├── Contents.json │ │ │ └── down 2.pdf │ │ ├── arrow-up.imageset │ │ │ ├── Contents.json │ │ │ └── up 2.pdf │ │ ├── arrow.3.trianglepath.imageset │ │ │ ├── Contents.json │ │ │ └── arrow.3.trianglepath.png │ │ ├── available-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── available-offline.png │ │ │ ├── available-offline@2x.png │ │ │ └── available-offline@3x.png │ │ ├── biometrical-faceid.imageset │ │ │ ├── Contents.json │ │ │ └── biometrical-faceid.pdf │ │ ├── biometrical-touchid.imageset │ │ │ ├── Contents.json │ │ │ └── biometrical.pdf │ │ ├── camera-badge.imageset │ │ │ ├── Contents.json │ │ │ └── camera-badge.pdf │ │ ├── camera-info.imageset │ │ │ ├── Contents.json │ │ │ └── camera-info.pdf │ │ ├── camera.imageset │ │ │ ├── Contents.json │ │ │ └── camera.pdf │ │ ├── check-mark.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark.pdf │ │ ├── checkmark_circle.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark_circle.pdf │ │ ├── chevron-small-light.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-small-light.pdf │ │ ├── chevron-small.imageset │ │ │ ├── Contents.json │ │ │ └── chevron-small.pdf │ │ ├── chevron.left.imageset │ │ │ ├── Contents.json │ │ │ └── chevron_left.pdf │ │ ├── chevron.right.imageset │ │ │ ├── Contents.json │ │ │ └── chevron_right.pdf │ │ ├── copy-file.imageset │ │ │ ├── Contents.json │ │ │ └── copy-icon.pdf │ │ ├── duplicate-file.imageset │ │ │ ├── Contents.json │ │ │ └── duplicate-icon.pdf │ │ ├── folder.imageset │ │ │ ├── Contents.json │ │ │ └── folder-icon.pdf │ │ ├── ic_pdf_go_to_page.imageset │ │ │ ├── Contents.json │ │ │ └── ic_open_in_new_24px.pdf │ │ ├── ic_pdf_outline.imageset │ │ │ ├── Contents.json │ │ │ └── ic_list_24px.pdf │ │ ├── ic_pdf_view_multipage.imageset │ │ │ ├── Contents.json │ │ │ └── ic_border_all_24px.pdf │ │ ├── info-icon.imageset │ │ │ ├── Contents.json │ │ │ └── info-icon.pdf │ │ ├── lock_shield.imageset │ │ │ ├── Contents.json │ │ │ └── lock_shield.pdf │ │ ├── more-dots.imageset │ │ │ ├── Contents.json │ │ │ ├── more-dots.png │ │ │ ├── more-dots@2x.png │ │ │ └── more-dots@3x.png │ │ ├── multiply_circle.imageset │ │ │ ├── Contents.json │ │ │ └── multiply_circle.pdf │ │ ├── open-in.imageset │ │ │ ├── Contents.json │ │ │ └── open-in.pdf │ │ ├── person.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_person_black_24pt_1x.png │ │ │ ├── baseline_person_black_24pt_2x.png │ │ │ └── baseline_person_black_24pt_3x.png │ │ ├── person_circle.imageset │ │ │ ├── Contents.json │ │ │ └── person_circle.pdf │ │ ├── power.imageset │ │ │ ├── Contents.json │ │ │ └── power.png │ │ ├── raw-badge.imageset │ │ │ ├── Contents.json │ │ │ └── raw_badge.pdf │ │ ├── recents.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_access_time_black_24pt_1x.png │ │ │ ├── baseline_access_time_black_24pt_2x.png │ │ │ └── baseline_access_time_black_24pt_3x.png │ │ ├── round-add-button.imageset │ │ │ ├── Contents.json │ │ │ └── round-add-button-4.pdf │ │ ├── select.imageset │ │ │ ├── Contents.json │ │ │ └── Selection.pdf │ │ ├── shared.imageset │ │ │ ├── Contents.json │ │ │ └── shared-2.pdf │ │ ├── sidebar.leading.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.sidebar.leading.badge.minus.svg │ │ ├── sidebar.leading.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.sidebar.leading.badge.plus.svg │ │ ├── square.and.pencil.imageset │ │ │ ├── Contents.json │ │ │ └── square.and.pencil.png │ │ ├── star.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_star_black_24pt_1x.png │ │ │ ├── baseline_star_black_24pt_2x.png │ │ │ └── baseline_star_black_24pt_3x.png │ │ ├── trash.imageset │ │ │ ├── Contents.json │ │ │ └── trash-25.pdf │ │ ├── unavailable-offline.imageset │ │ │ ├── Contents.json │ │ │ ├── unavailable-offline.png │ │ │ ├── unavailable-offline@2x.png │ │ │ └── unavailable-offline@3x.png │ │ ├── unstar.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_star_border_black_24pt_1x.png │ │ │ ├── baseline_star_border_black_24pt_2x.png │ │ │ └── baseline_star_border_black_24pt_3x.png │ │ └── xmark.imageset │ │ │ ├── Contents.json │ │ │ └── xmark.pdf │ ├── Info.plist │ ├── InfoPlist.xcstrings │ ├── LaunchScreen.storyboard │ ├── Localizable.xcstrings │ ├── PLCrashReporter.LICENSE │ └── Theming │ │ ├── Branding.json │ │ ├── Branding.plist │ │ ├── branding-assets-input.xcfilelist │ │ ├── branding-assets-output.xcfilelist │ │ ├── branding-assets │ │ └── .do-not-remove │ │ ├── eu.opencloud.ios │ │ ├── branding-background.png │ │ ├── branding-icon.png │ │ ├── branding-logo.png │ │ ├── branding-sidebar-link-icon.png │ │ ├── branding-splashscreen-background.png │ │ ├── branding-splashscreen-logo-transparent-UNUSED.png │ │ └── branding-splashscreen-logo.png │ │ └── generate.sh ├── SDK Extensions │ ├── OCBookmarkManager+Management.swift │ ├── OCCertificate+Extension.swift │ └── OCExtensionType+Extension.swift ├── SceneDelegate.swift ├── Settings │ ├── AcknowledgementsTableViewController.swift │ ├── AutoUploadSettingsSection.swift │ ├── BackgroundUploadsSettingsSection.swift │ ├── CellularSettingsViewController.swift │ ├── Certificate Management │ │ └── CertificateManagementViewController.swift │ ├── DataSettingsSection.swift │ ├── DisplaySettingsSection.swift │ ├── LogFilesViewController.swift │ ├── LogSettingsViewController.swift │ ├── MediaExportSettingsSection.swift │ ├── MediaFilesSettings.swift │ ├── MediaUploadSettingsViewController.swift │ ├── MoreSettingsSection.swift │ ├── ProPhotoUploadSettingsSection.swift │ ├── PurchasesSettingsSection.swift │ ├── SearchSettingsViewController.swift │ ├── SecuritySettingsSection.swift │ ├── SettingsSection.swift │ ├── SettingsViewController.swift │ └── UserInterfaceSettingsSection.swift ├── Shortcut Files │ ├── INIFile+ShortcutResolution.swift │ ├── INIFile+URLFile.swift │ └── INIFile.swift ├── Tasks │ ├── BackgroundFetchUpdateTaskAction.swift │ ├── InstantMediaUploadTaskExtension.swift │ ├── PHAsset+InstantUploads.swift │ ├── PendingMediaUploadTaskExtension.swift │ ├── ScheduledTaskExtension.swift │ ├── ScheduledTaskManager.swift │ └── UNUserNotificationCenter+Extensions.swift ├── Theming │ └── ServerListToolCell.swift ├── Tools │ ├── DisplaySleepPreventer.swift │ ├── FileManager+Extension.swift │ ├── KVOWaiter.swift │ ├── PasswordManagerAccess.swift │ ├── URL+Extensions.swift │ └── VendorServices+App.swift ├── UI Elements │ ├── BorderedLabel.swift │ ├── CollapsibleProgressBar.swift │ ├── ImageScrollView.swift │ └── TextViewController.swift └── UIKit Extensions │ ├── Array+Extension.swift │ ├── UIAlertViewController+SystemPermissions.swift │ └── UINavigationController+Extension.swift ├── OpenCloudAppFramework ├── AppLock Settings │ ├── AppLockSettings.h │ └── AppLockSettings.m ├── Branding │ ├── Branding.h │ ├── Branding.m │ ├── BrandingClassSettingsSource.h │ ├── BrandingClassSettingsSource.m │ ├── OCThemeValues.h │ └── OCThemeValues.m ├── Building │ ├── BuildOptions.h │ └── BuildOptions.m ├── Confidential │ ├── ConfidentialManager.h │ └── ConfidentialManager.m ├── Display Settings │ ├── DisplaySettings.h │ └── DisplaySettings.m ├── File Provider Services │ ├── OCBookmark+FPServices.h │ ├── OCBookmark+FPServices.m │ ├── OCCore+FPServices.h │ ├── OCCore+FPServices.m │ ├── OCFileProviderService.h │ ├── OCFileProviderServiceSession.h │ ├── OCFileProviderServiceSession.m │ ├── OCFileProviderServiceStandby.h │ ├── OCFileProviderServiceStandby.m │ ├── OCFileProviderSettings.h │ ├── OCFileProviderSettings.m │ ├── OCVault+FPServices.h │ └── OCVault+FPServices.m ├── Foundation Extensions │ ├── NSDate+ComputedTimes.h │ ├── NSDate+ComputedTimes.m │ ├── NSObject+AnnotatedProperties.h │ ├── NSObject+AnnotatedProperties.m │ ├── NSString+ByteCountParser.h │ ├── NSString+ByteCountParser.m │ ├── NSURL+OCVaultTools.h │ └── NSURL+OCVaultTools.m ├── Licensing │ ├── Core Integration │ │ ├── OCCore+LicenseEnvironment.h │ │ └── OCCore+LicenseEnvironment.m │ ├── Entitlement │ │ ├── OCLicenseEntitlement.h │ │ └── OCLicenseEntitlement.m │ ├── Environment │ │ ├── OCLicenseEnvironment.h │ │ └── OCLicenseEnvironment.m │ ├── Feature │ │ ├── OCLicenseFeature.h │ │ └── OCLicenseFeature.m │ ├── Manager │ │ ├── OCLicenseManager+Internal.h │ │ ├── OCLicenseManager.h │ │ ├── OCLicenseManager.m │ │ ├── OCLicenseObserver.h │ │ └── OCLicenseObserver.m │ ├── OCLicenseTypes.h │ ├── Offer │ │ ├── OCLicenseDuration.h │ │ ├── OCLicenseDuration.m │ │ ├── OCLicenseOffer.h │ │ └── OCLicenseOffer.m │ ├── Product │ │ ├── OCLicenseProduct.h │ │ └── OCLicenseProduct.m │ ├── Providers │ │ ├── App Store │ │ │ ├── Items │ │ │ │ ├── OCLicenseAppStoreItem.h │ │ │ │ └── OCLicenseAppStoreItem.m │ │ │ ├── OCLicenseAppStoreProvider.h │ │ │ ├── OCLicenseAppStoreProvider.m │ │ │ ├── Parser Support │ │ │ │ ├── AppleIncRootCertificate.cer │ │ │ │ ├── NSDate+RFC3339.h │ │ │ │ ├── NSDate+RFC3339.m │ │ │ │ ├── OCASN1.h │ │ │ │ └── OCASN1.m │ │ │ └── Receipt │ │ │ │ ├── OCLicenseAppStoreReceipt.h │ │ │ │ ├── OCLicenseAppStoreReceipt.m │ │ │ │ ├── OCLicenseAppStoreReceiptInAppPurchase.h │ │ │ │ └── OCLicenseAppStoreReceiptInAppPurchase.m │ │ ├── EMM │ │ │ ├── OCLicenseEMMProvider.h │ │ │ └── OCLicenseEMMProvider.m │ │ ├── Enterprise │ │ │ ├── OCLicenseEnterpriseProvider.h │ │ │ └── OCLicenseEnterpriseProvider.m │ │ ├── Free │ │ │ ├── OCLicenseFreeProvider.h │ │ │ └── OCLicenseFreeProvider.m │ │ ├── OCLicenseProvider.h │ │ ├── OCLicenseProvider.m │ │ └── QA │ │ │ ├── OCLicenseQAProvider.h │ │ │ └── OCLicenseQAProvider.m │ └── Transactions │ │ ├── OCLicenseTransaction.h │ │ └── OCLicenseTransaction.m ├── Notifications │ ├── NotificationAuthErrorForwarder.h │ ├── NotificationAuthErrorForwarder.m │ ├── NotificationManager.h │ ├── NotificationManager.m │ ├── NotificationMessagePresenter.h │ └── NotificationMessagePresenter.m ├── OpenCloudApp.h ├── Resources │ ├── Info.plist │ └── Localizable.xcstrings ├── SDK Extensions │ ├── OCBookmark+AppExtensions.h │ ├── OCBookmark+AppExtensions.m │ ├── OCCore+BundleImport.h │ └── OCCore+BundleImport.m ├── Search │ ├── OCQueryCondition+SearchSegmenter.h │ ├── OCQueryCondition+SearchSegmenter.m │ ├── OCSearchSegment.h │ ├── OCSearchSegment.m │ └── Saved Searches │ │ ├── OCSavedSearch.h │ │ ├── OCSavedSearch.m │ │ ├── OCVault+SavedSearches.h │ │ └── OCVault+SavedSearches.m ├── Sidebar Items │ ├── OCSidebarItem.h │ ├── OCSidebarItem.m │ ├── OCVault+SidebarItems.h │ └── OCVault+SidebarItems.m ├── Tools │ ├── NSData+Encoding.h │ └── NSData+Encoding.m ├── UIKit Extensions │ ├── UIViewController+HostBundleID.h │ └── UIViewController+HostBundleID.m ├── VFS │ ├── OCVault+VFSManager.h │ ├── OCVault+VFSManager.m │ ├── VFSManager.h │ └── VFSManager.m ├── View Providers │ ├── OCImage+ViewProvider.h │ ├── OCImage+ViewProvider.m │ ├── OCResourceTextPlaceholder+ViewProvider.h │ ├── OCResourceTextPlaceholder+ViewProvider.m │ ├── OCViewHost.h │ ├── OCViewHost.m │ ├── UIImage+ViewProvider.h │ └── UIImage+ViewProvider.m └── Views │ ├── OCCircularContentView.h │ ├── OCCircularContentView.m │ ├── OCCircularImageView.h │ ├── OCCircularImageView.m │ ├── OCCircularTextView.h │ └── OCCircularTextView.m ├── OpenCloudAppFrameworkTests ├── Info.plist ├── LicensingTests.m └── SearchSegmentationTests.m ├── OpenCloudAppShared ├── App Extensions │ └── AppExtensionNavigationController.swift ├── AppLock │ ├── AppLockManager.swift │ ├── AppLockWindow.swift │ ├── PasscodeSetupCoordinator.swift │ ├── PasscodeViewController.swift │ └── PasscodeViewController.xib ├── Branding │ ├── BrandView.swift │ └── Branding+App.swift ├── Client │ ├── Account │ │ ├── Connection │ │ │ ├── AccountConnection+ItemActions.swift │ │ │ ├── AccountConnection.swift │ │ │ ├── AccountConnectionConsumer.swift │ │ │ ├── AccountConnectionPool.swift │ │ │ ├── AccountConnectionRichStatus.swift │ │ │ └── Authentication Error Handling │ │ │ │ ├── AccountAuthenticationUpdater.swift │ │ │ │ ├── AccountAuthenticationUpdaterPasswordPromptViewController.swift │ │ │ │ └── AccountConnectionAuthErrorConsumer.swift │ │ ├── Controller │ │ │ ├── AccountConnectionErrorHandler.swift │ │ │ ├── AccountController.swift │ │ │ ├── AccountControllerSearchViewController.swift │ │ │ ├── AccountControllerSection.swift │ │ │ ├── AccountControllerSpacesGridViewController.swift │ │ │ └── BrowserNavigationBookmark+AccountController.swift │ │ └── Messages │ │ │ ├── MessageGroup.swift │ │ │ └── MessageSelector.swift │ ├── Actions │ │ ├── Action.swift │ │ └── Implementations │ │ │ ├── ClientWebAppViewController.swift │ │ │ ├── CreateFolderAction.swift │ │ │ └── OpenInWebAppAction.swift │ ├── Collection Views │ │ ├── Cells │ │ │ ├── AccountControllerCell.swift │ │ │ ├── ActionCell.swift │ │ │ ├── DriveGridCell.swift │ │ │ ├── DriveHeaderCell.swift │ │ │ ├── DriveListCell.swift │ │ │ ├── ExpandableResourceCell.swift │ │ │ ├── SavedSearchCell.swift │ │ │ ├── ThemeableCollectionViewCell.swift │ │ │ ├── ThemeableCollectionViewListCell.swift │ │ │ ├── UniversalItemListCell Content Providers │ │ │ │ ├── OCIdentity+UniversalItemListCellContentProvider.swift │ │ │ │ ├── OCItem+UniversalItemListCellContentProvider.swift │ │ │ │ ├── OCItemPolicy+UniversalItemListCellContentProvider.swift │ │ │ │ ├── OCShare+UniversalItemListCellContentProvider.swift │ │ │ │ └── OCShareRole+UniversalItemListCellContentProvider.swift │ │ │ ├── UniversalItemListCell.swift │ │ │ └── ViewCell.swift │ │ ├── CollectionSidebarAction.swift │ │ ├── CollectionSidebarViewController.swift │ │ ├── CollectionViewAction.swift │ │ ├── CollectionViewCellConfiguration.swift │ │ ├── CollectionViewCellProvider+StandardImplementations.swift │ │ ├── CollectionViewCellProvider.swift │ │ ├── CollectionViewController.swift │ │ ├── CollectionViewSection.swift │ │ ├── CollectionViewSupplementaryCellProvider+StandardImplementations.swift │ │ ├── CollectionViewSupplementaryCellProvider.swift │ │ ├── CollectionViewSupplementaryItem.swift │ │ └── Supplementary Cells │ │ │ ├── TitleSupplementaryCell.swift │ │ │ └── ViewSupplementaryCell.swift │ ├── Context │ │ ├── ClientContext.swift │ │ └── SortedItemDataSource.swift │ ├── Data Item Interactions │ │ ├── OCAction+Interactions.swift │ │ ├── OCDataItem+InteractionProtocols.swift │ │ ├── OCDrive+Interactions.swift │ │ ├── OCItem+Interactions.swift │ │ ├── OCItemPolicy+Interactions.swift │ │ ├── OCLocation+Interactions.swift │ │ ├── OCSavedSearch+Interactions.swift │ │ └── OCShare+Interactions.swift │ ├── Data Source Conditions │ │ └── DataSourceCondition.swift │ ├── Navigation Revocation │ │ ├── NavigationRevocationAction.swift │ │ ├── NavigationRevocationManager.swift │ │ ├── NavigationRevocationTrigger.swift │ │ └── UIViewController+NavigationRevocation.swift │ ├── Password Composer │ │ └── PasswordComposerViewController.swift │ ├── Resource Sources │ │ ├── ResourceItemIcon.swift │ │ └── ResourceSourceItemIcons.swift │ ├── Search │ │ ├── Identity Search │ │ │ └── RecipientSearchScope.swift │ │ ├── Item Search │ │ │ ├── ItemSearchSuggestionsViewController.swift │ │ │ ├── Scopes │ │ │ │ ├── AccountSearchScope.swift │ │ │ │ ├── ItemSearchScope.swift │ │ │ │ ├── ServerSideSearchScope.swift │ │ │ │ └── SingleFolderSearchScope.swift │ │ │ └── Tokenizer │ │ │ │ ├── CustomQuerySearchTokenizer.swift │ │ │ │ └── OCQueryCondition+SearchToken.swift │ │ ├── Scopes │ │ │ ├── SearchScope+Registry.swift │ │ │ ├── SearchScope.swift │ │ │ └── SearchScopeDescriptor.swift │ │ ├── SearchViewController.swift │ │ └── Tokenizer │ │ │ ├── SearchElement.swift │ │ │ └── SearchTokenizer.swift │ ├── Sharing │ │ ├── ShareViewController.swift │ │ └── SharingViewController.swift │ ├── Sidebar Items │ │ ├── OCSidebarItem+Cell.swift │ │ └── OCSidebarItem+Interactions.swift │ ├── Static Elements │ │ └── Options │ │ │ ├── OptionGroup.swift │ │ │ └── OptionItem.swift │ ├── User Interface │ │ ├── BottomButtonBar.swift │ │ ├── ComposedMessageView.swift │ │ ├── GradientView.swift │ │ ├── IssuesCardViewController.swift │ │ ├── ItemLayout.swift │ │ ├── MessageView.swift │ │ ├── NamingViewController.swift │ │ ├── PopupButtonController.swift │ │ ├── RoundCornerBackgroundView.swift │ │ ├── RoundedLabel.swift │ │ ├── SelectionCheckmarkButton.swift │ │ ├── SortBar.swift │ │ └── SortMethod.swift │ └── View Controllers │ │ ├── ClientItemViewController.swift │ │ ├── ClientSharedByMeViewController.swift │ │ ├── ClientSharedWithMeViewController.swift │ │ ├── ClientSidebarViewController.swift │ │ ├── Location Breadcrumbs │ │ ├── ClientLocationBarController.swift │ │ ├── ClientLocationPopupButton.swift │ │ └── OCLocation+Breadcrumbs.swift │ │ └── Location Picker │ │ ├── ClientLocationPicker.swift │ │ └── ClientLocationPickerViewController.swift ├── Down.LICENSE ├── Foundation Extensions │ ├── Calendar+Extension.swift │ └── String+Extension.swift ├── Info.plist ├── Intent │ └── OCLicenseManager+Setup.swift ├── Licensing │ └── LicenseRequirements.swift ├── OpenCloudAppShared.h ├── PocketSVG.LICENSE ├── Resources │ └── Assets.xcassets │ │ ├── cloud-available-offline.imageset │ │ ├── Contents.json │ │ ├── cloud-available-offline.png │ │ ├── cloud-available-offline@2x.png │ │ └── cloud-available-offline@3x.png │ │ ├── cloud-local-only.imageset │ │ ├── Contents.json │ │ ├── cloud-local-only.png │ │ ├── cloud-local-only@2x.png │ │ └── cloud-local-only@3x.png │ │ ├── cloud-only.imageset │ │ ├── Contents.json │ │ ├── cloud-only.png │ │ ├── cloud-only@2x.png │ │ └── cloud-only@3x.png │ │ ├── cloud-unavailable-offline.imageset │ │ ├── Contents.json │ │ ├── cloud-unavailable-offline.png │ │ ├── cloud-unavailable-offline@2x.png │ │ └── cloud-unavailable-offline@3x.png │ │ ├── group.imageset │ │ ├── Contents.json │ │ ├── baseline_group_black_24pt_1x.png │ │ ├── baseline_group_black_24pt_2x.png │ │ └── baseline_group_black_24pt_3x.png │ │ └── link.imageset │ │ ├── Contents.json │ │ └── public-4.pdf ├── SDK Extensions │ ├── OCAction+UIAction.swift │ ├── OCBookmark+Extension.swift │ ├── OCBookmarkManager+Locking.swift │ ├── OCBookmarkManager+Management.swift │ ├── OCCore+Extension.swift │ ├── OCFileProviderServiceSession+UploadByFileProvider.swift │ ├── OCIssue+DisplayIssues.swift │ ├── OCIssue+Extension.swift │ ├── OCItem+AppExtension.swift │ ├── OCItem+Extension.swift │ ├── OCItemTracker.swift │ ├── OCMessage+Extension.swift │ └── OCShare+Extension.swift ├── Tools │ ├── AppStatistics.swift │ ├── DispatchQueueTools.swift │ ├── GitInfo.swift │ ├── Log.swift │ ├── Synchronized.swift │ └── VendorServices.swift ├── UIKit Extension │ ├── LAContext+Extension.swift │ ├── NSLayoutConstraint+Extension.swift │ ├── NSMutableAttributedString+AppendStyled.swift │ ├── UIAlertController+OCIssue.swift │ ├── UIButton+Extension.swift │ ├── UICellAccessory+Extension.swift │ ├── UICollectionViewDiffableDataSource+Tools.swift │ ├── UIColor+Extension.swift │ ├── UIDevice+UIUserInterfaceIdiom.swift │ ├── UIFont+Weight.swift │ ├── UIImage+Extension.swift │ ├── UIKeyCommand+Extension.swift │ ├── UILabel+Extension.swift │ ├── UINavigationItem+Extension.swift │ ├── UITableView+Extension.swift │ ├── UITextField+Extension.swift │ ├── UIView+Extension.swift │ ├── UIView+OCDataItem.swift │ └── UIViewController+Extension.swift └── User Interface │ ├── Alert View │ ├── AlertView.swift │ └── AlertViewController.swift │ ├── Browser Navigation Controller │ ├── BrowserNavigationBookmark.swift │ ├── BrowserNavigationHistory.swift │ ├── BrowserNavigationItem.swift │ ├── BrowserNavigationViewController.swift │ └── UIViewController+BrowserNavigation.swift │ ├── Card Presentation Controller │ ├── CardPresentationController.swift │ ├── CardTransitionDelegate.swift │ └── CardViewController.swift │ ├── Confidential │ ├── ConfidentialContentView.swift │ └── SecureTextField.swift │ ├── Cursor Support │ └── PointerEffect.swift │ ├── EmbeddingViewController │ └── EmbeddingViewController.swift │ ├── Gesture Recognizer │ └── ActionTapGestureRecognizer.swift │ ├── More │ ├── FrameViewController.swift │ ├── MoreStaticTableViewController.swift │ └── MoreViewHeader.swift │ ├── Navigation Content │ ├── NavigationContent.swift │ ├── NavigationContentItem.swift │ └── UINavigationItem+NavigationContent.swift │ ├── Notification │ └── NotificationHUDViewController.swift │ ├── Progress │ ├── ProgressHUDViewController.swift │ ├── ProgressIndicatorViewController.swift │ ├── ProgressSummarizer.swift │ └── ProgressView.swift │ ├── SegmentView │ ├── SegmentView.swift │ ├── SegmentViewItem.swift │ ├── SegmentViewItemView.swift │ └── UIView+EmbedAndLayout.swift │ ├── SharedKeyCommands.swift │ ├── State Restoration │ ├── Actions │ │ ├── AppStateActionConnect.swift │ │ ├── AppStateActionGoToPersonalFolder.swift │ │ ├── AppStateActionOpenItem.swift │ │ ├── AppStateActionRestoreNavigationBookmark.swift │ │ └── AppStateActionRevealItem.swift │ ├── AppStateAction.swift │ └── NSUserActivity+SaveRestore.swift │ ├── StaticTableView │ ├── StaticTableViewController.swift │ ├── StaticTableViewRow.swift │ └── StaticTableViewSection.swift │ ├── Theme │ ├── CSS │ │ ├── NSObject+ThemeCSS.swift │ │ ├── ThemeCSS+AutoSelectors.swift │ │ ├── ThemeCSS+SystemColors.swift │ │ ├── ThemeCSS.swift │ │ ├── ThemeCSSRecord.swift │ │ ├── UIView+ThemeCSS.swift │ │ └── Views │ │ │ ├── ThemeCSSButton.swift │ │ │ ├── ThemeCSSLabel.swift │ │ │ ├── ThemeCSSProgressView.swift │ │ │ ├── ThemeCSSTextField.swift │ │ │ └── ThemeCSSView.swift │ ├── NSObject+ThemeApplication.swift │ ├── Resources │ │ ├── ThemeImage.swift │ │ ├── ThemeResource.swift │ │ └── ThemeTVGResource.swift │ ├── TVG │ │ ├── TVGImage.swift │ │ ├── VectorImage.swift │ │ └── VectorImageView.swift │ ├── Theme.swift │ ├── ThemeCollection.swift │ ├── ThemeStyle+DefaultStyles.swift │ ├── ThemeStyle+Extensions.swift │ ├── ThemeStyle.swift │ └── UI │ │ ├── ResourceViewHost.swift │ │ ├── ThemeButton.swift │ │ ├── ThemeCertificateViewController.swift │ │ ├── ThemeNavigationController.swift │ │ ├── ThemeRoundedButton.swift │ │ ├── ThemeTableViewCell.swift │ │ ├── ThemeView.swift │ │ ├── ThemeWindow.swift │ │ └── ThemedAlertController.swift │ ├── UserInterfaceContext.swift │ └── View Providers │ └── OCResourceText+ViewProvider.swift ├── OpenCloudAppTests └── Info.plist ├── OpenCloudTests ├── Info.plist └── Metadata │ └── MetadataDocumentationTests.swift ├── PrivacyInfo.xcprivacy ├── README.md ├── SETUP.md ├── SUPPORT.md ├── THIRD_PARTY.txt ├── enterprise ├── register │ ├── Gemfile │ └── registerOpencloudApp.rb └── resign │ ├── resignInspector.sh │ └── resignOpencloudApp ├── fastlane ├── Appfile ├── Deliverfile ├── Fastfile ├── Matchfile ├── Pluginfile ├── Snapfile ├── actions │ ├── app_version.rb │ └── release_notes.rb ├── badge.svg ├── metadata-emm │ ├── copyright.txt │ ├── en-US │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt ├── metadata-opencloud-online │ ├── copyright.txt │ ├── en-US │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt ├── metadata │ ├── copyright.txt │ ├── en-US │ │ ├── apple_tv_privacy_policy.txt │ │ ├── description.txt │ │ ├── keywords.txt │ │ ├── marketing_url.txt │ │ ├── privacy_url.txt │ │ ├── promotional_text.txt │ │ ├── release_notes.txt │ │ ├── subtitle.txt │ │ └── support_url.txt │ ├── primary_category.txt │ ├── primary_first_sub_category.txt │ ├── primary_second_sub_category.txt │ ├── secondary_category.txt │ ├── secondary_first_sub_category.txt │ └── secondary_second_sub_category.txt └── screenshots │ ├── ady │ ├── keyword.strings │ └── title.strings │ ├── af_ZA │ ├── keyword.strings │ └── title.strings │ ├── ak │ ├── keyword.strings │ └── title.strings │ ├── ar │ ├── keyword.strings │ └── title.strings │ ├── ast │ ├── keyword.strings │ └── title.strings │ ├── az │ ├── keyword.strings │ └── title.strings │ ├── be │ ├── keyword.strings │ └── title.strings │ ├── bg │ ├── keyword.strings │ └── title.strings │ ├── bg@Cyrl │ ├── keyword.strings │ └── title.strings │ ├── bg_BG │ ├── keyword.strings │ └── title.strings │ ├── bn_BD │ ├── keyword.strings │ └── title.strings │ ├── bn_IN │ ├── keyword.strings │ └── title.strings │ ├── bs │ ├── keyword.strings │ └── title.strings │ ├── ca │ ├── keyword.strings │ └── title.strings │ ├── ca@valencia │ ├── keyword.strings │ └── title.strings │ ├── cs │ ├── keyword.strings │ └── title.strings │ ├── cy_GB │ ├── keyword.strings │ └── title.strings │ ├── da │ ├── keyword.strings │ └── title.strings │ ├── da_DK │ ├── keyword.strings │ └── title.strings │ ├── de-DE │ ├── keyword.strings │ └── title.strings │ ├── de │ ├── keyword.strings │ └── title.strings │ ├── de_AT │ ├── keyword.strings │ └── title.strings │ ├── de_CH │ ├── keyword.strings │ └── title.strings │ ├── el │ ├── keyword.strings │ └── title.strings │ ├── en-GB │ ├── keyword.strings │ └── title.strings │ ├── en_CA │ ├── keyword.strings │ └── title.strings │ ├── en_US │ ├── keyword.strings │ └── title.strings │ ├── eo │ ├── keyword.strings │ └── title.strings │ ├── es │ ├── keyword.strings │ └── title.strings │ ├── es_419 │ ├── keyword.strings │ └── title.strings │ ├── es_AR │ ├── keyword.strings │ └── title.strings │ ├── es_CL │ ├── keyword.strings │ └── title.strings │ ├── es_EC │ ├── keyword.strings │ └── title.strings │ ├── es_MX │ ├── keyword.strings │ └── title.strings │ ├── es_US │ ├── keyword.strings │ └── title.strings │ ├── et_EE │ ├── keyword.strings │ └── title.strings │ ├── eu │ ├── keyword.strings │ └── title.strings │ ├── fa │ ├── keyword.strings │ └── title.strings │ ├── fa_IR │ ├── keyword.strings │ └── title.strings │ ├── fi │ ├── keyword.strings │ └── title.strings │ ├── fi_FI │ ├── keyword.strings │ └── title.strings │ ├── fil │ ├── keyword.strings │ └── title.strings │ ├── fr │ ├── keyword.strings │ └── title.strings │ ├── fr_FR │ ├── keyword.strings │ └── title.strings │ ├── fy_NL │ ├── keyword.strings │ └── title.strings │ ├── gl │ ├── keyword.strings │ └── title.strings │ ├── gl_ES │ ├── keyword.strings │ └── title.strings │ ├── gu │ ├── keyword.strings │ └── title.strings │ ├── he │ ├── keyword.strings │ └── title.strings │ ├── hi │ ├── keyword.strings │ └── title.strings │ ├── hr │ ├── keyword.strings │ └── title.strings │ ├── hr_HR │ ├── keyword.strings │ └── title.strings │ ├── hu_HU │ ├── keyword.strings │ └── title.strings │ ├── hy │ ├── keyword.strings │ └── title.strings │ ├── ia │ ├── keyword.strings │ └── title.strings │ ├── id │ ├── keyword.strings │ └── title.strings │ ├── io │ ├── keyword.strings │ └── title.strings │ ├── is │ ├── keyword.strings │ └── title.strings │ ├── it │ ├── keyword.strings │ └── title.strings │ ├── ja_JP │ ├── keyword.strings │ └── title.strings │ ├── jv │ ├── keyword.strings │ └── title.strings │ ├── ka_GE │ ├── keyword.strings │ └── title.strings │ ├── km │ ├── keyword.strings │ └── title.strings │ ├── kn │ ├── keyword.strings │ └── title.strings │ ├── ko │ ├── keyword.strings │ └── title.strings │ ├── ku │ ├── keyword.strings │ └── title.strings │ ├── ku_IQ │ ├── keyword.strings │ └── title.strings │ ├── lb │ ├── keyword.strings │ └── title.strings │ ├── lo │ ├── keyword.strings │ └── title.strings │ ├── lt_LT │ ├── keyword.strings │ └── title.strings │ ├── lv │ ├── keyword.strings │ └── title.strings │ ├── mg │ ├── keyword.strings │ └── title.strings │ ├── mk │ ├── keyword.strings │ └── title.strings │ ├── ml │ ├── keyword.strings │ └── title.strings │ ├── ml_IN │ ├── keyword.strings │ └── title.strings │ ├── mn │ ├── keyword.strings │ └── title.strings │ ├── mr │ ├── keyword.strings │ └── title.strings │ ├── ms_MY │ ├── keyword.strings │ └── title.strings │ ├── mt_MT │ ├── keyword.strings │ └── title.strings │ ├── my_MM │ ├── keyword.strings │ └── title.strings │ ├── nb-NO │ ├── keyword.strings │ └── title.strings │ ├── nds │ ├── keyword.strings │ └── title.strings │ ├── ne │ ├── keyword.strings │ └── title.strings │ ├── nl │ ├── keyword.strings │ └── title.strings │ ├── nn-NO │ ├── keyword.strings │ └── title.strings │ ├── nqo │ ├── keyword.strings │ └── title.strings │ ├── oc │ ├── keyword.strings │ └── title.strings │ ├── pa │ ├── keyword.strings │ └── title.strings │ ├── pl │ ├── keyword.strings │ └── title.strings │ ├── pt-BR │ ├── keyword.strings │ └── title.strings │ ├── pt-PT │ ├── keyword.strings │ └── title.strings │ ├── ro │ ├── keyword.strings │ └── title.strings │ ├── ru │ ├── keyword.strings │ └── title.strings │ ├── ru_RU │ ├── keyword.strings │ └── title.strings │ ├── si │ ├── keyword.strings │ └── title.strings │ ├── si_LK │ ├── keyword.strings │ └── title.strings │ ├── sk_SK │ ├── keyword.strings │ └── title.strings │ ├── sl │ ├── keyword.strings │ └── title.strings │ ├── sq │ ├── keyword.strings │ └── title.strings │ ├── sr │ ├── keyword.strings │ └── title.strings │ ├── sr@latin │ ├── keyword.strings │ └── title.strings │ ├── su │ ├── keyword.strings │ └── title.strings │ ├── sv │ ├── keyword.strings │ └── title.strings │ ├── sv_SE │ ├── keyword.strings │ └── title.strings │ ├── sw_KE │ ├── keyword.strings │ └── title.strings │ ├── ta │ ├── keyword.strings │ └── title.strings │ ├── te │ ├── keyword.strings │ └── title.strings │ ├── tg_TJ │ ├── keyword.strings │ └── title.strings │ ├── th-TH │ ├── keyword.strings │ └── title.strings │ ├── tl_PH │ ├── keyword.strings │ └── title.strings │ ├── tr │ ├── keyword.strings │ └── title.strings │ ├── tr_TR │ ├── keyword.strings │ └── title.strings │ ├── tzm │ ├── keyword.strings │ └── title.strings │ ├── ug │ ├── keyword.strings │ └── title.strings │ ├── uk │ ├── keyword.strings │ └── title.strings │ ├── ur_PK │ ├── keyword.strings │ └── title.strings │ ├── uz │ ├── keyword.strings │ └── title.strings │ ├── vi │ ├── keyword.strings │ └── title.strings │ ├── zh-Hans │ ├── keyword.strings │ └── title.strings │ ├── zh │ ├── keyword.strings │ └── title.strings │ ├── zh_CN.GB2312 │ ├── keyword.strings │ └── title.strings │ ├── zh_HK │ ├── keyword.strings │ └── title.strings │ ├── zh_TW.Big5 │ ├── keyword.strings │ └── title.strings │ └── zh_TW │ ├── keyword.strings │ └── title.strings ├── img ├── filetypes-tvg │ ├── application-pdf.tvg │ ├── application.tvg │ ├── audio.tvg │ ├── file.tvg │ ├── folder-create.tvg │ ├── folder-drag-accept.tvg │ ├── folder-external.tvg │ ├── folder-public.tvg │ ├── folder-shared.tvg │ ├── folder-starred.tvg │ ├── folder.tvg │ ├── icon-available-offline.tvg │ ├── icon-locked.tvg │ ├── icon-password-manager.tvg │ ├── icon-search.tvg │ ├── image.tvg │ ├── opencloud-logo.tvg │ ├── package-x-generic.tvg │ ├── space.tvg │ ├── status-flash.tvg │ ├── text-calendar.tvg │ ├── text-code.tvg │ ├── text-uri-list.tvg │ ├── text-vcard.tvg │ ├── text.tvg │ ├── video.tvg │ ├── x-office-document.tvg │ ├── x-office-presentation.tvg │ └── x-office-spreadsheet.tvg ├── filetypes.json └── filetypes │ ├── application-pdf.svg │ ├── application.svg │ ├── audio.svg │ ├── file.svg │ ├── folder-create.svg │ ├── folder-drag-accept.svg │ ├── folder-external.svg │ ├── folder-public.svg │ ├── folder-shared.svg │ ├── folder-starred.svg │ ├── folder.svg │ ├── icon-available-offline.svg │ ├── icon-locked.svg │ ├── icon-password-manager.svg │ ├── image.svg │ ├── package-x-generic.svg │ ├── space.svg │ ├── status-flash.svg │ ├── text-calendar.svg │ ├── text-code.svg │ ├── text-uri-list.svg │ ├── text-vcard.svg │ ├── text.svg │ ├── video.svg │ ├── x-office-document.svg │ ├── x-office-presentation.svg │ └── x-office-spreadsheet.svg ├── removeExtension.sh └── tools ├── GenerateDocs ├── generate_docs.sh └── templates │ └── configuration.adoc.tmpl ├── LocaleDiff ├── LocaleDiff.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── LocaleDiff.xcscheme └── LocaleDiff │ └── main.swift ├── MakeTVG └── main.swift ├── gomplate └── Branding.plist.tmpl └── normalizestrings └── main.swift /.gitattributes: -------------------------------------------------------------------------------- 1 | *.strings binary=false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/ISSUE_TEMPLATE/release_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-and-analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/workflows/build-and-analyze.yml -------------------------------------------------------------------------------- /.github/workflows/pull-transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/workflows/pull-transifex.yml -------------------------------------------------------------------------------- /.github/workflows/push-transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.github/workflows/push-transifex.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.gitmodules -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/.tx/config -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 16.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenCloud Action Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Action Extension/Info.plist -------------------------------------------------------------------------------- /OpenCloud Action Extension/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Action Extension/InfoPlist.xcstrings -------------------------------------------------------------------------------- /OpenCloud Action Extension/OpenCloud Action Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Action Extension/OpenCloud Action Extension.entitlements -------------------------------------------------------------------------------- /OpenCloud File Provider UI/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider UI/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /OpenCloud File Provider UI/CancelLabelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider UI/CancelLabelViewController.swift -------------------------------------------------------------------------------- /OpenCloud File Provider UI/DocumentActionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider UI/DocumentActionViewController.swift -------------------------------------------------------------------------------- /OpenCloud File Provider UI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider UI/Info.plist -------------------------------------------------------------------------------- /OpenCloud File Provider UI/OpenCloud_File_Provider_UI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider UI/OpenCloud_File_Provider_UI.entitlements -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderContentEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderContentEnumerator.h -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderContentEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderContentEnumerator.m -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderEnumeratorObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderEnumeratorObserver.h -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderEnumeratorObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderEnumeratorObserver.m -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderExtension.h -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderExtension.m -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderExtensionThumbnailRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderExtensionThumbnailRequest.h -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderExtensionThumbnailRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderExtensionThumbnailRequest.m -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderServiceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderServiceSource.h -------------------------------------------------------------------------------- /OpenCloud File Provider/FileProviderServiceSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/FileProviderServiceSource.m -------------------------------------------------------------------------------- /OpenCloud File Provider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/Info.plist -------------------------------------------------------------------------------- /OpenCloud File Provider/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/Localizable.xcstrings -------------------------------------------------------------------------------- /OpenCloud File Provider/NSError+MessageResolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/NSError+MessageResolution.h -------------------------------------------------------------------------------- /OpenCloud File Provider/NSError+MessageResolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/NSError+MessageResolution.m -------------------------------------------------------------------------------- /OpenCloud File Provider/NSNumber+OCSyncAnchorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/NSNumber+OCSyncAnchorData.h -------------------------------------------------------------------------------- /OpenCloud File Provider/NSNumber+OCSyncAnchorData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/NSNumber+OCSyncAnchorData.m -------------------------------------------------------------------------------- /OpenCloud File Provider/OCBookmark+FileProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCBookmark+FileProvider.h -------------------------------------------------------------------------------- /OpenCloud File Provider/OCBookmark+FileProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCBookmark+FileProvider.m -------------------------------------------------------------------------------- /OpenCloud File Provider/OCCore+FileProviderTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCCore+FileProviderTools.h -------------------------------------------------------------------------------- /OpenCloud File Provider/OCCore+FileProviderTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCCore+FileProviderTools.m -------------------------------------------------------------------------------- /OpenCloud File Provider/OCItem+FileProviderItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCItem+FileProviderItem.h -------------------------------------------------------------------------------- /OpenCloud File Provider/OCItem+FileProviderItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCItem+FileProviderItem.m -------------------------------------------------------------------------------- /OpenCloud File Provider/OCVFSNode+FileProviderItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCVFSNode+FileProviderItem.h -------------------------------------------------------------------------------- /OpenCloud File Provider/OCVFSNode+FileProviderItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OCVFSNode+FileProviderItem.m -------------------------------------------------------------------------------- /OpenCloud File Provider/OpenCloud_File_Provider.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud File Provider/OpenCloud_File_Provider.entitlements -------------------------------------------------------------------------------- /OpenCloud Intents/Base.lproj/Intents.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/Base.lproj/Intents.intentdefinition -------------------------------------------------------------------------------- /OpenCloud Intents/CreateFolderIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/CreateFolderIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/DeletePathItemIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/DeletePathItemIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/GetAccountIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/GetAccountIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/GetAccountsIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/GetAccountsIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/GetDirectoryListingIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/GetDirectoryListingIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/GetFileInfoIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/GetFileInfoIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/GetFileIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/GetFileIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/Info.plist -------------------------------------------------------------------------------- /OpenCloud Intents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/IntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/IntentSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/IntentSettings.swift -------------------------------------------------------------------------------- /OpenCloud Intents/OCBookmarkManager+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/OCBookmarkManager+Extension.swift -------------------------------------------------------------------------------- /OpenCloud Intents/OpenCloud Intents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/OpenCloud Intents.entitlements -------------------------------------------------------------------------------- /OpenCloud Intents/PathExistsIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/PathExistsIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/SaveFileIntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/SaveFileIntentHandler.swift -------------------------------------------------------------------------------- /OpenCloud Intents/ar.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/ar.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/cs.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/cs.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/de.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/de.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/en-GB.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/en-GB.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/en.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/en.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/es.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/es.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/eu.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/eu.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/fr.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/fr.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/ko.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/ko.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/mk.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/mk.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/nb-NO.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/nb-NO.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/nn-NO.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/nn-NO.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/pt-BR.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/pt-BR.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/pt-PT.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/pt-PT.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/ru.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/ru.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/sq.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/sq.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/th-TH.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/th-TH.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Intents/zh-Hans.lproj/Intents.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Intents/zh-Hans.lproj/Intents.strings -------------------------------------------------------------------------------- /OpenCloud Share Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Share Extension/Info.plist -------------------------------------------------------------------------------- /OpenCloud Share Extension/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Share Extension/InfoPlist.xcstrings -------------------------------------------------------------------------------- /OpenCloud Share Extension/OpenCloud Share Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Share Extension/OpenCloud Share Extension.entitlements -------------------------------------------------------------------------------- /OpenCloud Share Extension/ShareExtensionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Share Extension/ShareExtensionViewController.swift -------------------------------------------------------------------------------- /OpenCloud Share Extension/en.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud Share Extension/en.lproj/Info.plist -------------------------------------------------------------------------------- /OpenCloud.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OpenCloud.xcodeproj/xcshareddata/xcschemes/MakeTVG.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud.xcodeproj/xcshareddata/xcschemes/MakeTVG.xcscheme -------------------------------------------------------------------------------- /OpenCloud.xcodeproj/xcshareddata/xcschemes/OpenCloud.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud.xcodeproj/xcshareddata/xcschemes/OpenCloud.xcscheme -------------------------------------------------------------------------------- /OpenCloud.xcodeproj/xcshareddata/xcschemes/OpenCloudApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud.xcodeproj/xcshareddata/xcschemes/OpenCloudApp.xcscheme -------------------------------------------------------------------------------- /OpenCloud.xcodeproj/xcshareddata/xcschemes/OpenCloudTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud.xcodeproj/xcshareddata/xcschemes/OpenCloudTests.xcscheme -------------------------------------------------------------------------------- /OpenCloud/App Controllers/AccountController+ExtraItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/App Controllers/AccountController+ExtraItems.swift -------------------------------------------------------------------------------- /OpenCloud/App Controllers/AccountController+ItemActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/App Controllers/AccountController+ItemActions.swift -------------------------------------------------------------------------------- /OpenCloud/App Controllers/AppRootViewController+ItemActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/App Controllers/AppRootViewController+ItemActions.swift -------------------------------------------------------------------------------- /OpenCloud/App Controllers/AppRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/App Controllers/AppRootViewController.swift -------------------------------------------------------------------------------- /OpenCloud/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/AppDelegate.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/BookmarkInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/BookmarkInfoViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/BookmarkViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/BookmarkViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/Composer/BookmarkComposer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/Composer/BookmarkComposer.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/Composer/BookmarkComposerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/Composer/BookmarkComposerConfiguration.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/Setup/BookmarkSetupStepViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/Setup/BookmarkSetupStepViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/Setup/BookmarkSetupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/Setup/BookmarkSetupViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Bookmarks/Setup/Steps/CertificateSummaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Bookmarks/Setup/Steps/CertificateSummaryView.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Action+UserInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Action+UserInterface.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Action.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/AddToSidebarAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/AddToSidebarAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/CollaborateAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/CollaborateAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/CopyAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/CopyAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/CutAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/CutAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/DeleteAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/DeleteAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/DiscardSceneAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/DiscardSceneAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/DuplicateAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/DuplicateAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/FavoriteAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/FavoriteAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/MoveAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/MoveAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/OpenInAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/OpenInAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/OpenSceneAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/OpenSceneAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/PDFGotoPageAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/PDFGotoPageAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/RenameAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/RenameAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/UnfavoriteAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/UnfavoriteAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/UnshareAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/UnshareAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/UploadBaseAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/UploadBaseAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Actions+Extensions/UploadFileAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Actions+Extensions/UploadFileAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/EditDocumentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/EditDocumentViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/ImageMetadataViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/ImageMetadataViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Scanner/FixedHeightImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Scanner/FixedHeightImageView.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Scanner/ScanAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Scanner/ScanAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Scanner/ScanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Scanner/ScanViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Shortcuts/CreateShortcutFileAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Shortcuts/CreateShortcutFileAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Actions/Shortcuts/OpenShortcutFileAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Actions/Shortcuts/OpenShortcutFileAction.swift -------------------------------------------------------------------------------- /OpenCloud/Client/ClientActivityCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/ClientActivityCell.swift -------------------------------------------------------------------------------- /OpenCloud/Client/ClientActivityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/ClientActivityViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/ClientFilelistTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/ClientFilelistTableViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/ClientSessionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/ClientSessionManager.swift -------------------------------------------------------------------------------- /OpenCloud/Client/ExternalBrowserBusyHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/ExternalBrowserBusyHandler.swift -------------------------------------------------------------------------------- /OpenCloud/Client/HelpAndSupportViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/HelpAndSupportViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/PhotoAlbumTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/PhotoAlbumTableViewCell.swift -------------------------------------------------------------------------------- /OpenCloud/Client/PhotoAlbumTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/PhotoAlbumTableViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/PhotoSelectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/PhotoSelectionViewCell.swift -------------------------------------------------------------------------------- /OpenCloud/Client/PhotoSelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/PhotoSelectionViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/DisplayExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/DisplayExtension.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/DisplayHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/DisplayHostViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/DisplayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/DisplayViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/DownloadItemsHUDViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/DownloadItemsHUDViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/Image/ImageDisplayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/Image/ImageDisplayViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/Media/MediaDisplayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/Media/MediaDisplayViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFOutlineViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFOutlineViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFSearchResultsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFSearchResultsView.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFSearchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFSearchTableViewCell.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFSearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFSearchViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFThumbnailCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFThumbnailCollectionViewCell.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFTocItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFTocItem.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFTocTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFTocTableViewCell.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFTocTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFTocTableViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/PDF/PDFViewerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/PDF/PDFViewerViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Client/Viewer/QuickLook/PreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Client/Viewer/QuickLook/PreviewViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Diagnostic/DiagnosticManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Diagnostic/DiagnosticManager.swift -------------------------------------------------------------------------------- /OpenCloud/Diagnostic/DiagnosticViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Diagnostic/DiagnosticViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Diagnostic/OCScanJobActivity+DiagnosticGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Diagnostic/OCScanJobActivity+DiagnosticGenerator.swift -------------------------------------------------------------------------------- /OpenCloud/Import/ImportFilesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Import/ImportFilesController.swift -------------------------------------------------------------------------------- /OpenCloud/Key Commands/KeyCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Key Commands/KeyCommands.swift -------------------------------------------------------------------------------- /OpenCloud/Licensing/Offers/LicenseOfferButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Licensing/Offers/LicenseOfferButton.swift -------------------------------------------------------------------------------- /OpenCloud/Licensing/Offers/LicenseOfferView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Licensing/Offers/LicenseOfferView.swift -------------------------------------------------------------------------------- /OpenCloud/Licensing/Offers/LicenseOffersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Licensing/Offers/LicenseOffersViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Licensing/Tools/OCLicenseManager+AppStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Licensing/Tools/OCLicenseManager+AppStore.swift -------------------------------------------------------------------------------- /OpenCloud/Media Uploads/MediaUploadActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Media Uploads/MediaUploadActivity.swift -------------------------------------------------------------------------------- /OpenCloud/Media Uploads/MediaUploadOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Media Uploads/MediaUploadOperation.swift -------------------------------------------------------------------------------- /OpenCloud/Media Uploads/MediaUploadQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Media Uploads/MediaUploadQueue.swift -------------------------------------------------------------------------------- /OpenCloud/Media Uploads/MediaUploadStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Media Uploads/MediaUploadStorage.swift -------------------------------------------------------------------------------- /OpenCloud/Media Uploads/PhotoKit Extensions/PHAsset+Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Media Uploads/PhotoKit Extensions/PHAsset+Upload.swift -------------------------------------------------------------------------------- /OpenCloud/Messages/CardIssueMessagePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Messages/CardIssueMessagePresenter.swift -------------------------------------------------------------------------------- /OpenCloud/Messages/MessageGroupCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Messages/MessageGroupCell.swift -------------------------------------------------------------------------------- /OpenCloud/Messages/MessageQueueExample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Messages/MessageQueueExample.swift -------------------------------------------------------------------------------- /OpenCloud/Messages/MessageTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Messages/MessageTableViewController.swift -------------------------------------------------------------------------------- /OpenCloud/OpenCloud.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/OpenCloud.entitlements -------------------------------------------------------------------------------- /OpenCloud/Release Notes/ReleaseNotes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Release Notes/ReleaseNotes.plist -------------------------------------------------------------------------------- /OpenCloud/Release Notes/ReleaseNotesHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Release Notes/ReleaseNotesHostViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Release Notes/ReleaseNotesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Release Notes/ReleaseNotesTableViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/arrow-up.imageset/up 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/arrow-up.imageset/up 2.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/camera.imageset/camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/camera.imageset/camera.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/folder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/folder.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/open-in.imageset/open-in.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/open-in.imageset/open-in.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/person.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/person.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/power.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/power.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/power.imageset/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/power.imageset/power.png -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/select.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/select.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/select.imageset/Selection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/select.imageset/Selection.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/shared.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/shared.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/shared.imageset/shared-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/shared.imageset/shared-2.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/star.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/trash.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/trash.imageset/trash-25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/trash.imageset/trash-25.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/unstar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/unstar.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/xmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/xmark.imageset/Contents.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Assets.xcassets/xmark.imageset/xmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Assets.xcassets/xmark.imageset/xmark.pdf -------------------------------------------------------------------------------- /OpenCloud/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Info.plist -------------------------------------------------------------------------------- /OpenCloud/Resources/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/InfoPlist.xcstrings -------------------------------------------------------------------------------- /OpenCloud/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /OpenCloud/Resources/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Localizable.xcstrings -------------------------------------------------------------------------------- /OpenCloud/Resources/PLCrashReporter.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/PLCrashReporter.LICENSE -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/Branding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/Branding.json -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/Branding.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/Branding.plist -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/branding-assets-input.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/branding-assets-input.xcfilelist -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/branding-assets-output.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/branding-assets-output.xcfilelist -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/branding-assets/.do-not-remove: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/eu.opencloud.ios/branding-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/eu.opencloud.ios/branding-icon.png -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/eu.opencloud.ios/branding-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/eu.opencloud.ios/branding-logo.png -------------------------------------------------------------------------------- /OpenCloud/Resources/Theming/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Resources/Theming/generate.sh -------------------------------------------------------------------------------- /OpenCloud/SDK Extensions/OCBookmarkManager+Management.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/SDK Extensions/OCBookmarkManager+Management.swift -------------------------------------------------------------------------------- /OpenCloud/SDK Extensions/OCCertificate+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/SDK Extensions/OCCertificate+Extension.swift -------------------------------------------------------------------------------- /OpenCloud/SDK Extensions/OCExtensionType+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/SDK Extensions/OCExtensionType+Extension.swift -------------------------------------------------------------------------------- /OpenCloud/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/SceneDelegate.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/AcknowledgementsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/AcknowledgementsTableViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/AutoUploadSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/AutoUploadSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/BackgroundUploadsSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/BackgroundUploadsSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/CellularSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/CellularSettingsViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/DataSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/DataSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/DisplaySettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/DisplaySettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/LogFilesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/LogFilesViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/LogSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/LogSettingsViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/MediaExportSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/MediaExportSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/MediaFilesSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/MediaFilesSettings.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/MediaUploadSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/MediaUploadSettingsViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/MoreSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/MoreSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/ProPhotoUploadSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/ProPhotoUploadSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/PurchasesSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/PurchasesSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/SearchSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/SearchSettingsViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/SecuritySettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/SecuritySettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/SettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/SettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /OpenCloud/Settings/UserInterfaceSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Settings/UserInterfaceSettingsSection.swift -------------------------------------------------------------------------------- /OpenCloud/Shortcut Files/INIFile+ShortcutResolution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Shortcut Files/INIFile+ShortcutResolution.swift -------------------------------------------------------------------------------- /OpenCloud/Shortcut Files/INIFile+URLFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Shortcut Files/INIFile+URLFile.swift -------------------------------------------------------------------------------- /OpenCloud/Shortcut Files/INIFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Shortcut Files/INIFile.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/BackgroundFetchUpdateTaskAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/BackgroundFetchUpdateTaskAction.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/InstantMediaUploadTaskExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/InstantMediaUploadTaskExtension.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/PHAsset+InstantUploads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/PHAsset+InstantUploads.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/PendingMediaUploadTaskExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/PendingMediaUploadTaskExtension.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/ScheduledTaskExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/ScheduledTaskExtension.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/ScheduledTaskManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/ScheduledTaskManager.swift -------------------------------------------------------------------------------- /OpenCloud/Tasks/UNUserNotificationCenter+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tasks/UNUserNotificationCenter+Extensions.swift -------------------------------------------------------------------------------- /OpenCloud/Theming/ServerListToolCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Theming/ServerListToolCell.swift -------------------------------------------------------------------------------- /OpenCloud/Tools/DisplaySleepPreventer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tools/DisplaySleepPreventer.swift -------------------------------------------------------------------------------- /OpenCloud/Tools/FileManager+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tools/FileManager+Extension.swift -------------------------------------------------------------------------------- /OpenCloud/Tools/KVOWaiter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tools/KVOWaiter.swift -------------------------------------------------------------------------------- /OpenCloud/Tools/PasswordManagerAccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tools/PasswordManagerAccess.swift -------------------------------------------------------------------------------- /OpenCloud/Tools/URL+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tools/URL+Extensions.swift -------------------------------------------------------------------------------- /OpenCloud/Tools/VendorServices+App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/Tools/VendorServices+App.swift -------------------------------------------------------------------------------- /OpenCloud/UI Elements/BorderedLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/UI Elements/BorderedLabel.swift -------------------------------------------------------------------------------- /OpenCloud/UI Elements/CollapsibleProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/UI Elements/CollapsibleProgressBar.swift -------------------------------------------------------------------------------- /OpenCloud/UI Elements/ImageScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/UI Elements/ImageScrollView.swift -------------------------------------------------------------------------------- /OpenCloud/UI Elements/TextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/UI Elements/TextViewController.swift -------------------------------------------------------------------------------- /OpenCloud/UIKit Extensions/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/UIKit Extensions/Array+Extension.swift -------------------------------------------------------------------------------- /OpenCloud/UIKit Extensions/UINavigationController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloud/UIKit Extensions/UINavigationController+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppFramework/AppLock Settings/AppLockSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/AppLock Settings/AppLockSettings.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/AppLock Settings/AppLockSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/AppLock Settings/AppLockSettings.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Branding/Branding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Branding/Branding.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Branding/Branding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Branding/Branding.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Branding/BrandingClassSettingsSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Branding/BrandingClassSettingsSource.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Branding/BrandingClassSettingsSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Branding/BrandingClassSettingsSource.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Branding/OCThemeValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Branding/OCThemeValues.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Branding/OCThemeValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Branding/OCThemeValues.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Building/BuildOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Building/BuildOptions.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Building/BuildOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Building/BuildOptions.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Confidential/ConfidentialManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Confidential/ConfidentialManager.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Confidential/ConfidentialManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Confidential/ConfidentialManager.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Display Settings/DisplaySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Display Settings/DisplaySettings.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Display Settings/DisplaySettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Display Settings/DisplaySettings.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/File Provider Services/OCCore+FPServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/File Provider Services/OCCore+FPServices.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/File Provider Services/OCCore+FPServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/File Provider Services/OCCore+FPServices.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/File Provider Services/OCVault+FPServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/File Provider Services/OCVault+FPServices.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/File Provider Services/OCVault+FPServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/File Provider Services/OCVault+FPServices.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Foundation Extensions/NSURL+OCVaultTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Foundation Extensions/NSURL+OCVaultTools.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Foundation Extensions/NSURL+OCVaultTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Foundation Extensions/NSURL+OCVaultTools.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Feature/OCLicenseFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Feature/OCLicenseFeature.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Feature/OCLicenseFeature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Feature/OCLicenseFeature.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Manager/OCLicenseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Manager/OCLicenseManager.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Manager/OCLicenseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Manager/OCLicenseManager.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Manager/OCLicenseObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Manager/OCLicenseObserver.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Manager/OCLicenseObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Manager/OCLicenseObserver.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/OCLicenseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/OCLicenseTypes.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Offer/OCLicenseDuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Offer/OCLicenseDuration.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Offer/OCLicenseDuration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Offer/OCLicenseDuration.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Offer/OCLicenseOffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Offer/OCLicenseOffer.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Offer/OCLicenseOffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Offer/OCLicenseOffer.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Product/OCLicenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Product/OCLicenseProduct.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Product/OCLicenseProduct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Product/OCLicenseProduct.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Providers/OCLicenseProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Providers/OCLicenseProvider.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Licensing/Providers/OCLicenseProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Licensing/Providers/OCLicenseProvider.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Notifications/NotificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Notifications/NotificationManager.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Notifications/NotificationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Notifications/NotificationManager.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/OpenCloudApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/OpenCloudApp.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Resources/Info.plist -------------------------------------------------------------------------------- /OpenCloudAppFramework/Resources/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Resources/Localizable.xcstrings -------------------------------------------------------------------------------- /OpenCloudAppFramework/SDK Extensions/OCBookmark+AppExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/SDK Extensions/OCBookmark+AppExtensions.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/SDK Extensions/OCBookmark+AppExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/SDK Extensions/OCBookmark+AppExtensions.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/SDK Extensions/OCCore+BundleImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/SDK Extensions/OCCore+BundleImport.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/SDK Extensions/OCCore+BundleImport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/SDK Extensions/OCCore+BundleImport.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Search/OCQueryCondition+SearchSegmenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Search/OCQueryCondition+SearchSegmenter.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Search/OCQueryCondition+SearchSegmenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Search/OCQueryCondition+SearchSegmenter.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Search/OCSearchSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Search/OCSearchSegment.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Search/OCSearchSegment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Search/OCSearchSegment.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Search/Saved Searches/OCSavedSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Search/Saved Searches/OCSavedSearch.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Search/Saved Searches/OCSavedSearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Search/Saved Searches/OCSavedSearch.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Sidebar Items/OCSidebarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Sidebar Items/OCSidebarItem.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Sidebar Items/OCSidebarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Sidebar Items/OCSidebarItem.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Sidebar Items/OCVault+SidebarItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Sidebar Items/OCVault+SidebarItems.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Sidebar Items/OCVault+SidebarItems.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Sidebar Items/OCVault+SidebarItems.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Tools/NSData+Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Tools/NSData+Encoding.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Tools/NSData+Encoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Tools/NSData+Encoding.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/VFS/OCVault+VFSManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/VFS/OCVault+VFSManager.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/VFS/OCVault+VFSManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/VFS/OCVault+VFSManager.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/VFS/VFSManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/VFS/VFSManager.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/VFS/VFSManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/VFS/VFSManager.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/View Providers/OCImage+ViewProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/View Providers/OCImage+ViewProvider.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/View Providers/OCImage+ViewProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/View Providers/OCImage+ViewProvider.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/View Providers/OCViewHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/View Providers/OCViewHost.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/View Providers/OCViewHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/View Providers/OCViewHost.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/View Providers/UIImage+ViewProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/View Providers/UIImage+ViewProvider.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/View Providers/UIImage+ViewProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/View Providers/UIImage+ViewProvider.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Views/OCCircularContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Views/OCCircularContentView.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Views/OCCircularContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Views/OCCircularContentView.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Views/OCCircularImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Views/OCCircularImageView.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Views/OCCircularImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Views/OCCircularImageView.m -------------------------------------------------------------------------------- /OpenCloudAppFramework/Views/OCCircularTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Views/OCCircularTextView.h -------------------------------------------------------------------------------- /OpenCloudAppFramework/Views/OCCircularTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFramework/Views/OCCircularTextView.m -------------------------------------------------------------------------------- /OpenCloudAppFrameworkTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFrameworkTests/Info.plist -------------------------------------------------------------------------------- /OpenCloudAppFrameworkTests/LicensingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFrameworkTests/LicensingTests.m -------------------------------------------------------------------------------- /OpenCloudAppFrameworkTests/SearchSegmentationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppFrameworkTests/SearchSegmentationTests.m -------------------------------------------------------------------------------- /OpenCloudAppShared/AppLock/AppLockManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/AppLock/AppLockManager.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/AppLock/AppLockWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/AppLock/AppLockWindow.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/AppLock/PasscodeSetupCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/AppLock/PasscodeSetupCoordinator.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/AppLock/PasscodeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/AppLock/PasscodeViewController.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/AppLock/PasscodeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/AppLock/PasscodeViewController.xib -------------------------------------------------------------------------------- /OpenCloudAppShared/Branding/BrandView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Branding/BrandView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Branding/Branding+App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Branding/Branding+App.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Account/Messages/MessageGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Account/Messages/MessageGroup.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Account/Messages/MessageSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Account/Messages/MessageSelector.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Actions/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Actions/Action.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Collection Views/Cells/ActionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Collection Views/Cells/ActionCell.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Collection Views/Cells/ViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Collection Views/Cells/ViewCell.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Context/ClientContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Context/ClientContext.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Context/SortedItemDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Context/SortedItemDataSource.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Resource Sources/ResourceItemIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Resource Sources/ResourceItemIcon.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Search/Scopes/SearchScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Search/Scopes/SearchScope.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Search/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Search/SearchViewController.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Search/Tokenizer/SearchElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Search/Tokenizer/SearchElement.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Search/Tokenizer/SearchTokenizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Search/Tokenizer/SearchTokenizer.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Sharing/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Sharing/ShareViewController.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Sharing/SharingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Sharing/SharingViewController.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/Sidebar Items/OCSidebarItem+Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/Sidebar Items/OCSidebarItem+Cell.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/BottomButtonBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/BottomButtonBar.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/GradientView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/ItemLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/ItemLayout.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/MessageView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/RoundedLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/RoundedLabel.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/SortBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/SortBar.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Client/User Interface/SortMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Client/User Interface/SortMethod.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Down.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Down.LICENSE -------------------------------------------------------------------------------- /OpenCloudAppShared/Foundation Extensions/Calendar+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Foundation Extensions/Calendar+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Foundation Extensions/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Foundation Extensions/String+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Info.plist -------------------------------------------------------------------------------- /OpenCloudAppShared/Intent/OCLicenseManager+Setup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Intent/OCLicenseManager+Setup.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Licensing/LicenseRequirements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Licensing/LicenseRequirements.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/OpenCloudAppShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/OpenCloudAppShared.h -------------------------------------------------------------------------------- /OpenCloudAppShared/PocketSVG.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/PocketSVG.LICENSE -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCAction+UIAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCAction+UIAction.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCBookmark+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCBookmark+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCBookmarkManager+Locking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCBookmarkManager+Locking.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCCore+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCCore+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCIssue+DisplayIssues.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCIssue+DisplayIssues.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCIssue+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCIssue+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCItem+AppExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCItem+AppExtension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCItem+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCItem+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCItemTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCItemTracker.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCMessage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCMessage+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/SDK Extensions/OCShare+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/SDK Extensions/OCShare+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Tools/AppStatistics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Tools/AppStatistics.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Tools/DispatchQueueTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Tools/DispatchQueueTools.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Tools/GitInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Tools/GitInfo.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Tools/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Tools/Log.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Tools/Synchronized.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Tools/Synchronized.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/Tools/VendorServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/Tools/VendorServices.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/LAContext+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/LAContext+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIButton+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIButton+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIColor+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIFont+Weight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIFont+Weight.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIImage+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIKeyCommand+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIKeyCommand+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UILabel+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UILabel+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UITableView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UITableView+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UITextField+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UITextField+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIView+Extension.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/UIKit Extension/UIView+OCDataItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/UIKit Extension/UIView+OCDataItem.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Alert View/AlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Alert View/AlertView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/More/FrameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/More/FrameViewController.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/More/MoreViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/More/MoreViewHeader.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Progress/ProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Progress/ProgressView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/SegmentView/SegmentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/SegmentView/SegmentView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/SharedKeyCommands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/SharedKeyCommands.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/CSS/ThemeCSS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/CSS/ThemeCSS.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/CSS/ThemeCSSRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/CSS/ThemeCSSRecord.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/CSS/UIView+ThemeCSS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/CSS/UIView+ThemeCSS.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/TVG/TVGImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/TVG/TVGImage.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/TVG/VectorImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/TVG/VectorImage.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/TVG/VectorImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/TVG/VectorImageView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/Theme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/Theme.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/ThemeCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/ThemeCollection.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/ThemeStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/ThemeStyle.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/UI/ResourceViewHost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/UI/ResourceViewHost.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/UI/ThemeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/UI/ThemeButton.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/UI/ThemeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/UI/ThemeView.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/Theme/UI/ThemeWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/Theme/UI/ThemeWindow.swift -------------------------------------------------------------------------------- /OpenCloudAppShared/User Interface/UserInterfaceContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppShared/User Interface/UserInterfaceContext.swift -------------------------------------------------------------------------------- /OpenCloudAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudAppTests/Info.plist -------------------------------------------------------------------------------- /OpenCloudTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudTests/Info.plist -------------------------------------------------------------------------------- /OpenCloudTests/Metadata/MetadataDocumentationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/OpenCloudTests/Metadata/MetadataDocumentationTests.swift -------------------------------------------------------------------------------- /PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/SETUP.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /THIRD_PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/THIRD_PARTY.txt -------------------------------------------------------------------------------- /enterprise/register/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" -------------------------------------------------------------------------------- /enterprise/register/registerOpencloudApp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/enterprise/register/registerOpencloudApp.rb -------------------------------------------------------------------------------- /enterprise/resign/resignInspector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/enterprise/resign/resignInspector.sh -------------------------------------------------------------------------------- /enterprise/resign/resignOpencloudApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/enterprise/resign/resignOpencloudApp -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/Deliverfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/Matchfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/Snapfile -------------------------------------------------------------------------------- /fastlane/actions/app_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/actions/app_version.rb -------------------------------------------------------------------------------- /fastlane/actions/release_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/actions/release_notes.rb -------------------------------------------------------------------------------- /fastlane/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/badge.svg -------------------------------------------------------------------------------- /fastlane/metadata-emm/copyright.txt: -------------------------------------------------------------------------------- 1 | 2021 OpenCloud GmbH 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-emm/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-emm/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu/privacy-legal/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/promotional_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-emm/en-US/promotional_text.txt -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-emm/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | secure data sharing platform 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu/docs-guides/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/primary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/secondary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-emm/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/copyright.txt: -------------------------------------------------------------------------------- 1 | 2021 OpenCloud GmbH 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-opencloud-online/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-opencloud-online/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.online -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu/privacy-legal/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/promotional_text.txt: -------------------------------------------------------------------------------- 1 | Filesharing for your business, hosted with OpenCloud.online -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata-opencloud-online/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | secure data sharing platform 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://central.opencloud.eu -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/primary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/secondary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata-opencloud-online/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2021 OpenCloud GmbH 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/apple_tv_privacy_policy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata/en-US/description.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata/en-US/keywords.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu/privacy-legal/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/promotional_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata/en-US/promotional_text.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/metadata/en-US/release_notes.txt -------------------------------------------------------------------------------- /fastlane/metadata/en-US/subtitle.txt: -------------------------------------------------------------------------------- 1 | secure data sharing platform 2 | -------------------------------------------------------------------------------- /fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | https://opencloud.eu/docs-guides/ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | PRODUCTIVITY 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | UTILITIES 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fastlane/screenshots/ady/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ady/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ady/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ady/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/af_ZA/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/af_ZA/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/af_ZA/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/af_ZA/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ak/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ak/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ak/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ak/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ar/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ar/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ar/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ar/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ast/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ast/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ast/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ast/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/az/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/az/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/az/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/az/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/be/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/be/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/be/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/be/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bg/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bg/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bg/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bg/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bg@Cyrl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bg@Cyrl/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bg@Cyrl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bg@Cyrl/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bg_BG/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bg_BG/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bg_BG/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bg_BG/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bn_BD/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bn_BD/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bn_BD/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bn_BD/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bn_IN/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bn_IN/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bn_IN/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bn_IN/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bs/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bs/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/bs/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/bs/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ca/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ca/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ca/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ca/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ca@valencia/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ca@valencia/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ca@valencia/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ca@valencia/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/cs/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/cs/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/cs/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/cs/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/cy_GB/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/cy_GB/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/cy_GB/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/cy_GB/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/da/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/da/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/da/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/da/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/da_DK/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/da_DK/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/da_DK/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/da_DK/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de-DE/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de-DE/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de-DE/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de-DE/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de_AT/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de_AT/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de_AT/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de_AT/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de_CH/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de_CH/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/de_CH/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/de_CH/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/el/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/el/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/el/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/el/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/en-GB/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/en-GB/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/en-GB/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/en_CA/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/en_CA/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/en_CA/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/en_CA/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/en_US/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/en_US/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/en_US/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/en_US/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/eo/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/eo/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/eo/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/eo/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_419/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_419/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_419/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_419/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_AR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_AR/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_AR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_AR/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_CL/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_CL/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_CL/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_CL/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_EC/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_EC/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_EC/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_EC/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_MX/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_MX/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_MX/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_MX/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_US/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_US/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/es_US/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/es_US/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/et_EE/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/et_EE/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/et_EE/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/et_EE/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/eu/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/eu/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/eu/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/eu/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fa/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fa/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fa/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fa/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fa_IR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fa_IR/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fa_IR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fa_IR/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fi/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fi/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fi/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fi/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fi_FI/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fi_FI/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fi_FI/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fi_FI/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fil/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fil/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fil/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fil/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fr/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fr/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fr_FR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fr_FR/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fr_FR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fr_FR/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fy_NL/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fy_NL/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/fy_NL/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/fy_NL/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/gl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/gl/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/gl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/gl/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/gl_ES/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/gl_ES/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/gl_ES/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/gl_ES/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/gu/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/gu/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/gu/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/gu/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/he/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/he/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/he/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/he/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hi/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hi/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hi/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hi/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hr/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hr/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hr_HR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hr_HR/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hr_HR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hr_HR/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hu_HU/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hu_HU/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hu_HU/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hu_HU/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hy/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hy/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/hy/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/hy/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ia/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ia/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ia/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ia/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/id/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/id/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/id/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/id/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/io/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/io/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/io/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/io/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/is/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/is/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/is/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/is/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/it/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/it/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/it/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/it/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ja_JP/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ja_JP/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ja_JP/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ja_JP/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/jv/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/jv/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/jv/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/jv/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ka_GE/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ka_GE/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ka_GE/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ka_GE/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/km/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/km/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/km/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/km/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/kn/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/kn/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/kn/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/kn/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ko/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ko/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ko/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ko/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ku/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ku/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ku/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ku/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ku_IQ/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ku_IQ/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ku_IQ/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ku_IQ/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lb/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lb/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lb/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lb/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lo/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lo/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lo/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lo/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lt_LT/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lt_LT/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lt_LT/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lt_LT/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lv/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lv/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/lv/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/lv/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mg/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mg/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mg/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mg/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mk/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mk/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mk/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mk/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ml/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ml/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ml/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ml/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ml_IN/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ml_IN/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ml_IN/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ml_IN/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mn/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mn/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mn/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mn/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mr/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mr/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ms_MY/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ms_MY/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ms_MY/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ms_MY/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mt_MT/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mt_MT/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/mt_MT/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/mt_MT/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/my_MM/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/my_MM/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/my_MM/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/my_MM/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nb-NO/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nb-NO/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nb-NO/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nb-NO/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nds/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nds/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nds/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nds/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ne/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ne/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ne/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ne/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nl/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nl/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nn-NO/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nn-NO/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nn-NO/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nn-NO/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nqo/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nqo/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/nqo/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/nqo/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/oc/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/oc/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/oc/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/oc/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pa/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pa/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pa/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pa/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pl/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pl/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pt-BR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pt-BR/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pt-BR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pt-BR/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pt-PT/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pt-PT/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/pt-PT/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/pt-PT/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ro/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ro/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ro/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ro/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ru/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ru/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ru/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ru/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ru_RU/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ru_RU/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ru_RU/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ru_RU/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/si/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/si/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/si/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/si/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/si_LK/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/si_LK/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/si_LK/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/si_LK/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sk_SK/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sk_SK/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sk_SK/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sk_SK/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sl/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sl/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sq/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sq/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sq/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sq/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sr/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sr/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sr@latin/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sr@latin/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sr@latin/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sr@latin/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/su/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/su/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/su/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/su/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sv/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sv/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sv/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sv/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sv_SE/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sv_SE/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sv_SE/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sv_SE/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sw_KE/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sw_KE/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/sw_KE/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/sw_KE/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ta/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ta/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ta/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ta/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/te/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/te/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/te/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/te/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tg_TJ/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tg_TJ/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tg_TJ/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tg_TJ/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/th-TH/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/th-TH/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/th-TH/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/th-TH/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tl_PH/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tl_PH/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tl_PH/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tl_PH/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tr/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tr/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tr_TR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tr_TR/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tr_TR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tr_TR/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tzm/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tzm/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/tzm/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/tzm/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ug/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ug/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ug/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ug/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/uk/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/uk/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/uk/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/uk/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ur_PK/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ur_PK/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/ur_PK/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/ur_PK/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/uz/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/uz/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/uz/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/uz/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/vi/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/vi/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/vi/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/vi/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh-Hans/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh-Hans/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh-Hans/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh-Hans/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_CN.GB2312/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_CN.GB2312/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_CN.GB2312/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_CN.GB2312/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_HK/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_HK/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_HK/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_HK/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_TW.Big5/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_TW.Big5/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_TW.Big5/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_TW.Big5/title.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_TW/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_TW/keyword.strings -------------------------------------------------------------------------------- /fastlane/screenshots/zh_TW/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/fastlane/screenshots/zh_TW/title.strings -------------------------------------------------------------------------------- /img/filetypes-tvg/application-pdf.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/application-pdf.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/application.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/application.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/audio.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/audio.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/file.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/file.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder-create.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder-create.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder-drag-accept.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder-drag-accept.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder-external.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder-external.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder-public.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder-public.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder-shared.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder-shared.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder-starred.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder-starred.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/folder.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/folder.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/icon-available-offline.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/icon-available-offline.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/icon-locked.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/icon-locked.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/icon-password-manager.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/icon-password-manager.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/icon-search.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/icon-search.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/image.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/image.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/opencloud-logo.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/opencloud-logo.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/package-x-generic.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/package-x-generic.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/space.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/space.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/status-flash.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/status-flash.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/text-calendar.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/text-calendar.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/text-code.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/text-code.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/text-uri-list.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/text-uri-list.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/text-vcard.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/text-vcard.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/text.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/text.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/video.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/video.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/x-office-document.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/x-office-document.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/x-office-presentation.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/x-office-presentation.tvg -------------------------------------------------------------------------------- /img/filetypes-tvg/x-office-spreadsheet.tvg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes-tvg/x-office-spreadsheet.tvg -------------------------------------------------------------------------------- /img/filetypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes.json -------------------------------------------------------------------------------- /img/filetypes/application-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/application-pdf.svg -------------------------------------------------------------------------------- /img/filetypes/application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/application.svg -------------------------------------------------------------------------------- /img/filetypes/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/audio.svg -------------------------------------------------------------------------------- /img/filetypes/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/file.svg -------------------------------------------------------------------------------- /img/filetypes/folder-create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder-create.svg -------------------------------------------------------------------------------- /img/filetypes/folder-drag-accept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder-drag-accept.svg -------------------------------------------------------------------------------- /img/filetypes/folder-external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder-external.svg -------------------------------------------------------------------------------- /img/filetypes/folder-public.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder-public.svg -------------------------------------------------------------------------------- /img/filetypes/folder-shared.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder-shared.svg -------------------------------------------------------------------------------- /img/filetypes/folder-starred.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder-starred.svg -------------------------------------------------------------------------------- /img/filetypes/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/folder.svg -------------------------------------------------------------------------------- /img/filetypes/icon-available-offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/icon-available-offline.svg -------------------------------------------------------------------------------- /img/filetypes/icon-locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/icon-locked.svg -------------------------------------------------------------------------------- /img/filetypes/icon-password-manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/icon-password-manager.svg -------------------------------------------------------------------------------- /img/filetypes/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/image.svg -------------------------------------------------------------------------------- /img/filetypes/package-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/package-x-generic.svg -------------------------------------------------------------------------------- /img/filetypes/space.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/space.svg -------------------------------------------------------------------------------- /img/filetypes/status-flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/status-flash.svg -------------------------------------------------------------------------------- /img/filetypes/text-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/text-calendar.svg -------------------------------------------------------------------------------- /img/filetypes/text-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/text-code.svg -------------------------------------------------------------------------------- /img/filetypes/text-uri-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/text-uri-list.svg -------------------------------------------------------------------------------- /img/filetypes/text-vcard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/text-vcard.svg -------------------------------------------------------------------------------- /img/filetypes/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/text.svg -------------------------------------------------------------------------------- /img/filetypes/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/video.svg -------------------------------------------------------------------------------- /img/filetypes/x-office-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/x-office-document.svg -------------------------------------------------------------------------------- /img/filetypes/x-office-presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/x-office-presentation.svg -------------------------------------------------------------------------------- /img/filetypes/x-office-spreadsheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/img/filetypes/x-office-spreadsheet.svg -------------------------------------------------------------------------------- /removeExtension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/removeExtension.sh -------------------------------------------------------------------------------- /tools/GenerateDocs/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/GenerateDocs/generate_docs.sh -------------------------------------------------------------------------------- /tools/GenerateDocs/templates/configuration.adoc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/GenerateDocs/templates/configuration.adoc.tmpl -------------------------------------------------------------------------------- /tools/LocaleDiff/LocaleDiff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/LocaleDiff/LocaleDiff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tools/LocaleDiff/LocaleDiff/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/LocaleDiff/LocaleDiff/main.swift -------------------------------------------------------------------------------- /tools/MakeTVG/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/MakeTVG/main.swift -------------------------------------------------------------------------------- /tools/gomplate/Branding.plist.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/gomplate/Branding.plist.tmpl -------------------------------------------------------------------------------- /tools/normalizestrings/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencloud-eu/ios/HEAD/tools/normalizestrings/main.swift --------------------------------------------------------------------------------