├── .gitattributes ├── .github ├── .config.yml ├── .config.yml.license ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1_bug_report.md │ ├── 1_bug_report.md.license │ ├── 2_feature_request.md │ ├── 2_feature_request.md.license │ ├── config.yml │ └── config.yml.license └── workflows │ ├── additional-targets.yml │ ├── lint.yml │ └── xcode.yml ├── .gitignore ├── .swiftlint.yml ├── AUTHORS.md ├── Animation.gif ├── Brand ├── Custom.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── nextcloud-icon100@2x.png │ │ ├── nextcloud-icon1024@1x.png │ │ ├── nextcloud-icon114@2x.png │ │ ├── nextcloud-icon120@2x.png │ │ ├── nextcloud-icon120@3x.png │ │ ├── nextcloud-icon144@2x.png │ │ ├── nextcloud-icon152@2x.png │ │ ├── nextcloud-icon167@2x.png │ │ ├── nextcloud-icon180@3x.png │ │ ├── nextcloud-icon20@1x.png │ │ ├── nextcloud-icon29@1x-1.png │ │ ├── nextcloud-icon29@1x.png │ │ ├── nextcloud-icon40@1x-1.png │ │ ├── nextcloud-icon40@1x.png │ │ ├── nextcloud-icon40@2x.png │ │ ├── nextcloud-icon50@1x.png │ │ ├── nextcloud-icon57@1x.png │ │ ├── nextcloud-icon58@2x-1.png │ │ ├── nextcloud-icon58@2x.png │ │ ├── nextcloud-icon60@3x.png │ │ ├── nextcloud-icon72@1x.png │ │ ├── nextcloud-icon76@1x.png │ │ ├── nextcloud-icon80@2x-1.png │ │ ├── nextcloud-icon80@2x.png │ │ └── nextcloud-icon87@3x.png │ ├── Contents.json │ ├── intro1.imageset │ │ ├── Contents.json │ │ └── intro1.svg │ ├── intro2.imageset │ │ ├── Contents.json │ │ └── intro2.png │ ├── intro3.imageset │ │ ├── Contents.json │ │ └── intro3.png │ ├── intro4.imageset │ │ ├── Contents.json │ │ └── intro4.png │ └── logo.imageset │ │ ├── Contents.json │ │ └── logo.svg ├── Database.swift ├── File_Provider_Extension.entitlements ├── File_Provider_Extension.plist ├── File_Provider_Extension_UI.entitlements ├── File_Provider_Extension_UI.plist ├── Intro │ ├── NCIntro.storyboard │ ├── NCIntroCollectionViewCell.swift │ ├── NCIntroCollectionViewCell.xib │ └── NCIntroViewController.swift ├── LaunchScreen.storyboard ├── NCBrand.swift ├── Notification_Service_Extension.entitlements ├── Notification_Service_Extension.plist ├── Share.entitlements ├── Share.plist ├── Widget.entitlements ├── Widget.plist ├── WidgetDashboardIntentHandler.entitlements ├── WidgetDashboardIntentHandler.plist ├── iOSClient.entitlements └── iOSClient.plist ├── CODE_OF_CONDUCT.md ├── COPYING.iOS ├── ExternalResources └── NCApplicationHandle.swift ├── File Provider Extension UI ├── DocumentActionViewController.swift └── MainInterface.storyboard ├── File Provider Extension ├── FileProviderData.swift ├── FileProviderDomain.swift ├── FileProviderEnumerator.swift ├── FileProviderExtension+Actions.swift ├── FileProviderExtension+Thumbnail.swift ├── FileProviderExtension.swift ├── FileProviderItem.swift ├── FileProviderUtility.swift └── NCManageDatabase.swift ├── LICENSE.txt ├── Nextcloud Hub.png ├── Nextcloud.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── File Provider Extension UI.xcscheme │ ├── File Provider Extension.xcscheme │ ├── Nextcloud.xcscheme │ ├── Notification Service Extension.xcscheme │ ├── Share.xcscheme │ ├── Widget.xcscheme │ └── WidgetDashboardIntentHandler.xcscheme ├── Notification Service Extension ├── NotificationService.swift └── Notification_Service_Extension-Bridging-Header.h ├── README.md ├── Reasons to use Nextcloud.pdf ├── SECURITY.md ├── Share ├── MainInterface.storyboard ├── NCShareCell.swift ├── NCShareExtension+DataSource.swift ├── NCShareExtension+Files.swift ├── NCShareExtension+NCAccountRequestDelegate.swift ├── NCShareExtension.swift ├── NCShareExtensionData.swift └── Share-Bridging-Header.h ├── Tests ├── NextcloudIntegrationTests │ ├── LoginIntegrationTests.swift │ └── Placeholder.swift ├── NextcloudUITests │ ├── AssistantUITests.swift │ ├── AutoUploadUITests.swift │ ├── BaseUIXCTestCase.swift │ ├── DownloadLimitUITests.swift │ ├── Extensions │ │ └── XCUIElement.swift │ ├── UITestBackend │ │ ├── Responses │ │ │ ├── CapabilitiesResponse.swift │ │ │ ├── CapabilityResponse.swift │ │ │ ├── DownloadLimitResponse.swift │ │ │ ├── OCSResponse.swift │ │ │ └── SharesResponse.swift │ │ └── UITestBackend.swift │ └── UITestError.swift ├── NextcloudUnitTests │ └── Placeholder.swift ├── Server.sh └── TestConstants.swift ├── Widget ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.imageset │ │ └── Contents.json │ ├── Contents.json │ ├── WidgetBackground.colorset │ │ └── Contents.json │ ├── activity.imageset │ │ ├── Contents.json │ │ └── activity.png │ └── widget.imageset │ │ ├── Contents.json │ │ └── icons8-widgetsmith-250.png ├── Dashboard │ ├── DashboardData.swift │ ├── DashboardWidgetProvider.swift │ └── DashboardWidgetView.swift ├── Files │ ├── FilesData.swift │ ├── FilesWidgetProvider.swift │ └── FilesWidgetView.swift ├── Intent │ ├── Base.lproj │ │ └── Intent.intentdefinition │ ├── ca.lproj │ │ └── Intent.strings │ ├── cs-CZ.lproj │ │ └── Intent.strings │ ├── da.lproj │ │ └── Intent.strings │ ├── de.lproj │ │ └── Intent.strings │ ├── el.lproj │ │ └── Intent.strings │ ├── en-GB.lproj │ │ └── Intent.strings │ ├── en.lproj │ │ └── Intent.strings │ ├── es-419.lproj │ │ └── Intent.strings │ ├── es-CL.lproj │ │ └── Intent.strings │ ├── es-CO.lproj │ │ └── Intent.strings │ ├── es-CR.lproj │ │ └── Intent.strings │ ├── es-DO.lproj │ │ └── Intent.strings │ ├── es-EC.lproj │ │ └── Intent.strings │ ├── es-GT.lproj │ │ └── Intent.strings │ ├── es-HN.lproj │ │ └── Intent.strings │ ├── es-MX.lproj │ │ └── Intent.strings │ ├── es-NI.lproj │ │ └── Intent.strings │ ├── es-PA.lproj │ │ └── Intent.strings │ ├── es-PE.lproj │ │ └── Intent.strings │ ├── es-PR.lproj │ │ └── Intent.strings │ ├── es-PY.lproj │ │ └── Intent.strings │ ├── es-SV.lproj │ │ └── Intent.strings │ ├── es-UY.lproj │ │ └── Intent.strings │ ├── es.lproj │ │ └── Intent.strings │ ├── et.lproj │ │ └── Intent.strings │ ├── eu.lproj │ │ └── Intent.strings │ ├── fr.lproj │ │ └── Intent.strings │ ├── gl.lproj │ │ └── Intent.strings │ ├── hr.lproj │ │ └── Intent.strings │ ├── hu.lproj │ │ └── Intent.strings │ ├── is.lproj │ │ └── Intent.strings │ ├── it.lproj │ │ └── Intent.strings │ ├── ja-JP.lproj │ │ └── Intent.strings │ ├── ka-GE.lproj │ │ └── Intent.strings │ ├── ko.lproj │ │ └── Intent.strings │ ├── lo.lproj │ │ └── Intent.strings │ ├── nb-NO.lproj │ │ └── Intent.strings │ ├── nl.lproj │ │ └── Intent.strings │ ├── pl.lproj │ │ └── Intent.strings │ ├── pt-BR.lproj │ │ └── Intent.strings │ ├── pt-PT.lproj │ │ └── Intent.strings │ ├── ru.lproj │ │ └── Intent.strings │ ├── sk-SK.lproj │ │ └── Intent.strings │ ├── sl.lproj │ │ └── Intent.strings │ ├── sr.lproj │ │ └── Intent.strings │ ├── sv.lproj │ │ └── Intent.strings │ ├── tr.lproj │ │ └── Intent.strings │ ├── zh-Hans.lproj │ │ └── Intent.strings │ └── zh-Hant-TW.lproj │ │ └── Intent.strings ├── Lockscreen │ ├── LockscreenData.swift │ ├── LockscreenWidgetProvider.swift │ └── LockscreenWidgetView.swift ├── Toolbar │ ├── ToolbarData.swift │ ├── ToolbarWidgetProvider.swift │ └── ToolbarWidgetView.swift ├── Widget-Brinding-header.h └── Widget.swift ├── WidgetDashboardIntentHandler └── IntentHandler.swift ├── iOSClient ├── .tx │ └── config ├── Account │ ├── Account Request │ │ ├── NCAccountRequest.storyboard │ │ ├── NCAccountRequest.swift │ │ ├── NCShareAccounts.storyboard │ │ └── NCShareAccounts.swift │ ├── Account Settings │ │ ├── NCAccountSettingsModel.swift │ │ └── NCAccountSettingsView.swift │ └── NCAccount.swift ├── Activity │ ├── NCActivity.storyboard │ ├── NCActivity.swift │ ├── NCActivityCommentView.swift │ ├── NCActivityCommentView.xib │ ├── NCActivityNavigationController.swift │ └── NCActivityTableViewCell.swift ├── AppDelegate.swift ├── Assistant │ ├── Components │ │ ├── AssistantLabelStyle.swift │ │ ├── NCAssistantEmptyView.swift │ │ └── StatusInfo.swift │ ├── Create Task │ │ └── NCAssistantCreateNewTask.swift │ ├── Models │ │ └── NCAssistantModel.swift │ ├── NCAssistant.swift │ └── Task Detail │ │ └── NCAssistantTaskDetail.swift ├── AudioRecorder │ ├── NCAudioRecorderViewController.storyboard │ └── NCAudioRecorderViewController.swift ├── BrowserWeb │ ├── NCBrowserWeb.storyboard │ └── NCBrowserWeb.swift ├── Color │ ├── NCColorPicker.storyboard │ └── NCColorPicker.swift ├── Data │ ├── NCManageDatabase+Account.swift │ ├── NCManageDatabase+Activity.swift │ ├── NCManageDatabase+AutoUpload.swift │ ├── NCManageDatabase+Avatar.swift │ ├── NCManageDatabase+Capabilities.swift │ ├── NCManageDatabase+Chunk.swift │ ├── NCManageDatabase+Comments.swift │ ├── NCManageDatabase+CreateMetadata.swift │ ├── NCManageDatabase+DashboardWidget.swift │ ├── NCManageDatabase+Directory.swift │ ├── NCManageDatabase+DownloadLimit.swift │ ├── NCManageDatabase+E2EE.swift │ ├── NCManageDatabase+ExternalSites.swift │ ├── NCManageDatabase+GPS.swift │ ├── NCManageDatabase+Groupfolders.swift │ ├── NCManageDatabase+LayoutForView.swift │ ├── NCManageDatabase+LivePhoto.swift │ ├── NCManageDatabase+LocalFile.swift │ ├── NCManageDatabase+Metadata+Session.swift │ ├── NCManageDatabase+Metadata.swift │ ├── NCManageDatabase+RecommendedFiles.swift │ ├── NCManageDatabase+SecurityGuard.swift │ ├── NCManageDatabase+Share.swift │ ├── NCManageDatabase+TableCapabilities.swift │ ├── NCManageDatabase+Tag.swift │ ├── NCManageDatabase+Tip.swift │ ├── NCManageDatabase+Trash.swift │ ├── NCManageDatabase+Video.swift │ ├── NCManageDatabase.swift │ ├── NCManageDatabaseCore.swift │ └── NCMetadataTranfersSuccess.swift ├── DeepLink │ └── NCDeepLinkHandler.swift ├── Extensions │ ├── Array+Extension.swift │ ├── Data+Extension.swift │ ├── DateFormatter+Extension.swift │ ├── NSMutableAttributedString+Extension.swift │ ├── NotificationCenter+MainThread.swift │ ├── Optional+Extension.swift │ ├── PHAsset+Extension.swift │ ├── PHAssetCollection+Extension.swift │ ├── String+Extension.swift │ ├── UIAlertController+Extension.swift │ ├── UIApplication+Extension.swift │ ├── UIBarButton+Extension.swift │ ├── UIButton+Extension.swift │ ├── UIColor+Extension.swift │ ├── UIControl+Extension.swift │ ├── UIImage+Extension.swift │ ├── UIImage+animatedGIF.h │ ├── UIImage+animatedGIF.m │ ├── UILabel+Extension.swift │ ├── UINavigationController+Extension.swift │ ├── UIScene+Extension.swift │ ├── UITabBar+Extension.swift │ ├── UITabBarController+Extension.swift │ ├── UIToolbar+Extension.swift │ ├── UIView+Extension.swift │ ├── UIViewController+Extension.swift │ └── View+Extension.swift ├── Favorites │ ├── NCFavorite.storyboard │ ├── NCFavorite.swift │ └── NCFavoriteNavigationController.swift ├── Files │ ├── NCFiles+UIScrollViewDelegate.swift │ ├── NCFiles.storyboard │ ├── NCFiles.swift │ └── NCFilesNavigationController.swift ├── Font │ └── Inconsolata │ │ ├── Inconsolata-Black.ttf │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-ExtraBold.ttf │ │ ├── Inconsolata-ExtraLight.ttf │ │ ├── Inconsolata-Light.ttf │ │ ├── Inconsolata-Medium.ttf │ │ ├── Inconsolata-Regular.ttf │ │ └── Inconsolata-SemiBold.ttf ├── GUI │ ├── ComponentView.swift │ ├── LazyView.swift │ ├── Lucid Banner │ │ ├── ErrorBannerView.swift │ │ ├── HudBannerView.swift │ │ └── UploadBannerView.swift │ ├── NCHUDView.swift │ └── ViewOnAppear.swift ├── Groupfolders │ ├── NCGroupfolders.storyboard │ └── NCGroupfolders.swift ├── Images.xcassets │ ├── Contents.json │ ├── InfoNetwork.imageset │ │ ├── Contents.json │ │ └── InfoNetwork.pdf │ ├── SystemBackgroundInverted.colorset │ │ └── Contents.json │ ├── acknowledgements.imageset │ │ ├── Contents.json │ │ └── acknowledgements.pdf │ ├── arrow.right.imageset │ │ ├── Contents.json │ │ └── arrow-right.svg │ ├── arrowtriangle.down.fill.imageset │ │ ├── Contents.json │ │ └── arrowtriangle.down.fill.svg │ ├── avatar.imageset │ │ ├── Contents.json │ │ └── account-circle-outline.svg │ ├── back.imageset │ │ ├── Contents.json │ │ ├── back-1.png │ │ ├── back-2.png │ │ └── back.png │ ├── cancel.imageset │ │ ├── Contents.json │ │ └── cancel.pdf │ ├── certificate.imageset │ │ ├── Contents.json │ │ └── certificate.svg │ ├── collabora.imageset │ │ ├── Contents.json │ │ └── collabora.svg │ ├── custom.person.3.circle.fill.symbolset │ │ ├── Contents.json │ │ └── custom.person.3.circle.fill.svg │ ├── dav.imageset │ │ ├── Contents.json │ │ └── dav.pdf │ ├── directory.imageset │ │ ├── Contents.json │ │ └── directory.pdf │ ├── document.imageset │ │ ├── Contents.json │ │ └── document.pdf │ ├── eye.imageset │ │ ├── Contents.json │ │ └── eye.svg │ ├── file.imageset │ │ ├── Contents.json │ │ └── file.pdf │ ├── file_pdf.imageset │ │ ├── Contents.json │ │ └── file_pdf.svg │ ├── file_photo.imageset │ │ ├── Contents.json │ │ └── file_photo.pdf │ ├── folder.imageset │ │ ├── Contents.json │ │ └── folder.svg │ ├── folderAutomaticUpload.imageset │ │ ├── Contents.json │ │ └── folder_photo.svg │ ├── folderEncrypted.imageset │ │ ├── Contents.json │ │ └── folder_encrypted.svg │ ├── folder_external.imageset │ │ ├── Contents.json │ │ └── folder_external.svg │ ├── folder_group.imageset │ │ ├── Contents.json │ │ └── folder_group.svg │ ├── folder_public.imageset │ │ ├── Contents.json │ │ └── folder_link.svg │ ├── folder_shared_with_me.imageset │ │ ├── Contents.json │ │ └── folder_shared_with_me.svg │ ├── gear.imageset │ │ ├── Contents.json │ │ └── gear.pdf │ ├── gitHub.imageset │ │ ├── Contents.json │ │ ├── github.png │ │ ├── github@2x.png │ │ └── github@3x.png │ ├── iconError.imageset │ │ ├── Contents.json │ │ └── iconError@2x.png │ ├── iconInfo.imageset │ │ ├── Contents.json │ │ └── iconInfo@2x.png │ ├── iconSuccess.imageset │ │ ├── Contents.json │ │ └── iconSuccess@2x.png │ ├── livePhoto.imageset │ │ ├── Contents.json │ │ └── live_photo.png │ ├── loading.dataset │ │ ├── Contents.json │ │ └── loading.gif │ ├── lock.imageset │ │ ├── Contents.json │ │ └── lock-outline.svg │ ├── lock_open.imageset │ │ ├── Contents.json │ │ └── lock-open-variant-outline.svg │ ├── mac.imageset │ │ ├── Contents.json │ │ └── mac.png │ ├── media.imageset │ │ ├── Contents.json │ │ └── tabBarMedia.pdf │ ├── microphone.imageset │ │ ├── Contents.json │ │ └── icons8-microfono-400.svg │ ├── more-apps-template.imageset │ │ ├── Contents.json │ │ └── more-apps.svg │ ├── moreLock.imageset │ │ ├── Contents.json │ │ └── menu-locked-filled.svg │ ├── network.imageset │ │ ├── Contents.json │ │ └── web.svg │ ├── note.text.imageset │ │ ├── Contents.json │ │ └── note.text.svg │ ├── notes-template.imageset │ │ ├── Contents.json │ │ └── notes.svg │ ├── nothing.imageset │ │ ├── Contents.json │ │ └── nothing.pdf │ ├── onlyoffice.imageset │ │ ├── Contents.json │ │ └── onlyoffice.svg │ ├── pause.fill.imageset │ │ ├── Contents.json │ │ └── pause.svg │ ├── pencil.imageset │ │ ├── Contents.json │ │ └── Unknown.svg │ ├── person.crop.circle.imageset │ │ ├── Contents.json │ │ └── account-circle-outline.pdf │ ├── phone.imageset │ │ ├── Contents.json │ │ └── phone.pdf │ ├── photo.imageset │ │ ├── Contents.json │ │ └── photo.pdf │ ├── plus100.imageset │ │ ├── Contents.json │ │ └── plus100@2x.png │ ├── repeat.imageset │ │ ├── Contents.json │ │ └── repeat.svg │ ├── rgb.imageset │ │ ├── Contents.json │ │ └── rgb.svg │ ├── shareCopy.imageset │ │ ├── Contents.json │ │ └── shareCopy.pdf │ ├── shareTypeEmail.imageset │ │ ├── Contents.json │ │ └── shareTypeEmail.pdf │ ├── shareTypeGroup.imageset │ │ ├── Contents.json │ │ └── shareTypeGroup.pdf │ ├── shareTypeLink.imageset │ │ ├── Contents.json │ │ └── shareTypeLink.pdf │ ├── shareTypeRoom.imageset │ │ ├── Contents.json │ │ └── shareTypeRoom.pdf │ ├── shareTypeTeam.imageset │ │ ├── Contents.json │ │ └── shareTypeTeam.pdf │ ├── shareTypeUser.imageset │ │ ├── Contents.json │ │ └── shareTypeUser.pdf │ ├── star.fill.imageset │ │ ├── Contents.json │ │ └── tabBarFavorites.pdf │ ├── stop.imageset │ │ ├── Contents.json │ │ └── stop.pdf │ ├── tabBarPlus.imageset │ │ ├── Contents.json │ │ └── tabBarPlus.pdf │ ├── talk-template.imageset │ │ ├── Contents.json │ │ └── app.svg │ ├── trash.imageset │ │ ├── Contents.json │ │ └── trash.pdf │ ├── twitter.imageset │ │ ├── Contents.json │ │ └── twitter.pdf │ ├── user.imageset │ │ ├── Contents.json │ │ └── user.pdf │ ├── users.imageset │ │ ├── Contents.json │ │ └── users.pdf │ └── xmark.imageset │ │ ├── Contents.json │ │ └── close.svg ├── Login │ ├── NCLogin.storyboard │ ├── NCLogin.swift │ ├── NCLoginProvider.swift │ ├── NCLoginQRCode.swift │ ├── NCViewCertificateDetails.storyboard │ └── NCViewCertificateDetails.swift ├── Main │ ├── Collection Common │ │ ├── Cell │ │ │ ├── NCCellProtocol.swift │ │ │ ├── NCGridCell.swift │ │ │ ├── NCGridCell.xib │ │ │ ├── NCListCell.swift │ │ │ ├── NCListCell.xib │ │ │ ├── NCPhotoCell.swift │ │ │ ├── NCPhotoCell.xib │ │ │ ├── NCRecommendationsCell.swift │ │ │ ├── NCRecommendationsCell.xib │ │ │ └── UIView+BlurVibrancy.swift │ │ ├── NCCollectionViewCommon+CollectionViewDataSource.swift │ │ ├── NCCollectionViewCommon+CollectionViewDataSourcePrefetching.swift │ │ ├── NCCollectionViewCommon+CollectionViewDelegate.swift │ │ ├── NCCollectionViewCommon+CollectionViewDelegateFlowLayout.swift │ │ ├── NCCollectionViewCommon+DragDrop.swift │ │ ├── NCCollectionViewCommon+EasyTipView.swift │ │ ├── NCCollectionViewCommon+EndToEndInitialize.swift │ │ ├── NCCollectionViewCommon+MediaLayout.swift │ │ ├── NCCollectionViewCommon+SelectTabBarDelegate.swift │ │ ├── NCCollectionViewCommon+SyncMetadata.swift │ │ ├── NCCollectionViewCommon.swift │ │ ├── NCCollectionViewCommonPinchGesture.swift │ │ ├── NCCollectionViewCommonSelectTabBar.swift │ │ ├── NCCollectionViewDataSource.swift │ │ ├── NCCollectionViewDownloadThumbnail.swift │ │ ├── NCCollectionViewUnifiedSearch.swift │ │ └── Section Header Footer │ │ │ ├── NCSectionFirstHeader.swift │ │ │ ├── NCSectionFirstHeader.xib │ │ │ ├── NCSectionFirstHeaderEmptyData.swift │ │ │ ├── NCSectionFirstHeaderEmptyData.xib │ │ │ ├── NCSectionFooter.swift │ │ │ ├── NCSectionFooter.xib │ │ │ ├── NCSectionHeader.swift │ │ │ └── NCSectionHeader.xib │ ├── Create │ │ ├── NCCreate.swift │ │ ├── NCCreateFormUploadConflict.storyboard │ │ ├── NCCreateFormUploadConflict.swift │ │ ├── NCCreateFormUploadConflictCell.swift │ │ ├── NCCreateFormUploadConflictCell.xib │ │ └── Upload Assets │ │ │ ├── NCUploadAssetsModel.swift │ │ │ └── NCUploadAssetsView.swift │ ├── Main.storyboard │ ├── NCDragDrop.swift │ ├── NCMainNavigationController.swift │ ├── NCMainTabBarController.swift │ ├── NCPasscode.swift │ └── NCPickerViewController.swift ├── Media │ ├── Cell │ │ ├── NCMediaCell.swift │ │ └── NCMediaCell.xib │ ├── NCMedia+CollectionViewDataSource.swift │ ├── NCMedia+CollectionViewDataSourcePrefetching.swift │ ├── NCMedia+CollectionViewDelegate.swift │ ├── NCMedia+Command.swift │ ├── NCMedia+DragDrop.swift │ ├── NCMedia+MediaLayout.swift │ ├── NCMedia+TransferDelegate.swift │ ├── NCMedia.storyboard │ ├── NCMedia.swift │ ├── NCMediaDataSource.swift │ ├── NCMediaDownloadThumbnail.swift │ ├── NCMediaLayout.swift │ ├── NCMediaNavigationController.swift │ ├── NCMediaPinchGesture.swift │ └── NCMediaSelectTabBar.swift ├── Menu │ ├── ContextMenuActions.swift │ ├── NCCollectionViewCommon+Menu.swift │ ├── NCContextMenu.swift │ ├── NCMenu+FloatingPanel.swift │ ├── NCMenu.storyboard │ ├── NCMenu.swift │ ├── NCMenuAction.swift │ ├── NCNotification+Menu.swift │ ├── NCShare+Menu.swift │ ├── NCTrash+Menu.swift │ ├── NCViewerContextMenu.swift │ └── UIViewController+Menu.swift ├── More │ ├── Cells │ │ ├── BaseNCMoreCell.swift │ │ ├── CCCellMore.swift │ │ ├── NCMoreAppSuggestionsCell.swift │ │ └── NCMoreAppSuggestionsCell.xib │ ├── NCMore.storyboard │ ├── NCMore.swift │ └── NCMoreNavigationController.swift ├── NCAppStateManager.swift ├── NCBackgroundLocationUploadManager.swift ├── NCBridgeSwift.h ├── NCGlobal.swift ├── NCImageCache.swift ├── NCSession.swift ├── Networking │ ├── E2EE │ │ ├── NCEndToEndEncryption.h │ │ ├── NCEndToEndEncryption.m │ │ ├── NCEndToEndMetadata.swift │ │ ├── NCEndToEndMetadataV1.swift │ │ ├── NCEndToEndMetadataV20.swift │ │ ├── NCNetworkingE2EE.swift │ │ ├── NCNetworkingE2EECreateFolder.swift │ │ ├── NCNetworkingE2EEDelete.swift │ │ ├── NCNetworkingE2EEMarkFolder.swift │ │ ├── NCNetworkingE2EERename.swift │ │ └── NCNetworkingE2EEUpload.swift │ ├── NCAutoUpload.swift │ ├── NCConfigServer.swift │ ├── NCNetworking+Download.swift │ ├── NCNetworking+LivePhoto.swift │ ├── NCNetworking+NextcloudKitDelegate.swift │ ├── NCNetworking+Recommendations.swift │ ├── NCNetworking+ServerError.swift │ ├── NCNetworking+Task.swift │ ├── NCNetworking+TermsOfService.swift │ ├── NCNetworking+TransferDelegate.swift │ ├── NCNetworking+Upload.swift │ ├── NCNetworking+WebDAV.swift │ ├── NCNetworking.swift │ ├── NCNetworkingProcess.swift │ └── NCService.swift ├── Nextcloud-Bridging-Header.h ├── Notification │ ├── NCNotification.storyboard │ └── NCNotification.swift ├── Offline │ ├── NCOffline.storyboard │ └── NCOffline.swift ├── PrivacyInfo.xcprivacy ├── PushNotification │ ├── NCPushNotification.swift │ ├── NCPushNotificationEncryption.h │ └── NCPushNotificationEncryption.m ├── Recent │ ├── NCRecent.storyboard │ └── NCRecent.swift ├── RichWorkspace │ ├── NCRichWorkspaceCommon.swift │ ├── NCViewerRichWorkspace.storyboard │ ├── NCViewerRichWorkspace.swift │ └── NCViewerRichWorkspaceWebView.swift ├── Scan document │ ├── NCDocumentCamera.swift │ ├── NCScan+CollectionView.swift │ ├── NCScan.storyboard │ ├── NCScan.swift │ ├── NCScanCell.swift │ └── NCUploadScanDocument.swift ├── SceneDelegate.swift ├── Select │ ├── NCSelect.storyboard │ ├── NCSelect.swift │ ├── NCSelectCommandViewCopyMove.xib │ ├── NCSelectCommandViewSelect+CreateFolder.xib │ ├── NCSelectCommandViewSelect.xib │ └── NCSelectOpen+SelectDelegate.swift ├── Settings │ ├── Acknowledgements.rtf │ ├── Advanced │ │ ├── Capabilities │ │ │ ├── NCCapabilitiesModel.swift │ │ │ └── NCCapabilitiesView.swift │ │ ├── File Name │ │ │ ├── NCFileNameModel.swift │ │ │ └── NCFileNameView.swift │ │ ├── NCSettingsAdvancedModel.swift │ │ └── NCSettingsAdvancedView.swift │ ├── AutoUpload │ │ ├── Albums.swift │ │ ├── NCAutoUploadModel.swift │ │ └── NCAutoUploadView.swift │ ├── Display │ │ ├── NCDisplayModel.swift │ │ └── NCDisplayView.swift │ ├── E2EE │ │ ├── NCEndToEndInitialize.swift │ │ ├── NCManageE2EEModel.swift │ │ └── NCManageE2EEView.swift │ ├── Helpers │ │ ├── NCAcknowledgementsView.swift │ │ └── NCWebBrowserView.swift │ ├── NCPreferences.swift │ ├── NCSettingsBundleHelper.swift │ ├── SelectAlbum │ │ ├── AlbumModel.swift │ │ ├── PHAssetCollectionThumbnailLoader.swift │ │ └── SelectAlbumView.swift │ └── Settings │ │ ├── NCSettingsModel.swift │ │ ├── NCSettingsView.swift │ │ └── SetupPasscodeView.swift ├── Share │ ├── Advanced │ │ ├── DownloadLimit │ │ │ ├── DownloadLimitViewModel.swift │ │ │ ├── NCShareDownloadLimitTableViewController.swift │ │ │ ├── NCShareDownloadLimitTableViewControllerDelegate.swift │ │ │ └── NCShareDownloadLimitViewController.swift │ │ ├── NCShareAdvancePermission.swift │ │ ├── NCShareAdvancePermissionFooter.swift │ │ ├── NCShareAdvancePermissionFooter.xib │ │ ├── NCShareCells.swift │ │ ├── NCShareDateCell.swift │ │ ├── NCShareNewUserAddComment.swift │ │ └── NCShareToggleCell.swift │ ├── NCMetadataPermissions.swift │ ├── NCSearchUserDropDownCell.xib │ ├── NCShare+NCCellDelegate.swift │ ├── NCShare.storyboard │ ├── NCShare.swift │ ├── NCShareCommentsCell.swift │ ├── NCShareCommentsCell.xib │ ├── NCShareCommon.swift │ ├── NCShareHeader.swift │ ├── NCShareHeader.xib │ ├── NCShareHeaderView.xib │ ├── NCShareLinkCell.swift │ ├── NCShareLinkCell.xib │ ├── NCShareNavigationTitleSetting.swift │ ├── NCShareNetworking.swift │ ├── NCShareNetworkingDelegate.swift │ ├── NCSharePaging.swift │ ├── NCSharePermissions.swift │ ├── NCShareUserCell.swift │ ├── NCShareUserCell.xib │ ├── Shareable.swift │ └── TransientShare.swift ├── Shares │ ├── NCShares.storyboard │ └── NCShares.swift ├── StatusMessage │ ├── EmojiTextField.swift │ ├── NCStatusMessageModel.swift │ └── NCStatusMessageView.swift ├── Supporting Files │ ├── af.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── an.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ar.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ast.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── az.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── be.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── bg_BG.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── bn_BD.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── br.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── bs.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ca.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── cs-CZ.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── cy_GB.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── da.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── de.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── el.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── en-GB.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── eo.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-419.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-AR.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-CL.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-CO.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-CR.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-DO.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-EC.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-GT.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-HN.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-MX.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-NI.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-PA.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-PE.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-PR.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-PY.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-SV.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es-UY.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── et.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── eu.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fa.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fi-FI.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fo.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── fr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ga.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── gd.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── gl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── he.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hi_IN.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hsb.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hu.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── hy.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ia.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── id.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ig.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── is.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── it.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ja-JP.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ka-GE.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ka.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── kab.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── km.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── kn.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ko.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── la.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── lb.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── lo.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── lt_LT.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── lv.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── mk.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── mn.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── mr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ms_MY.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── my.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── nb-NO.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ne.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── nl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── nn_NO.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── oc.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ps.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pt-BR.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── pt-PT.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ro.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ru.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sc.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── si.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sk-SK.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sl.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sq.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sr@latin.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sv.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── sw.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ta.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── th_TH.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── tk.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── tr.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ug.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── uk.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── ur_PK.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── uz.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── vi.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── zh-Hans.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── zh-Hant-TW.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── zh_HK.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ └── zu_ZA.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict ├── Terms of service │ ├── NCTermOfServiceModel.swift │ └── NCTermOfServiceView.swift ├── Transfers │ ├── NCTransfersModel.swift │ └── NCTransfersView.swift ├── Trash │ ├── Cell │ │ ├── NCTrashCellProtocol.swift │ │ ├── NCTrashGridCell.swift │ │ ├── NCTrashGridCell.xib │ │ ├── NCTrashListCell.swift │ │ └── NCTrashListCell.xib │ ├── NCTrash+CollectionView.swift │ ├── NCTrash+Networking.swift │ ├── NCTrash+SelectTabBarDelegate.swift │ ├── NCTrash.storyboard │ ├── NCTrash.swift │ └── NCTrashSelectTabBar.swift ├── UserStatus │ ├── NCUserStatusModel.swift │ └── NCUserStatusView.swift ├── Utility │ ├── FileAutoRenamer+Extensions.swift │ ├── FileNameValidator+Extensions.swift │ ├── Maintenance.swift │ ├── MigrationMultiDomains.swift │ ├── NCActivityIndicator.swift │ ├── NCAppVersionManager.swift │ ├── NCAskAuthorization.swift │ ├── NCCameraRoll.swift │ ├── NCContentPresenter.swift │ ├── NCDebouncer.swift │ ├── NCLivePhoto.swift │ ├── NCOperationSaveLivePhoto.swift │ ├── NCPopupViewController.swift │ ├── NCStoreReview.swift │ ├── NCUtility+Date.swift │ ├── NCUtility+Exif.swift │ ├── NCUtility+Image.swift │ ├── NCUtility.swift │ ├── NCUtilityFileSystem.swift │ ├── NYMnemonic │ │ ├── NYMnemonic.h │ │ ├── NYMnemonic.m │ │ └── languages │ │ │ └── english.txt │ ├── PKCS12.swift │ ├── ScreenAwakeManager │ │ ├── AwakeMode.swift │ │ └── ScreenAwakeManager.swift │ ├── TOPasscodeViewController │ │ ├── Models │ │ │ ├── TOPasscodeCircleImage.h │ │ │ ├── TOPasscodeCircleImage.m │ │ │ ├── TOPasscodeViewContentLayout.h │ │ │ ├── TOPasscodeViewContentLayout.m │ │ │ ├── TOPasscodeViewControllerAnimatedTransitioning.h │ │ │ ├── TOPasscodeViewControllerAnimatedTransitioning.m │ │ │ ├── TOSettingsKeypadImage.h │ │ │ └── TOSettingsKeypadImage.m │ │ ├── Supporting │ │ │ └── TOPasscodeViewControllerConstants.h │ │ ├── TOPasscodeSettingsViewController.h │ │ ├── TOPasscodeSettingsViewController.m │ │ ├── TOPasscodeViewController.h │ │ ├── TOPasscodeViewController.m │ │ └── Views │ │ │ ├── Main │ │ │ ├── TOPasscodeCircleButton.h │ │ │ ├── TOPasscodeCircleButton.m │ │ │ ├── TOPasscodeKeypadView.h │ │ │ ├── TOPasscodeKeypadView.m │ │ │ ├── TOPasscodeView.h │ │ │ └── TOPasscodeView.m │ │ │ ├── Settings │ │ │ ├── TOPasscodeSettingsKeypadButton.h │ │ │ ├── TOPasscodeSettingsKeypadButton.m │ │ │ ├── TOPasscodeSettingsKeypadView.h │ │ │ ├── TOPasscodeSettingsKeypadView.m │ │ │ ├── TOPasscodeSettingsWarningLabel.h │ │ │ └── TOPasscodeSettingsWarningLabel.m │ │ │ └── Shared │ │ │ ├── TOPasscodeButtonLabel.h │ │ │ ├── TOPasscodeButtonLabel.m │ │ │ ├── TOPasscodeCircleView.h │ │ │ ├── TOPasscodeCircleView.m │ │ │ ├── TOPasscodeFixedInputView.h │ │ │ ├── TOPasscodeFixedInputView.m │ │ │ ├── TOPasscodeInputField.h │ │ │ ├── TOPasscodeInputField.m │ │ │ ├── TOPasscodeVariableInputView.h │ │ │ └── TOPasscodeVariableInputView.m │ ├── ThreadSafeArray.swift │ └── ThreadSafeDictionary.swift └── Viewer │ ├── NCViewer.swift │ ├── NCViewerMedia │ ├── NCPlayer │ │ ├── NCPlayer.swift │ │ ├── NCPlayerToolBar.swift │ │ └── NCPlayerToolBar.xib │ ├── NCViewerMedia+VisionKit.swift │ ├── NCViewerMedia.swift │ ├── NCViewerMediaDetailView.swift │ ├── NCViewerMediaPage.storyboard │ └── NCViewerMediaPage.swift │ ├── NCViewerNextcloudText │ ├── NCViewerNextcloudText.storyboard │ └── NCViewerNextcloudText.swift │ ├── NCViewerPDF │ ├── NCViewerPDF.storyboard │ ├── NCViewerPDF.swift │ ├── NCViewerPDFSearch.swift │ └── NCViewerPDFSearchCell.xib │ ├── NCViewerProviderContextMenu.swift │ ├── NCViewerQuickLook │ ├── NCViewerQuickLook.swift │ └── NCViewerQuickLookView.swift │ └── NCViewerRichdocument │ ├── NCViewerRichDocument.swift │ └── NCViewerRichdocument.storyboard └── widget.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/.config.yml -------------------------------------------------------------------------------- /.github/.config.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/.config.yml.license -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.md.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/ISSUE_TEMPLATE/2_feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.md.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/ISSUE_TEMPLATE/2_feature_request.md.license -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/ISSUE_TEMPLATE/config.yml.license -------------------------------------------------------------------------------- /.github/workflows/additional-targets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/workflows/additional-targets.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/xcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.github/workflows/xcode.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Animation.gif -------------------------------------------------------------------------------- /Brand/Custom.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro1.imageset/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro1.imageset/intro1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro1.imageset/intro1.svg -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro2.imageset/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro2.imageset/intro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro2.imageset/intro2.png -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro3.imageset/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro3.imageset/intro3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro3.imageset/intro3.png -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro4.imageset/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/intro4.imageset/intro4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/intro4.imageset/intro4.png -------------------------------------------------------------------------------- /Brand/Custom.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Brand/Custom.xcassets/logo.imageset/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Custom.xcassets/logo.imageset/logo.svg -------------------------------------------------------------------------------- /Brand/Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Database.swift -------------------------------------------------------------------------------- /Brand/File_Provider_Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/File_Provider_Extension.entitlements -------------------------------------------------------------------------------- /Brand/File_Provider_Extension.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/File_Provider_Extension.plist -------------------------------------------------------------------------------- /Brand/File_Provider_Extension_UI.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/File_Provider_Extension_UI.entitlements -------------------------------------------------------------------------------- /Brand/File_Provider_Extension_UI.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/File_Provider_Extension_UI.plist -------------------------------------------------------------------------------- /Brand/Intro/NCIntro.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Intro/NCIntro.storyboard -------------------------------------------------------------------------------- /Brand/Intro/NCIntroCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Intro/NCIntroCollectionViewCell.swift -------------------------------------------------------------------------------- /Brand/Intro/NCIntroCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Intro/NCIntroCollectionViewCell.xib -------------------------------------------------------------------------------- /Brand/Intro/NCIntroViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Intro/NCIntroViewController.swift -------------------------------------------------------------------------------- /Brand/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Brand/NCBrand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/NCBrand.swift -------------------------------------------------------------------------------- /Brand/Notification_Service_Extension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Notification_Service_Extension.entitlements -------------------------------------------------------------------------------- /Brand/Notification_Service_Extension.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Notification_Service_Extension.plist -------------------------------------------------------------------------------- /Brand/Share.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Share.entitlements -------------------------------------------------------------------------------- /Brand/Share.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Share.plist -------------------------------------------------------------------------------- /Brand/Widget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Widget.entitlements -------------------------------------------------------------------------------- /Brand/Widget.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/Widget.plist -------------------------------------------------------------------------------- /Brand/WidgetDashboardIntentHandler.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/WidgetDashboardIntentHandler.entitlements -------------------------------------------------------------------------------- /Brand/WidgetDashboardIntentHandler.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/WidgetDashboardIntentHandler.plist -------------------------------------------------------------------------------- /Brand/iOSClient.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/iOSClient.entitlements -------------------------------------------------------------------------------- /Brand/iOSClient.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Brand/iOSClient.plist -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING.iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/COPYING.iOS -------------------------------------------------------------------------------- /ExternalResources/NCApplicationHandle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/ExternalResources/NCApplicationHandle.swift -------------------------------------------------------------------------------- /File Provider Extension UI/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension UI/MainInterface.storyboard -------------------------------------------------------------------------------- /File Provider Extension/FileProviderData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderData.swift -------------------------------------------------------------------------------- /File Provider Extension/FileProviderDomain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderDomain.swift -------------------------------------------------------------------------------- /File Provider Extension/FileProviderEnumerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderEnumerator.swift -------------------------------------------------------------------------------- /File Provider Extension/FileProviderExtension+Actions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderExtension+Actions.swift -------------------------------------------------------------------------------- /File Provider Extension/FileProviderExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderExtension.swift -------------------------------------------------------------------------------- /File Provider Extension/FileProviderItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderItem.swift -------------------------------------------------------------------------------- /File Provider Extension/FileProviderUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/FileProviderUtility.swift -------------------------------------------------------------------------------- /File Provider Extension/NCManageDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/File Provider Extension/NCManageDatabase.swift -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Nextcloud Hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Nextcloud Hub.png -------------------------------------------------------------------------------- /Nextcloud.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Nextcloud.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Nextcloud.xcodeproj/xcshareddata/xcschemes/Share.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Nextcloud.xcodeproj/xcshareddata/xcschemes/Share.xcscheme -------------------------------------------------------------------------------- /Nextcloud.xcodeproj/xcshareddata/xcschemes/Widget.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Nextcloud.xcodeproj/xcshareddata/xcschemes/Widget.xcscheme -------------------------------------------------------------------------------- /Notification Service Extension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Notification Service Extension/NotificationService.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/README.md -------------------------------------------------------------------------------- /Reasons to use Nextcloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Reasons to use Nextcloud.pdf -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Share/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/MainInterface.storyboard -------------------------------------------------------------------------------- /Share/NCShareCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/NCShareCell.swift -------------------------------------------------------------------------------- /Share/NCShareExtension+DataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/NCShareExtension+DataSource.swift -------------------------------------------------------------------------------- /Share/NCShareExtension+Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/NCShareExtension+Files.swift -------------------------------------------------------------------------------- /Share/NCShareExtension+NCAccountRequestDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/NCShareExtension+NCAccountRequestDelegate.swift -------------------------------------------------------------------------------- /Share/NCShareExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/NCShareExtension.swift -------------------------------------------------------------------------------- /Share/NCShareExtensionData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/NCShareExtensionData.swift -------------------------------------------------------------------------------- /Share/Share-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Share/Share-Bridging-Header.h -------------------------------------------------------------------------------- /Tests/NextcloudIntegrationTests/LoginIntegrationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudIntegrationTests/LoginIntegrationTests.swift -------------------------------------------------------------------------------- /Tests/NextcloudIntegrationTests/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudIntegrationTests/Placeholder.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/AssistantUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/AssistantUITests.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/AutoUploadUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/AutoUploadUITests.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/BaseUIXCTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/BaseUIXCTestCase.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/DownloadLimitUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/DownloadLimitUITests.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/Extensions/XCUIElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/Extensions/XCUIElement.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/UITestBackend/UITestBackend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/UITestBackend/UITestBackend.swift -------------------------------------------------------------------------------- /Tests/NextcloudUITests/UITestError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUITests/UITestError.swift -------------------------------------------------------------------------------- /Tests/NextcloudUnitTests/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/NextcloudUnitTests/Placeholder.swift -------------------------------------------------------------------------------- /Tests/Server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/Server.sh -------------------------------------------------------------------------------- /Tests/TestConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Tests/TestConstants.swift -------------------------------------------------------------------------------- /Widget/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Widget/Assets.xcassets/AppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Assets.xcassets/AppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Widget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Widget/Assets.xcassets/activity.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Assets.xcassets/activity.imageset/Contents.json -------------------------------------------------------------------------------- /Widget/Assets.xcassets/activity.imageset/activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Assets.xcassets/activity.imageset/activity.png -------------------------------------------------------------------------------- /Widget/Assets.xcassets/widget.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Assets.xcassets/widget.imageset/Contents.json -------------------------------------------------------------------------------- /Widget/Dashboard/DashboardData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Dashboard/DashboardData.swift -------------------------------------------------------------------------------- /Widget/Dashboard/DashboardWidgetProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Dashboard/DashboardWidgetProvider.swift -------------------------------------------------------------------------------- /Widget/Dashboard/DashboardWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Dashboard/DashboardWidgetView.swift -------------------------------------------------------------------------------- /Widget/Files/FilesData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Files/FilesData.swift -------------------------------------------------------------------------------- /Widget/Files/FilesWidgetProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Files/FilesWidgetProvider.swift -------------------------------------------------------------------------------- /Widget/Files/FilesWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Files/FilesWidgetView.swift -------------------------------------------------------------------------------- /Widget/Intent/Base.lproj/Intent.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/Base.lproj/Intent.intentdefinition -------------------------------------------------------------------------------- /Widget/Intent/ca.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/ca.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/cs-CZ.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/cs-CZ.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/da.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/da.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/de.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/de.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/el.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/el.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/en-GB.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/en-GB.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/en.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/en.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-419.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-419.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-CL.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-CL.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-CO.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-CO.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-CR.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-CR.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-DO.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-DO.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-EC.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-EC.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-GT.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-GT.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-HN.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-HN.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-MX.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-MX.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-NI.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-NI.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-PA.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-PA.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-PE.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-PE.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-PR.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-PR.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-PY.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-PY.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-SV.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-SV.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es-UY.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es-UY.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/es.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/es.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/et.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/et.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/eu.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/eu.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/fr.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/fr.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/gl.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/gl.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/hr.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/hr.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/hu.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/hu.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/is.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/is.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/it.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/it.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/ja-JP.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/ja-JP.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/ka-GE.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/ka-GE.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/ko.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/ko.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/lo.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/lo.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/nb-NO.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/nb-NO.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/nl.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/nl.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/pl.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/pl.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/pt-BR.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/pt-BR.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/pt-PT.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/pt-PT.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/ru.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/ru.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/sk-SK.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/sk-SK.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/sl.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/sl.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/sr.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/sr.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/sv.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/sv.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/tr.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/tr.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/zh-Hans.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/zh-Hans.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Intent/zh-Hant-TW.lproj/Intent.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Intent/zh-Hant-TW.lproj/Intent.strings -------------------------------------------------------------------------------- /Widget/Lockscreen/LockscreenData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Lockscreen/LockscreenData.swift -------------------------------------------------------------------------------- /Widget/Lockscreen/LockscreenWidgetProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Lockscreen/LockscreenWidgetProvider.swift -------------------------------------------------------------------------------- /Widget/Lockscreen/LockscreenWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Lockscreen/LockscreenWidgetView.swift -------------------------------------------------------------------------------- /Widget/Toolbar/ToolbarData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Toolbar/ToolbarData.swift -------------------------------------------------------------------------------- /Widget/Toolbar/ToolbarWidgetProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Toolbar/ToolbarWidgetProvider.swift -------------------------------------------------------------------------------- /Widget/Toolbar/ToolbarWidgetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Toolbar/ToolbarWidgetView.swift -------------------------------------------------------------------------------- /Widget/Widget-Brinding-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Widget-Brinding-header.h -------------------------------------------------------------------------------- /Widget/Widget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/Widget/Widget.swift -------------------------------------------------------------------------------- /WidgetDashboardIntentHandler/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/WidgetDashboardIntentHandler/IntentHandler.swift -------------------------------------------------------------------------------- /iOSClient/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/.tx/config -------------------------------------------------------------------------------- /iOSClient/Account/Account Request/NCAccountRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Account/Account Request/NCAccountRequest.swift -------------------------------------------------------------------------------- /iOSClient/Account/Account Request/NCShareAccounts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Account/Account Request/NCShareAccounts.swift -------------------------------------------------------------------------------- /iOSClient/Account/NCAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Account/NCAccount.swift -------------------------------------------------------------------------------- /iOSClient/Activity/NCActivity.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Activity/NCActivity.storyboard -------------------------------------------------------------------------------- /iOSClient/Activity/NCActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Activity/NCActivity.swift -------------------------------------------------------------------------------- /iOSClient/Activity/NCActivityCommentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Activity/NCActivityCommentView.swift -------------------------------------------------------------------------------- /iOSClient/Activity/NCActivityCommentView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Activity/NCActivityCommentView.xib -------------------------------------------------------------------------------- /iOSClient/Activity/NCActivityNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Activity/NCActivityNavigationController.swift -------------------------------------------------------------------------------- /iOSClient/Activity/NCActivityTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Activity/NCActivityTableViewCell.swift -------------------------------------------------------------------------------- /iOSClient/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/AppDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Assistant/Components/AssistantLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Assistant/Components/AssistantLabelStyle.swift -------------------------------------------------------------------------------- /iOSClient/Assistant/Components/NCAssistantEmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Assistant/Components/NCAssistantEmptyView.swift -------------------------------------------------------------------------------- /iOSClient/Assistant/Components/StatusInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Assistant/Components/StatusInfo.swift -------------------------------------------------------------------------------- /iOSClient/Assistant/Models/NCAssistantModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Assistant/Models/NCAssistantModel.swift -------------------------------------------------------------------------------- /iOSClient/Assistant/NCAssistant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Assistant/NCAssistant.swift -------------------------------------------------------------------------------- /iOSClient/Assistant/Task Detail/NCAssistantTaskDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Assistant/Task Detail/NCAssistantTaskDetail.swift -------------------------------------------------------------------------------- /iOSClient/AudioRecorder/NCAudioRecorderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/AudioRecorder/NCAudioRecorderViewController.swift -------------------------------------------------------------------------------- /iOSClient/BrowserWeb/NCBrowserWeb.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/BrowserWeb/NCBrowserWeb.storyboard -------------------------------------------------------------------------------- /iOSClient/BrowserWeb/NCBrowserWeb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/BrowserWeb/NCBrowserWeb.swift -------------------------------------------------------------------------------- /iOSClient/Color/NCColorPicker.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Color/NCColorPicker.storyboard -------------------------------------------------------------------------------- /iOSClient/Color/NCColorPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Color/NCColorPicker.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Account.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Activity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Activity.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+AutoUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+AutoUpload.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Avatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Avatar.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Capabilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Capabilities.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Chunk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Chunk.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Comments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Comments.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+CreateMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+CreateMetadata.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+DashboardWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+DashboardWidget.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Directory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Directory.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+DownloadLimit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+DownloadLimit.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+E2EE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+E2EE.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+ExternalSites.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+ExternalSites.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+GPS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+GPS.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Groupfolders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Groupfolders.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+LayoutForView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+LayoutForView.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+LivePhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+LivePhoto.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+LocalFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+LocalFile.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Metadata+Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Metadata+Session.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Metadata.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+RecommendedFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+RecommendedFiles.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+SecurityGuard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+SecurityGuard.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Share.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Share.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+TableCapabilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+TableCapabilities.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Tag.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Tip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Tip.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Trash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Trash.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase+Video.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase+Video.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabase.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCManageDatabaseCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCManageDatabaseCore.swift -------------------------------------------------------------------------------- /iOSClient/Data/NCMetadataTranfersSuccess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Data/NCMetadataTranfersSuccess.swift -------------------------------------------------------------------------------- /iOSClient/DeepLink/NCDeepLinkHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/DeepLink/NCDeepLinkHandler.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/Array+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/Data+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/Data+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/DateFormatter+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/DateFormatter+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/NotificationCenter+MainThread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/NotificationCenter+MainThread.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/Optional+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/Optional+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/PHAsset+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/PHAsset+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/PHAssetCollection+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/PHAssetCollection+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/String+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIAlertController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIAlertController+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIApplication+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIApplication+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIBarButton+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIBarButton+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIButton+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIButton+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIColor+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIControl+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIControl+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIImage+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIImage+animatedGIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIImage+animatedGIF.h -------------------------------------------------------------------------------- /iOSClient/Extensions/UIImage+animatedGIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIImage+animatedGIF.m -------------------------------------------------------------------------------- /iOSClient/Extensions/UILabel+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UILabel+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UINavigationController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UINavigationController+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIScene+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIScene+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UITabBar+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UITabBar+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UITabBarController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UITabBarController+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIToolbar+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIToolbar+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIView+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/UIViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/UIViewController+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Extensions/View+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Extensions/View+Extension.swift -------------------------------------------------------------------------------- /iOSClient/Favorites/NCFavorite.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Favorites/NCFavorite.storyboard -------------------------------------------------------------------------------- /iOSClient/Favorites/NCFavorite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Favorites/NCFavorite.swift -------------------------------------------------------------------------------- /iOSClient/Favorites/NCFavoriteNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Favorites/NCFavoriteNavigationController.swift -------------------------------------------------------------------------------- /iOSClient/Files/NCFiles+UIScrollViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Files/NCFiles+UIScrollViewDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Files/NCFiles.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Files/NCFiles.storyboard -------------------------------------------------------------------------------- /iOSClient/Files/NCFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Files/NCFiles.swift -------------------------------------------------------------------------------- /iOSClient/Files/NCFilesNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Files/NCFilesNavigationController.swift -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-Black.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-ExtraBold.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-ExtraLight.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-Light.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-Medium.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /iOSClient/Font/Inconsolata/Inconsolata-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Font/Inconsolata/Inconsolata-SemiBold.ttf -------------------------------------------------------------------------------- /iOSClient/GUI/ComponentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/ComponentView.swift -------------------------------------------------------------------------------- /iOSClient/GUI/LazyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/LazyView.swift -------------------------------------------------------------------------------- /iOSClient/GUI/Lucid Banner/ErrorBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/Lucid Banner/ErrorBannerView.swift -------------------------------------------------------------------------------- /iOSClient/GUI/Lucid Banner/HudBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/Lucid Banner/HudBannerView.swift -------------------------------------------------------------------------------- /iOSClient/GUI/Lucid Banner/UploadBannerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/Lucid Banner/UploadBannerView.swift -------------------------------------------------------------------------------- /iOSClient/GUI/NCHUDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/NCHUDView.swift -------------------------------------------------------------------------------- /iOSClient/GUI/ViewOnAppear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/GUI/ViewOnAppear.swift -------------------------------------------------------------------------------- /iOSClient/Groupfolders/NCGroupfolders.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Groupfolders/NCGroupfolders.storyboard -------------------------------------------------------------------------------- /iOSClient/Groupfolders/NCGroupfolders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Groupfolders/NCGroupfolders.swift -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/avatar.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/back.imageset/back-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/back.imageset/back-1.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/back.imageset/back-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/back.imageset/back-2.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/back.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/back.imageset/back.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/cancel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/cancel.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/cancel.imageset/cancel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/cancel.imageset/cancel.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/collabora.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/collabora.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/collabora.imageset/collabora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/collabora.imageset/collabora.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/dav.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/dav.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/dav.imageset/dav.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/dav.imageset/dav.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/directory.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/directory.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/directory.imageset/directory.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/directory.imageset/directory.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/document.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/document.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/document.imageset/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/document.imageset/document.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/eye.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/eye.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/eye.imageset/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/eye.imageset/eye.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/file.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/file.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/file.imageset/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/file.imageset/file.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/file_pdf.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/file_pdf.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/file_pdf.imageset/file_pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/file_pdf.imageset/file_pdf.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/file_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/file_photo.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/folder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/folder.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/folder.imageset/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/folder.imageset/folder.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/gear.imageset/gear.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/gear.imageset/gear.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/gitHub.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/gitHub.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/gitHub.imageset/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/gitHub.imageset/github.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/gitHub.imageset/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/gitHub.imageset/github@2x.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/gitHub.imageset/github@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/gitHub.imageset/github@3x.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/iconError.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/iconError.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/iconInfo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/iconInfo.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/iconInfo.imageset/iconInfo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/iconInfo.imageset/iconInfo@2x.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/livePhoto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/livePhoto.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/livePhoto.imageset/live_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/livePhoto.imageset/live_photo.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/loading.dataset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/loading.dataset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/loading.dataset/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/loading.dataset/loading.gif -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/lock.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/lock.imageset/lock-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/lock.imageset/lock-outline.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/lock_open.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/lock_open.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/mac.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/mac.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/mac.imageset/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/mac.imageset/mac.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/media.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/media.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/media.imageset/tabBarMedia.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/media.imageset/tabBarMedia.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/microphone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/microphone.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/moreLock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/moreLock.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/network.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/network.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/network.imageset/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/network.imageset/web.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/note.text.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/note.text.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/note.text.imageset/note.text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/note.text.imageset/note.text.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/notes-template.imageset/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/notes-template.imageset/notes.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/nothing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/nothing.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/nothing.imageset/nothing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/nothing.imageset/nothing.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/onlyoffice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/onlyoffice.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/pause.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/pause.fill.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/pause.fill.imageset/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/pause.fill.imageset/pause.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/pencil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/pencil.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/pencil.imageset/Unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/pencil.imageset/Unknown.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/phone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/phone.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/phone.imageset/phone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/phone.imageset/phone.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/photo.imageset/photo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/photo.imageset/photo.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/plus100.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/plus100.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/plus100.imageset/plus100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/plus100.imageset/plus100@2x.png -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/repeat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/repeat.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/repeat.imageset/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/repeat.imageset/repeat.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/rgb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/rgb.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/rgb.imageset/rgb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/rgb.imageset/rgb.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/shareCopy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/shareCopy.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/shareCopy.imageset/shareCopy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/shareCopy.imageset/shareCopy.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/star.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/star.fill.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/stop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/stop.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/stop.imageset/stop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/stop.imageset/stop.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/tabBarPlus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/tabBarPlus.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/talk-template.imageset/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/talk-template.imageset/app.svg -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/trash.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/trash.imageset/trash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/trash.imageset/trash.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/twitter.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/twitter.imageset/twitter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/twitter.imageset/twitter.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/user.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/user.imageset/user.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/user.imageset/user.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/users.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/users.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/users.imageset/users.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/users.imageset/users.pdf -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/xmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/xmark.imageset/Contents.json -------------------------------------------------------------------------------- /iOSClient/Images.xcassets/xmark.imageset/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Images.xcassets/xmark.imageset/close.svg -------------------------------------------------------------------------------- /iOSClient/Login/NCLogin.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Login/NCLogin.storyboard -------------------------------------------------------------------------------- /iOSClient/Login/NCLogin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Login/NCLogin.swift -------------------------------------------------------------------------------- /iOSClient/Login/NCLoginProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Login/NCLoginProvider.swift -------------------------------------------------------------------------------- /iOSClient/Login/NCLoginQRCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Login/NCLoginQRCode.swift -------------------------------------------------------------------------------- /iOSClient/Login/NCViewCertificateDetails.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Login/NCViewCertificateDetails.storyboard -------------------------------------------------------------------------------- /iOSClient/Login/NCViewCertificateDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Login/NCViewCertificateDetails.swift -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCCellProtocol.swift -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCGridCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCGridCell.swift -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCGridCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCGridCell.xib -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCListCell.swift -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCListCell.xib -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCPhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCPhotoCell.swift -------------------------------------------------------------------------------- /iOSClient/Main/Collection Common/Cell/NCPhotoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Collection Common/Cell/NCPhotoCell.xib -------------------------------------------------------------------------------- /iOSClient/Main/Create/NCCreate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Create/NCCreate.swift -------------------------------------------------------------------------------- /iOSClient/Main/Create/NCCreateFormUploadConflict.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Create/NCCreateFormUploadConflict.storyboard -------------------------------------------------------------------------------- /iOSClient/Main/Create/NCCreateFormUploadConflict.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Create/NCCreateFormUploadConflict.swift -------------------------------------------------------------------------------- /iOSClient/Main/Create/NCCreateFormUploadConflictCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Create/NCCreateFormUploadConflictCell.swift -------------------------------------------------------------------------------- /iOSClient/Main/Create/NCCreateFormUploadConflictCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Create/NCCreateFormUploadConflictCell.xib -------------------------------------------------------------------------------- /iOSClient/Main/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/Main.storyboard -------------------------------------------------------------------------------- /iOSClient/Main/NCDragDrop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/NCDragDrop.swift -------------------------------------------------------------------------------- /iOSClient/Main/NCMainNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/NCMainNavigationController.swift -------------------------------------------------------------------------------- /iOSClient/Main/NCMainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/NCMainTabBarController.swift -------------------------------------------------------------------------------- /iOSClient/Main/NCPasscode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/NCPasscode.swift -------------------------------------------------------------------------------- /iOSClient/Main/NCPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Main/NCPickerViewController.swift -------------------------------------------------------------------------------- /iOSClient/Media/Cell/NCMediaCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/Cell/NCMediaCell.swift -------------------------------------------------------------------------------- /iOSClient/Media/Cell/NCMediaCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/Cell/NCMediaCell.xib -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia+CollectionViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia+CollectionViewDataSource.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia+CollectionViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia+CollectionViewDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia+Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia+Command.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia+DragDrop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia+DragDrop.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia+MediaLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia+MediaLayout.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia+TransferDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia+TransferDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia.storyboard -------------------------------------------------------------------------------- /iOSClient/Media/NCMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMedia.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMediaDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMediaDataSource.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMediaDownloadThumbnail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMediaDownloadThumbnail.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMediaLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMediaLayout.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMediaNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMediaNavigationController.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMediaPinchGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMediaPinchGesture.swift -------------------------------------------------------------------------------- /iOSClient/Media/NCMediaSelectTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Media/NCMediaSelectTabBar.swift -------------------------------------------------------------------------------- /iOSClient/Menu/ContextMenuActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/ContextMenuActions.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCCollectionViewCommon+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCCollectionViewCommon+Menu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCContextMenu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCMenu+FloatingPanel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCMenu+FloatingPanel.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCMenu.storyboard -------------------------------------------------------------------------------- /iOSClient/Menu/NCMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCMenu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCMenuAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCMenuAction.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCNotification+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCNotification+Menu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCShare+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCShare+Menu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCTrash+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCTrash+Menu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/NCViewerContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/NCViewerContextMenu.swift -------------------------------------------------------------------------------- /iOSClient/Menu/UIViewController+Menu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Menu/UIViewController+Menu.swift -------------------------------------------------------------------------------- /iOSClient/More/Cells/BaseNCMoreCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/Cells/BaseNCMoreCell.swift -------------------------------------------------------------------------------- /iOSClient/More/Cells/CCCellMore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/Cells/CCCellMore.swift -------------------------------------------------------------------------------- /iOSClient/More/Cells/NCMoreAppSuggestionsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/Cells/NCMoreAppSuggestionsCell.swift -------------------------------------------------------------------------------- /iOSClient/More/Cells/NCMoreAppSuggestionsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/Cells/NCMoreAppSuggestionsCell.xib -------------------------------------------------------------------------------- /iOSClient/More/NCMore.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/NCMore.storyboard -------------------------------------------------------------------------------- /iOSClient/More/NCMore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/NCMore.swift -------------------------------------------------------------------------------- /iOSClient/More/NCMoreNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/More/NCMoreNavigationController.swift -------------------------------------------------------------------------------- /iOSClient/NCAppStateManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/NCAppStateManager.swift -------------------------------------------------------------------------------- /iOSClient/NCBackgroundLocationUploadManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/NCBackgroundLocationUploadManager.swift -------------------------------------------------------------------------------- /iOSClient/NCBridgeSwift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/NCBridgeSwift.h -------------------------------------------------------------------------------- /iOSClient/NCGlobal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/NCGlobal.swift -------------------------------------------------------------------------------- /iOSClient/NCImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/NCImageCache.swift -------------------------------------------------------------------------------- /iOSClient/NCSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/NCSession.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCEndToEndEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCEndToEndEncryption.h -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCEndToEndEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCEndToEndEncryption.m -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCEndToEndMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCEndToEndMetadata.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCEndToEndMetadataV1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCEndToEndMetadataV1.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCEndToEndMetadataV20.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCEndToEndMetadataV20.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCNetworkingE2EE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCNetworkingE2EE.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCNetworkingE2EEDelete.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCNetworkingE2EEDelete.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCNetworkingE2EEMarkFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCNetworkingE2EEMarkFolder.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCNetworkingE2EERename.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCNetworkingE2EERename.swift -------------------------------------------------------------------------------- /iOSClient/Networking/E2EE/NCNetworkingE2EEUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/E2EE/NCNetworkingE2EEUpload.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCAutoUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCAutoUpload.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCConfigServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCConfigServer.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+Download.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+Download.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+LivePhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+LivePhoto.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+Recommendations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+Recommendations.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+ServerError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+ServerError.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+Task.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+TermsOfService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+TermsOfService.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+TransferDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+TransferDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+Upload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+Upload.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking+WebDAV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking+WebDAV.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworking.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCNetworkingProcess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCNetworkingProcess.swift -------------------------------------------------------------------------------- /iOSClient/Networking/NCService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Networking/NCService.swift -------------------------------------------------------------------------------- /iOSClient/Nextcloud-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Nextcloud-Bridging-Header.h -------------------------------------------------------------------------------- /iOSClient/Notification/NCNotification.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Notification/NCNotification.storyboard -------------------------------------------------------------------------------- /iOSClient/Notification/NCNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Notification/NCNotification.swift -------------------------------------------------------------------------------- /iOSClient/Offline/NCOffline.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Offline/NCOffline.storyboard -------------------------------------------------------------------------------- /iOSClient/Offline/NCOffline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Offline/NCOffline.swift -------------------------------------------------------------------------------- /iOSClient/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /iOSClient/PushNotification/NCPushNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/PushNotification/NCPushNotification.swift -------------------------------------------------------------------------------- /iOSClient/PushNotification/NCPushNotificationEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/PushNotification/NCPushNotificationEncryption.h -------------------------------------------------------------------------------- /iOSClient/PushNotification/NCPushNotificationEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/PushNotification/NCPushNotificationEncryption.m -------------------------------------------------------------------------------- /iOSClient/Recent/NCRecent.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Recent/NCRecent.storyboard -------------------------------------------------------------------------------- /iOSClient/Recent/NCRecent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Recent/NCRecent.swift -------------------------------------------------------------------------------- /iOSClient/RichWorkspace/NCRichWorkspaceCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/RichWorkspace/NCRichWorkspaceCommon.swift -------------------------------------------------------------------------------- /iOSClient/RichWorkspace/NCViewerRichWorkspace.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/RichWorkspace/NCViewerRichWorkspace.storyboard -------------------------------------------------------------------------------- /iOSClient/RichWorkspace/NCViewerRichWorkspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/RichWorkspace/NCViewerRichWorkspace.swift -------------------------------------------------------------------------------- /iOSClient/RichWorkspace/NCViewerRichWorkspaceWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/RichWorkspace/NCViewerRichWorkspaceWebView.swift -------------------------------------------------------------------------------- /iOSClient/Scan document/NCDocumentCamera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Scan document/NCDocumentCamera.swift -------------------------------------------------------------------------------- /iOSClient/Scan document/NCScan+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Scan document/NCScan+CollectionView.swift -------------------------------------------------------------------------------- /iOSClient/Scan document/NCScan.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Scan document/NCScan.storyboard -------------------------------------------------------------------------------- /iOSClient/Scan document/NCScan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Scan document/NCScan.swift -------------------------------------------------------------------------------- /iOSClient/Scan document/NCScanCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Scan document/NCScanCell.swift -------------------------------------------------------------------------------- /iOSClient/Scan document/NCUploadScanDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Scan document/NCUploadScanDocument.swift -------------------------------------------------------------------------------- /iOSClient/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/SceneDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Select/NCSelect.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Select/NCSelect.storyboard -------------------------------------------------------------------------------- /iOSClient/Select/NCSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Select/NCSelect.swift -------------------------------------------------------------------------------- /iOSClient/Select/NCSelectCommandViewCopyMove.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Select/NCSelectCommandViewCopyMove.xib -------------------------------------------------------------------------------- /iOSClient/Select/NCSelectCommandViewSelect+CreateFolder.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Select/NCSelectCommandViewSelect+CreateFolder.xib -------------------------------------------------------------------------------- /iOSClient/Select/NCSelectCommandViewSelect.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Select/NCSelectCommandViewSelect.xib -------------------------------------------------------------------------------- /iOSClient/Select/NCSelectOpen+SelectDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Select/NCSelectOpen+SelectDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Acknowledgements.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Acknowledgements.rtf -------------------------------------------------------------------------------- /iOSClient/Settings/Advanced/File Name/NCFileNameModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Advanced/File Name/NCFileNameModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Advanced/File Name/NCFileNameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Advanced/File Name/NCFileNameView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Advanced/NCSettingsAdvancedModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Advanced/NCSettingsAdvancedModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Advanced/NCSettingsAdvancedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Advanced/NCSettingsAdvancedView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/AutoUpload/Albums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/AutoUpload/Albums.swift -------------------------------------------------------------------------------- /iOSClient/Settings/AutoUpload/NCAutoUploadModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/AutoUpload/NCAutoUploadModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/AutoUpload/NCAutoUploadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/AutoUpload/NCAutoUploadView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Display/NCDisplayModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Display/NCDisplayModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Display/NCDisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Display/NCDisplayView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/E2EE/NCEndToEndInitialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/E2EE/NCEndToEndInitialize.swift -------------------------------------------------------------------------------- /iOSClient/Settings/E2EE/NCManageE2EEModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/E2EE/NCManageE2EEModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/E2EE/NCManageE2EEView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/E2EE/NCManageE2EEView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Helpers/NCAcknowledgementsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Helpers/NCAcknowledgementsView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Helpers/NCWebBrowserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Helpers/NCWebBrowserView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/NCPreferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/NCPreferences.swift -------------------------------------------------------------------------------- /iOSClient/Settings/NCSettingsBundleHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/NCSettingsBundleHelper.swift -------------------------------------------------------------------------------- /iOSClient/Settings/SelectAlbum/AlbumModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/SelectAlbum/AlbumModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/SelectAlbum/SelectAlbumView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/SelectAlbum/SelectAlbumView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Settings/NCSettingsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Settings/NCSettingsModel.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Settings/NCSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Settings/NCSettingsView.swift -------------------------------------------------------------------------------- /iOSClient/Settings/Settings/SetupPasscodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Settings/Settings/SetupPasscodeView.swift -------------------------------------------------------------------------------- /iOSClient/Share/Advanced/NCShareAdvancePermission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Advanced/NCShareAdvancePermission.swift -------------------------------------------------------------------------------- /iOSClient/Share/Advanced/NCShareAdvancePermissionFooter.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Advanced/NCShareAdvancePermissionFooter.xib -------------------------------------------------------------------------------- /iOSClient/Share/Advanced/NCShareCells.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Advanced/NCShareCells.swift -------------------------------------------------------------------------------- /iOSClient/Share/Advanced/NCShareDateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Advanced/NCShareDateCell.swift -------------------------------------------------------------------------------- /iOSClient/Share/Advanced/NCShareNewUserAddComment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Advanced/NCShareNewUserAddComment.swift -------------------------------------------------------------------------------- /iOSClient/Share/Advanced/NCShareToggleCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Advanced/NCShareToggleCell.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCMetadataPermissions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCMetadataPermissions.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCSearchUserDropDownCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCSearchUserDropDownCell.xib -------------------------------------------------------------------------------- /iOSClient/Share/NCShare+NCCellDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShare+NCCellDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShare.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShare.storyboard -------------------------------------------------------------------------------- /iOSClient/Share/NCShare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShare.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareCommentsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareCommentsCell.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareCommentsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareCommentsCell.xib -------------------------------------------------------------------------------- /iOSClient/Share/NCShareCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareCommon.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareHeader.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareHeader.xib -------------------------------------------------------------------------------- /iOSClient/Share/NCShareHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareHeaderView.xib -------------------------------------------------------------------------------- /iOSClient/Share/NCShareLinkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareLinkCell.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareLinkCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareLinkCell.xib -------------------------------------------------------------------------------- /iOSClient/Share/NCShareNavigationTitleSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareNavigationTitleSetting.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareNetworking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareNetworking.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareNetworkingDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareNetworkingDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCSharePaging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCSharePaging.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCSharePermissions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCSharePermissions.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareUserCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareUserCell.swift -------------------------------------------------------------------------------- /iOSClient/Share/NCShareUserCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/NCShareUserCell.xib -------------------------------------------------------------------------------- /iOSClient/Share/Shareable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/Shareable.swift -------------------------------------------------------------------------------- /iOSClient/Share/TransientShare.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Share/TransientShare.swift -------------------------------------------------------------------------------- /iOSClient/Shares/NCShares.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Shares/NCShares.storyboard -------------------------------------------------------------------------------- /iOSClient/Shares/NCShares.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Shares/NCShares.swift -------------------------------------------------------------------------------- /iOSClient/StatusMessage/EmojiTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/StatusMessage/EmojiTextField.swift -------------------------------------------------------------------------------- /iOSClient/StatusMessage/NCStatusMessageModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/StatusMessage/NCStatusMessageModel.swift -------------------------------------------------------------------------------- /iOSClient/StatusMessage/NCStatusMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/StatusMessage/NCStatusMessageView.swift -------------------------------------------------------------------------------- /iOSClient/Supporting Files/af.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/af.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/af.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/af.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/af.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/af.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/an.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/an.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/an.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/an.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/an.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/an.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ar.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ar.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ar.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ast.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ast.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ast.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ast.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/az.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/az.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/az.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/az.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/az.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/az.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/be.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/be.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/be.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/be.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/be.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/be.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bg_BG.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bg_BG.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bg_BG.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bg_BG.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bn_BD.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bn_BD.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bn_BD.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bn_BD.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/br.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/br.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/br.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/br.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/br.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/br.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bs.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/bs.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/bs.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ca.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ca.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ca.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/cs-CZ.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/cs-CZ.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/cs-CZ.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/cs-CZ.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/cy_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/cy_GB.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/cy_GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/cy_GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/da.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/da.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/da.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/de.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/de.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/el.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/el.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/el.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/en-GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/en-GB.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/eo.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/eo.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/eo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/eo.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/eo.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/eo.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-419.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-419.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-419.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-419.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-AR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-AR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-AR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-AR.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-CL.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-CL.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-CL.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-CL.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-CO.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-CO.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-CO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-CO.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-CR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-CR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-CR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-CR.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-DO.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-DO.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-DO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-DO.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-EC.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-EC.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-EC.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-EC.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-GT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-GT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-GT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-GT.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-HN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-HN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-HN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-HN.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-MX.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-MX.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-NI.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-NI.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-NI.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-NI.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PA.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PA.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PA.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PA.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PE.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PE.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PE.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PE.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PR.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PY.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PY.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-PY.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-PY.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-SV.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-SV.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-SV.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-SV.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-UY.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-UY.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es-UY.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es-UY.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/es.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/es.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/et.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/et.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/et.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/et.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/et.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/et.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/eu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/eu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/eu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/eu.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/eu.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/eu.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fa.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fa.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fa.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fa.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fi-FI.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fi-FI.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fi-FI.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fi-FI.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fo.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fo.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fo.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ga.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ga.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ga.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ga.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/gd.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/gd.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/gd.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/gd.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/gl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/gl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/he.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hi_IN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hi_IN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hsb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hsb.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hsb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hsb.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hy.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hy.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/hy.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/hy.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ia.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ia.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ia.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ia.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/id.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ig.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ig.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ig.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ig.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/is.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/is.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/is.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/is.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ja-JP.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ja-JP.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ka-GE.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ka-GE.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ka.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ka.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ka.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ka.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/kab.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/kab.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/kab.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/kab.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/km.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/km.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/km.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/km.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/kn.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/kn.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/kn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/kn.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/la.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/la.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/la.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/la.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lb.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lb.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lo.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lo.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lo.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lt_LT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lt_LT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/mk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/mk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/mk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/mk.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/mn.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/mn.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/mn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/mn.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/mr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/mr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/mr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/mr.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ms_MY.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ms_MY.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/my.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/my.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/my.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/my.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/nb-NO.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/nb-NO.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ne.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ne.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ne.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ne.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/nn_NO.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/nn_NO.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/oc.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/oc.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/oc.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/oc.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ps.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ps.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ps.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ps.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/pt-BR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/pt-PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/pt-PT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ro.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sc.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sc.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sc.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sc.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/si.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/si.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/si.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/si.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sk-SK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sk-SK.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sq.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sq.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sq.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sq.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sw.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sw.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/sw.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/sw.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ta.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ta.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ta.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ta.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/th_TH.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/th_TH.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/tk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/tk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/tk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/tk.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ug.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ug.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ug.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ug.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/uk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/ur_PK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/ur_PK.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/uz.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/uz.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/uz.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/uz.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/vi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/zh_HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/zh_HK.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Supporting Files/zu_ZA.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Supporting Files/zu_ZA.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /iOSClient/Terms of service/NCTermOfServiceModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Terms of service/NCTermOfServiceModel.swift -------------------------------------------------------------------------------- /iOSClient/Terms of service/NCTermOfServiceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Terms of service/NCTermOfServiceView.swift -------------------------------------------------------------------------------- /iOSClient/Transfers/NCTransfersModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Transfers/NCTransfersModel.swift -------------------------------------------------------------------------------- /iOSClient/Transfers/NCTransfersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Transfers/NCTransfersView.swift -------------------------------------------------------------------------------- /iOSClient/Trash/Cell/NCTrashCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/Cell/NCTrashCellProtocol.swift -------------------------------------------------------------------------------- /iOSClient/Trash/Cell/NCTrashGridCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/Cell/NCTrashGridCell.swift -------------------------------------------------------------------------------- /iOSClient/Trash/Cell/NCTrashGridCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/Cell/NCTrashGridCell.xib -------------------------------------------------------------------------------- /iOSClient/Trash/Cell/NCTrashListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/Cell/NCTrashListCell.swift -------------------------------------------------------------------------------- /iOSClient/Trash/Cell/NCTrashListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/Cell/NCTrashListCell.xib -------------------------------------------------------------------------------- /iOSClient/Trash/NCTrash+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/NCTrash+CollectionView.swift -------------------------------------------------------------------------------- /iOSClient/Trash/NCTrash+Networking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/NCTrash+Networking.swift -------------------------------------------------------------------------------- /iOSClient/Trash/NCTrash+SelectTabBarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/NCTrash+SelectTabBarDelegate.swift -------------------------------------------------------------------------------- /iOSClient/Trash/NCTrash.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/NCTrash.storyboard -------------------------------------------------------------------------------- /iOSClient/Trash/NCTrash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/NCTrash.swift -------------------------------------------------------------------------------- /iOSClient/Trash/NCTrashSelectTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Trash/NCTrashSelectTabBar.swift -------------------------------------------------------------------------------- /iOSClient/UserStatus/NCUserStatusModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/UserStatus/NCUserStatusModel.swift -------------------------------------------------------------------------------- /iOSClient/UserStatus/NCUserStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/UserStatus/NCUserStatusView.swift -------------------------------------------------------------------------------- /iOSClient/Utility/FileAutoRenamer+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/FileAutoRenamer+Extensions.swift -------------------------------------------------------------------------------- /iOSClient/Utility/FileNameValidator+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/FileNameValidator+Extensions.swift -------------------------------------------------------------------------------- /iOSClient/Utility/Maintenance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/Maintenance.swift -------------------------------------------------------------------------------- /iOSClient/Utility/MigrationMultiDomains.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/MigrationMultiDomains.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCActivityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCActivityIndicator.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCAppVersionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCAppVersionManager.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCAskAuthorization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCAskAuthorization.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCCameraRoll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCCameraRoll.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCContentPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCContentPresenter.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCDebouncer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCDebouncer.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCLivePhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCLivePhoto.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCOperationSaveLivePhoto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCOperationSaveLivePhoto.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCPopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCPopupViewController.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCStoreReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCStoreReview.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCUtility+Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCUtility+Date.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCUtility+Exif.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCUtility+Exif.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCUtility+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCUtility+Image.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCUtility.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NCUtilityFileSystem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NCUtilityFileSystem.swift -------------------------------------------------------------------------------- /iOSClient/Utility/NYMnemonic/NYMnemonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NYMnemonic/NYMnemonic.h -------------------------------------------------------------------------------- /iOSClient/Utility/NYMnemonic/NYMnemonic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NYMnemonic/NYMnemonic.m -------------------------------------------------------------------------------- /iOSClient/Utility/NYMnemonic/languages/english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/NYMnemonic/languages/english.txt -------------------------------------------------------------------------------- /iOSClient/Utility/PKCS12.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/PKCS12.swift -------------------------------------------------------------------------------- /iOSClient/Utility/ScreenAwakeManager/AwakeMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/ScreenAwakeManager/AwakeMode.swift -------------------------------------------------------------------------------- /iOSClient/Utility/ThreadSafeArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/ThreadSafeArray.swift -------------------------------------------------------------------------------- /iOSClient/Utility/ThreadSafeDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Utility/ThreadSafeDictionary.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewer.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerMedia/NCPlayer/NCPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerMedia/NCPlayer/NCPlayer.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerMedia/NCViewerMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerMedia/NCViewerMedia.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerMedia/NCViewerMediaPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerMedia/NCViewerMediaPage.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerPDF/NCViewerPDF.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerPDF/NCViewerPDF.storyboard -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerPDF/NCViewerPDF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerPDF/NCViewerPDF.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerPDF/NCViewerPDFSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerPDF/NCViewerPDFSearch.swift -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerPDF/NCViewerPDFSearchCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerPDF/NCViewerPDFSearchCell.xib -------------------------------------------------------------------------------- /iOSClient/Viewer/NCViewerProviderContextMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/iOSClient/Viewer/NCViewerProviderContextMenu.swift -------------------------------------------------------------------------------- /widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/ios/HEAD/widget.png --------------------------------------------------------------------------------