├── .drone.yml ├── .github ├── issue_template.md └── release_template.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .tx └── config ├── CONTRIBUTING.md ├── Changelog.md ├── LICENSE.txt ├── OC Share Sheet ├── Cells │ ├── FileSelectedCell.swift │ └── FileSelectedCell.xib ├── Info.plist ├── MainInterface.storyboard ├── Managers.swift ├── OC Share Sheet.entitlements ├── ShareViewController.swift └── UIImage+Resize.swift ├── OCC2015_iOS_workshop.pdf ├── Owncloud iOs Client.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Owncloud iOs Client.xcscheme │ ├── ownCloudExtApp.xcscheme │ └── ownCloudExtAppFileProvider.xcscheme ├── Owncloud iOs Client ├── AppDelegate.h ├── AppDelegate.m ├── Branding │ ├── Customization.h │ ├── Customization.m │ ├── UIColor+Constants.h │ └── UIColor+Constants.m ├── Cells │ ├── CustomCell │ │ ├── CustomCellFileAndDirectory.h │ │ ├── CustomCellFileAndDirectory.m │ │ └── CustomCellFileAndDirectory.xib │ ├── EmptyCell │ │ ├── EmptyCell.h │ │ ├── EmptyCell.m │ │ └── EmptyCell.xib │ ├── SelectedFolderCell │ │ ├── SelectedFolderCell.h │ │ ├── SelectedFolderCell.m │ │ └── SelectedFolderCell.xib │ ├── SharedCell │ │ ├── ShareLinkCell.h │ │ ├── ShareLinkCell.m │ │ └── ShareLinkCell.xib │ └── UploadCell │ │ ├── FailedUploadCell.h │ │ ├── FailedUploadCell.m │ │ ├── FailedUploadCell.xib │ │ ├── UploadCell.h │ │ ├── UploadCell.m │ │ ├── UploadCell.xib │ │ ├── UploadRecentCell.h │ │ ├── UploadRecentCell.m │ │ └── UploadRecentCell.xib ├── DB.sqlite ├── DataBase │ ├── DTOs │ │ ├── CookiesStorageDto.h │ │ ├── CookiesStorageDto.m │ │ ├── FileDto.h │ │ ├── FileDto.m │ │ ├── FolderSyncDto.h │ │ ├── FolderSyncDto.m │ │ ├── ProvidingFileDto.h │ │ ├── ProvidingFileDto.m │ │ ├── UploadsOfflineDto.h │ │ ├── UploadsOfflineDto.m │ │ ├── UserDto.h │ │ └── UserDto.m │ └── Queries │ │ ├── InitializeDatabase.h │ │ ├── InitializeDatabase.m │ │ ├── ManageAppSettingsDB.h │ │ ├── ManageAppSettingsDB.m │ │ ├── ManageCapabilitiesDB.h │ │ ├── ManageCapabilitiesDB.m │ │ ├── ManageCookiesStorageDB.h │ │ ├── ManageCookiesStorageDB.m │ │ ├── ManageDB.h │ │ ├── ManageDB.m │ │ ├── ManageFilesDB.h │ │ ├── ManageFilesDB.m │ │ ├── ManageProvidingFilesDB.h │ │ ├── ManageProvidingFilesDB.m │ │ ├── ManageSharesDB.h │ │ ├── ManageSharesDB.m │ │ ├── ManageUploadsDB.h │ │ ├── ManageUploadsDB.m │ │ ├── ManageUsersDB.h │ │ └── ManageUsersDB.m ├── ExecuteManager.m ├── ExternalLibreries │ ├── CWLOrderedDictionary │ │ ├── CWLOrderedDictionary.h │ │ └── CWLOrderedDictionary.m │ ├── CustomStatusBar │ │ ├── CWStatusBarNotification.h │ │ ├── CWStatusBarNotification.m │ │ ├── LICENSE │ │ ├── NotificationStatusBarViewController.h │ │ └── NotificationStatusBarViewController.m │ ├── ELCPickerLib │ │ ├── ELCAlbumPickerController.h │ │ ├── ELCAlbumPickerController.m │ │ ├── ELCAsset.h │ │ ├── ELCAsset.m │ │ ├── ELCAssetCell.h │ │ ├── ELCAssetCell.m │ │ ├── ELCAssetPickerFilterDelegate.h │ │ ├── ELCAssetSelectionDelegate.h │ │ ├── ELCAssetTablePicker.h │ │ ├── ELCAssetTablePicker.m │ │ ├── ELCConsole.h │ │ ├── ELCConsole.m │ │ ├── ELCConstants.h │ │ ├── ELCImagePickerController.h │ │ ├── ELCImagePickerController.m │ │ ├── ELCImagePickerHeader.h │ │ ├── ELCOverlayImageView.h │ │ ├── ELCOverlayImageView.m │ │ └── Resources │ │ │ ├── ELCAlbumPickerController.xib │ │ │ ├── ELCAssetPicker.xib │ │ │ ├── ELCAssetTablePicker.xib │ │ │ ├── Overlay.png │ │ │ └── Overlay@2x.png │ ├── FFCircularProgressView │ │ ├── FFCircularProgressView.h │ │ ├── FFCircularProgressView.m │ │ ├── UIColor+iOS7.h │ │ └── UIColor+iOS7.m │ ├── FLAnimatedimage │ │ ├── FLAnimatedImage.h │ │ ├── FLAnimatedImage.m │ │ ├── FLAnimatedImageView.h │ │ ├── FLAnimatedImageView.m │ │ └── LICENSE │ ├── JazzHands │ │ ├── IFTTTAlphaAnimation.h │ │ ├── IFTTTAlphaAnimation.m │ │ ├── IFTTTAnimatable.h │ │ ├── IFTTTAnimatedPagingScrollViewController.h │ │ ├── IFTTTAnimatedPagingScrollViewController.m │ │ ├── IFTTTAnimatedScrollViewController.h │ │ ├── IFTTTAnimatedScrollViewController.m │ │ ├── IFTTTAnimation.h │ │ ├── IFTTTAnimation.m │ │ ├── IFTTTAnimator.h │ │ ├── IFTTTAnimator.m │ │ ├── IFTTTColorAnimation.h │ │ ├── IFTTTColorAnimation.m │ │ ├── IFTTTConstraintConstantAnimation.h │ │ ├── IFTTTConstraintConstantAnimation.m │ │ ├── IFTTTConstraintMultiplierAnimation.h │ │ ├── IFTTTConstraintMultiplierAnimation.m │ │ ├── IFTTTCornerRadiusAnimation.h │ │ ├── IFTTTCornerRadiusAnimation.m │ │ ├── IFTTTEasingFunction.h │ │ ├── IFTTTEasingFunction.m │ │ ├── IFTTTFillColorAnimation.h │ │ ├── IFTTTFillColorAnimation.m │ │ ├── IFTTTFilmstrip.h │ │ ├── IFTTTFilmstrip.m │ │ ├── IFTTTFrameAnimation.h │ │ ├── IFTTTFrameAnimation.m │ │ ├── IFTTTHideAnimation.h │ │ ├── IFTTTHideAnimation.m │ │ ├── IFTTTInterpolatable.h │ │ ├── IFTTTInterpolatable.m │ │ ├── IFTTTJazzHands.h │ │ ├── IFTTTLabelAnimation.h │ │ ├── IFTTTLabelAnimation.m │ │ ├── IFTTTRotationAnimation.h │ │ ├── IFTTTRotationAnimation.m │ │ ├── IFTTTScaleAnimation.h │ │ ├── IFTTTScaleAnimation.m │ │ ├── IFTTTScrollViewPageConstraintAnimation.h │ │ ├── IFTTTScrollViewPageConstraintAnimation.m │ │ ├── IFTTTShapeLayerAnimation.h │ │ ├── IFTTTShapeLayerAnimation.m │ │ ├── IFTTTStrokeEndAnimation.h │ │ ├── IFTTTStrokeEndAnimation.m │ │ ├── IFTTTStrokeStartAnimation.h │ │ ├── IFTTTStrokeStartAnimation.m │ │ ├── IFTTTTextColorAnimation.h │ │ ├── IFTTTTextColorAnimation.m │ │ ├── IFTTTTransform3DAnimation.h │ │ ├── IFTTTTransform3DAnimation.m │ │ ├── IFTTTTranslationAnimation.h │ │ ├── IFTTTTranslationAnimation.m │ │ ├── IFTTTViewAnimation.h │ │ ├── IFTTTViewAnimation.m │ │ ├── LICENSE │ │ ├── UIView+IFTTTJazzHands.h │ │ └── UIView+IFTTTJazzHands.m │ ├── KKPasscodeLock │ │ ├── KKKeychain.h │ │ ├── KKKeychain.m │ │ ├── KKPasscodeLock.bundle │ │ │ ├── box_empty.png │ │ │ ├── box_empty@2x.png │ │ │ ├── box_filled.png │ │ │ ├── box_filled@2x.png │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── he.lproj │ │ │ │ └── Localizable.strings │ │ │ └── nl.lproj │ │ │ │ └── Localizable.strings │ │ ├── KKPasscodeLock.h │ │ ├── KKPasscodeLock.m │ │ ├── KKPasscodeSettingsViewController.h │ │ ├── KKPasscodeSettingsViewController.m │ │ ├── KKPasscodeViewController.h │ │ ├── KKPasscodeViewController.m │ │ └── LICENSE │ ├── LoadingScreen │ │ ├── LICENSE │ │ ├── MBProgressHUD.h │ │ └── MBProgressHUD.m │ ├── MGSplitViewController │ │ └── LICENSE.rtf │ ├── OAuth │ │ └── LICENSE.txt │ ├── Reachability │ │ ├── Reachability.h │ │ └── Reachability.m │ ├── SWTableViewCell │ │ ├── LICENCE │ │ ├── NSMutableArray+SWUtilityButtons.h │ │ ├── NSMutableArray+SWUtilityButtons.m │ │ ├── SWCellScrollView.h │ │ ├── SWCellScrollView.m │ │ ├── SWConstants.h │ │ ├── SWLongPressGestureRecognizer.h │ │ ├── SWLongPressGestureRecognizer.m │ │ ├── SWTableViewCell.h │ │ ├── SWTableViewCell.m │ │ ├── SWUtilityButtonTapGestureRecognizer.h │ │ ├── SWUtilityButtonTapGestureRecognizer.m │ │ ├── SWUtilityButtonView.h │ │ └── SWUtilityButtonView.m │ ├── TSMessages │ │ ├── Assets │ │ │ ├── NotificationBackgroundError.png │ │ │ ├── NotificationBackgroundError@2x.png │ │ │ ├── NotificationBackgroundErrorIcon.png │ │ │ ├── NotificationBackgroundErrorIcon@2x.png │ │ │ ├── NotificationBackgroundMessage.png │ │ │ ├── NotificationBackgroundMessage@2x.png │ │ │ ├── NotificationBackgroundSuccess.png │ │ │ ├── NotificationBackgroundSuccess@2x.png │ │ │ ├── NotificationBackgroundSuccessIcon.png │ │ │ ├── NotificationBackgroundSuccessIcon@2x.png │ │ │ ├── NotificationBackgroundWarning.png │ │ │ ├── NotificationBackgroundWarning@2x.png │ │ │ ├── NotificationBackgroundWarningIcon.png │ │ │ ├── NotificationBackgroundWarningIcon@2x.png │ │ │ ├── NotificationButtonBackground.png │ │ │ ├── NotificationButtonBackground@2x.png │ │ │ └── TSMessagesDefaultDesign.json │ │ ├── Classes │ │ │ ├── HexColors.h │ │ │ ├── HexColors.m │ │ │ ├── TSBlurView.h │ │ │ ├── TSBlurView.m │ │ │ ├── TSMessage.h │ │ │ ├── TSMessage.m │ │ │ ├── TSMessageView.h │ │ │ └── TSMessageView.m │ │ └── LICENSE.txt │ ├── TTOpenInAppActivity │ │ ├── LICENSE │ │ ├── TTOpenInAppActivity.h │ │ ├── TTOpenInAppActivity.m │ │ ├── TTOpenInAppActivity.png │ │ ├── TTOpenInAppActivity7.png │ │ ├── TTOpenInAppActivity7@2x.png │ │ ├── TTOpenInAppActivity8.png │ │ ├── TTOpenInAppActivity8@2x.png │ │ ├── TTOpenInAppActivity8@3x.png │ │ └── TTOpenInAppActivity@2x.png │ ├── UIAlertViewWithBlocks │ │ ├── LICENSE │ │ ├── UIAlertView+Blocks.h │ │ └── UIAlertView+Blocks.m │ └── VFR Pdf Reader │ │ ├── LICENSE.md │ │ └── Sources │ │ ├── CGPDFDocument.h │ │ ├── CGPDFDocument.m │ │ ├── ReaderConstants.h │ │ ├── ReaderConstants.m │ │ ├── ReaderContentPage.h │ │ ├── ReaderContentPage.m │ │ ├── ReaderContentTile.h │ │ ├── ReaderContentTile.m │ │ ├── ReaderContentView.h │ │ ├── ReaderContentView.m │ │ ├── ReaderDocument.h │ │ ├── ReaderDocument.m │ │ ├── ReaderDocumentOutline.h │ │ ├── ReaderDocumentOutline.m │ │ ├── ReaderMainPagebar.h │ │ ├── ReaderMainPagebar.m │ │ ├── ReaderMainToolbar.h │ │ ├── ReaderMainToolbar.m │ │ ├── ReaderThumbCache.h │ │ ├── ReaderThumbCache.m │ │ ├── ReaderThumbFetch.h │ │ ├── ReaderThumbFetch.m │ │ ├── ReaderThumbQueue.h │ │ ├── ReaderThumbQueue.m │ │ ├── ReaderThumbRender.h │ │ ├── ReaderThumbRender.m │ │ ├── ReaderThumbRequest.h │ │ ├── ReaderThumbRequest.m │ │ ├── ReaderThumbView.h │ │ ├── ReaderThumbView.m │ │ ├── ReaderThumbsView.h │ │ ├── ReaderThumbsView.m │ │ ├── ReaderViewController.h │ │ ├── ReaderViewController.m │ │ ├── ThumbsMainToolbar.h │ │ ├── ThumbsMainToolbar.m │ │ ├── ThumbsViewController.h │ │ ├── ThumbsViewController.m │ │ ├── UIXToolbarView.h │ │ └── UIXToolbarView.m ├── FileSystem │ ├── ManageThumbnails.h │ └── ManageThumbnails.m ├── Files │ ├── Edit │ │ ├── EditFileViewController.h │ │ ├── EditFileViewController.m │ │ └── EditFileViewController.xib │ ├── Preview │ │ ├── DetailView │ │ │ ├── DetailView.xib │ │ │ ├── DetailViewController.h │ │ │ └── DetailViewController.m │ │ └── FilePreview │ │ │ ├── FilePreviewViewController.h │ │ │ ├── FilePreviewViewController.m │ │ │ └── FilePreviewViewController.xib │ ├── PreviewSupportedFiles │ │ ├── Gallery │ │ │ ├── GalleryView.h │ │ │ └── GalleryView.m │ │ ├── Media │ │ │ ├── MediaAVPlayerViewController.h │ │ │ ├── MediaAVPlayerViewController.m │ │ │ ├── MediaViewController.h │ │ │ └── MediaViewController.m │ │ └── Office │ │ │ ├── OfficeFileView.h │ │ │ └── OfficeFileView.m │ └── UploadFromOtherApp │ │ ├── UploadFromOtherAppViewController.h │ │ ├── UploadFromOtherAppViewController.m │ │ └── UploadFromOtherAppViewController.xib ├── HelpGuide │ ├── HelpGuideViewController.h │ ├── HelpGuideViewController.m │ ├── MyCustomAnimation.h │ ├── MyCustomAnimation.m │ ├── UpdateGuideViewController.h │ └── UpdateGuideViewController.m ├── InstantUpload │ ├── InstantUpload.h │ └── InstantUpload.m ├── Launch Screen.storyboard ├── Log.swift ├── Login │ ├── Keychain │ │ ├── OCKeychain.h │ │ └── OCKeychain.m │ ├── Login │ │ ├── GetPublicInfoFromServerJob.swift │ │ ├── ServerURLNormalizer.swift │ │ ├── UniversalLoginViewController.swift │ │ ├── UtilsLogin.h │ │ ├── UtilsLogin.m │ │ └── WebLoginViewController.swift │ └── SSO │ │ ├── CheckSSOServer.h │ │ ├── CheckSSOServer.m │ │ ├── SSOViewController.h │ │ ├── SSOViewController.m │ │ └── SSOViewController.xib ├── Main.storyboard ├── ManageAccounts.swift ├── ManageTouchID.h ├── ManageTouchID.m ├── Network │ ├── Authentication │ │ └── DetectAuthenticationMethod.swift │ ├── Downloads │ │ ├── Download.h │ │ ├── Download.m │ │ ├── DownloadFolder │ │ │ ├── DownloadFileSyncFolder.h │ │ │ ├── DownloadFileSyncFolder.m │ │ │ ├── IndexedForest.h │ │ │ ├── IndexedForest.m │ │ │ ├── SyncFolderManager.h │ │ │ └── SyncFolderManager.m │ │ ├── ManageDownloads.h │ │ └── ManageDownloads.m │ ├── Favorites │ │ ├── ManageFavorites.h │ │ └── ManageFavorites.m │ ├── ReadFolder │ │ └── DetectListOfFiles.swift │ ├── Server Version Checks │ │ ├── CheckCapabilities.h │ │ ├── CheckCapabilities.m │ │ ├── CheckFeaturesSupported.h │ │ └── CheckFeaturesSupported.m │ ├── URLSession Subclasses │ │ ├── OCURLSessionManager.h │ │ └── OCURLSessionManager.m │ ├── Uploads │ │ ├── ManageUploadRequest.h │ │ ├── ManageUploadRequest.m │ │ ├── PrepareFilesToUpload.h │ │ └── PrepareFilesToUpload.m │ └── UserData │ │ ├── DetectUserData.h │ │ └── DetectUserData.m ├── OCExtensions-Bridging-Header.h ├── OCSplitViewController.h ├── OCSplitViewController.m ├── OpenInApp │ ├── OpenInAppHandler.h │ ├── OpenInAppHandler.m │ ├── OpenInAppHandlerNoInternet.h │ ├── OpenInAppHandlerNoInternet.m │ ├── UniversalLinksContext.h │ └── UniversalLinksContext.m ├── Owncloud iOs Client-Bridging-Header.h ├── Owncloud iOs Client-Info.plist ├── Owncloud iOs Client-Prefix.pch ├── Owncloud iOs Client.entitlements ├── SplashScreen.storyboard ├── SupportingFiles │ ├── Accessibility │ │ └── Accessibility.h │ ├── FMDB │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ ├── FMResultSet.m │ │ └── LICENSE.txt │ ├── Images │ │ ├── HelpGuide │ │ │ ├── HelpPageButtons │ │ │ │ ├── btnAllHelpGrey.png │ │ │ │ ├── btnAllHelpGrey@2x.png │ │ │ │ ├── btnHelpPage0.png │ │ │ │ ├── btnHelpPage0@2x.png │ │ │ │ ├── btnHelpPage1.png │ │ │ │ ├── btnHelpPage1@2x.png │ │ │ │ ├── btnHelpPage2.png │ │ │ │ ├── btnHelpPage2@2x.png │ │ │ │ ├── btnHelpPage3.png │ │ │ │ ├── btnHelpPage3@2x.png │ │ │ │ ├── btnHelpPage4.png │ │ │ │ ├── btnHelpPage4@2x.png │ │ │ │ ├── btnHelpPage5.png │ │ │ │ └── btnHelpPage5@2x.png │ │ │ ├── Images.xcassets │ │ │ │ ├── Contents.json │ │ │ │ ├── companyLogoHelp.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── company.png │ │ │ │ │ ├── company_empty_screen_ipad.png │ │ │ │ │ └── company_empty_screen_ipad@2x.png │ │ │ │ └── dismiss.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── baseline_cancel_black_24pt_1x.png │ │ │ │ │ ├── baseline_cancel_black_24pt_2x-1.png │ │ │ │ │ └── baseline_cancel_black_24pt_3x-1.png │ │ │ ├── iphoneAccounts.png │ │ │ ├── iphoneAccounts@2x.png │ │ │ ├── iphoneFiles.png │ │ │ ├── iphoneFiles@2x.png │ │ │ ├── iphoneInstantUpload.png │ │ │ ├── iphoneInstantUpload@2x.png │ │ │ ├── iphoneShare.png │ │ │ ├── iphoneShare@2x.png │ │ │ ├── owncloudLogoFiles.png │ │ │ └── owncloudLogoFiles@2x.png │ │ ├── ImageBranding │ │ │ ├── Bar │ │ │ │ ├── TapBar │ │ │ │ │ ├── tabBar.png │ │ │ │ │ └── tabBar@2x.png │ │ │ │ └── TopBar │ │ │ │ │ ├── topBar.png │ │ │ │ │ └── topBar@2x.png │ │ │ ├── Branding │ │ │ │ ├── CompanyLogo.png │ │ │ │ ├── CompanyLogo@2x.png │ │ │ │ ├── CompanyLogo@3x.png │ │ │ │ ├── MainAppIcon.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── 1024.png │ │ │ │ │ │ ├── 120-1.png │ │ │ │ │ │ ├── 120.png │ │ │ │ │ │ ├── 152.png │ │ │ │ │ │ ├── 167.png │ │ │ │ │ │ ├── 180.png │ │ │ │ │ │ ├── 20.png │ │ │ │ │ │ ├── 29.png │ │ │ │ │ │ ├── 40-1.png │ │ │ │ │ │ ├── 40-2.png │ │ │ │ │ │ ├── 40.png │ │ │ │ │ │ ├── 58-1.png │ │ │ │ │ │ ├── 58.png │ │ │ │ │ │ ├── 60.png │ │ │ │ │ │ ├── 76.png │ │ │ │ │ │ ├── 80-1.png │ │ │ │ │ │ ├── 80.png │ │ │ │ │ │ ├── 87.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── company_empty_screen_ipad.png │ │ │ │ └── company_empty_screen_ipad@2x.png │ │ │ ├── FilesViewScreen │ │ │ │ ├── BackRootFolderIcon.png │ │ │ │ ├── BackRootFolderIcon@2x.png │ │ │ │ ├── BackRootFolderIcon@3x.png │ │ │ │ ├── FileDownloadedIcon.png │ │ │ │ ├── FileDownloadedIcon@2x.png │ │ │ │ ├── FileDownloadingIcon.png │ │ │ │ ├── FileDownloadingIcon@2x.png │ │ │ │ ├── FileFavoriteIcon.png │ │ │ │ ├── FileFavoriteIcon@2x.png │ │ │ │ ├── FileFavoriteUpdatingIcon.png │ │ │ │ ├── FileFavoriteUpdatingIcon@2x.png │ │ │ │ ├── FileOverwritingIcon.png │ │ │ │ ├── FileOverwritingIcon@2x.png │ │ │ │ ├── FileUpdatedIcon.png │ │ │ │ ├── FileUpdatedIcon@2x.png │ │ │ │ ├── RootFolderIcon.png │ │ │ │ ├── RootFolderIcon@2x.png │ │ │ │ ├── RootFolderIcon@3x.png │ │ │ │ ├── TABShares.png │ │ │ │ ├── TABShares@2x.png │ │ │ │ ├── TABShares@3x.png │ │ │ │ ├── TABfiles.png │ │ │ │ ├── TABfiles@2x.png │ │ │ │ ├── TABfiles@3x.png │ │ │ │ ├── TABrecents.png │ │ │ │ ├── TABrecents@2x.png │ │ │ │ ├── TABrecents@3x.png │ │ │ │ ├── TABsettings.png │ │ │ │ ├── TABsettings@2x.png │ │ │ │ ├── TABsettings@3x.png │ │ │ │ ├── doc_icon.png │ │ │ │ ├── doc_icon@2x.png │ │ │ │ ├── doc_icon@2x~ipad.png │ │ │ │ ├── doc_icon@3x.png │ │ │ │ ├── doc_icon~ipad.png │ │ │ │ ├── file_available_offline_icon.png │ │ │ │ ├── file_available_offline_icon@2x.png │ │ │ │ ├── file_icon.png │ │ │ │ ├── file_icon@2x.png │ │ │ │ ├── file_icon@2x~ipad.png │ │ │ │ ├── file_icon@3x.png │ │ │ │ ├── file_icon~ipad.png │ │ │ │ ├── file_new_server_version_available_icon.png │ │ │ │ ├── file_new_server_version_available_icon@2x.png │ │ │ │ ├── file_synchronizing_icon.png │ │ │ │ ├── file_synchronizing_icon@2x.png │ │ │ │ ├── folder-public.png │ │ │ │ ├── folder-public@2x.png │ │ │ │ ├── folder-shared.png │ │ │ │ ├── folder-shared@2x.png │ │ │ │ ├── folder_icon.png │ │ │ │ ├── folder_icon@2x.png │ │ │ │ ├── folder_icon@2x~ipad.png │ │ │ │ ├── folder_icon~ipad.png │ │ │ │ ├── image_icon.png │ │ │ │ ├── image_icon@2x.png │ │ │ │ ├── image_icon@2x~ipad.png │ │ │ │ ├── image_icon@3x.png │ │ │ │ ├── image_icon~ipad.png │ │ │ │ ├── movie_icon.png │ │ │ │ ├── movie_icon@2x.png │ │ │ │ ├── movie_icon@2x~ipad.png │ │ │ │ ├── movie_icon@3x.png │ │ │ │ ├── movie_icon~ipad.png │ │ │ │ ├── pdf_icon.png │ │ │ │ ├── pdf_icon@2x.png │ │ │ │ ├── pdf_icon@2x~ipad.png │ │ │ │ ├── pdf_icon@3x.png │ │ │ │ ├── pdf_icon~ipad.png │ │ │ │ ├── popover_arrow.png │ │ │ │ ├── presentation_icon.png │ │ │ │ ├── presentation_icon@2x.png │ │ │ │ ├── presentation_icon@2x~ipad.png │ │ │ │ ├── presentation_icon@3x.png │ │ │ │ ├── presentation_icon~ipad.png │ │ │ │ ├── sound_icon.png │ │ │ │ ├── sound_icon@2x.png │ │ │ │ ├── sound_icon@2x~ipad.png │ │ │ │ ├── sound_icon@3x.png │ │ │ │ ├── sound_icon~ipad.png │ │ │ │ ├── spreadsheet_icon.png │ │ │ │ ├── spreadsheet_icon@2x.png │ │ │ │ ├── spreadsheet_icon@2x~ipad.png │ │ │ │ ├── spreadsheet_icon@3x.png │ │ │ │ ├── spreadsheet_icon~ipad.png │ │ │ │ ├── zip_icon.png │ │ │ │ ├── zip_icon@2x.png │ │ │ │ ├── zip_icon@2x~ipad.png │ │ │ │ ├── zip_icon@3x.png │ │ │ │ └── zip_icon~ipad.png │ │ │ ├── LoginScreen │ │ │ │ ├── CredentialsError.png │ │ │ │ ├── CredentialsError@2x.png │ │ │ │ ├── NonRevealPasswordIcon.png │ │ │ │ ├── NonRevealPasswordIcon@2x.png │ │ │ │ ├── NonSecureConnectionIcon.png │ │ │ │ ├── NonSecureConnectionIcon@2x.png │ │ │ │ ├── ReconnectIcon.png │ │ │ │ ├── ReconnectIcon@2x.png │ │ │ │ ├── RevealPasswordIcon.png │ │ │ │ ├── RevealPasswordIcon@2x.png │ │ │ │ ├── SecureConnectionIcon.png │ │ │ │ └── SecureConnectionIcon@2x.png │ │ │ ├── PreviewScreen │ │ │ │ ├── cancel_download.png │ │ │ │ ├── cancel_download@2x.png │ │ │ │ ├── cancel_download@3x.png │ │ │ │ ├── cancel_download_white.png │ │ │ │ ├── cancel_download_white@2x.png │ │ │ │ └── cancel_download_white@3x.png │ │ │ ├── SplashScreen │ │ │ │ └── SplashImage.png │ │ │ └── UploadsScreen │ │ │ │ ├── genericFile_icon.png │ │ │ │ ├── genericFile_icon@2x.png │ │ │ │ ├── genericFile_icon_error.png │ │ │ │ ├── genericFile_icon_error@2x.png │ │ │ │ ├── imageSelected.png │ │ │ │ └── imageSelected@2x.png │ │ ├── ImageSystem │ │ │ ├── Account │ │ │ │ ├── radio_checked.png │ │ │ │ ├── radio_checked@2x.png │ │ │ │ ├── radio_unchecked.png │ │ │ │ └── radio_unchecked@2x.png │ │ │ ├── Arrow │ │ │ │ ├── arrow_button.png │ │ │ │ ├── arrow_button@2x.png │ │ │ │ ├── conarrow_button.png │ │ │ │ └── conarrow_button@2x.png │ │ │ ├── CopyLinkShareiphone@3x.png │ │ │ ├── ExternalLibreries │ │ │ │ ├── TSAlertViewBackground.png │ │ │ │ ├── TSAlertViewBackground2.png │ │ │ │ ├── TSAlertViewButtonBackground.png │ │ │ │ ├── TSAlertViewButtonBackground_Highlighted.png │ │ │ │ ├── TSAlertViewCancelButtonBackground.png │ │ │ │ └── TSAlertViewMessageListViewShadow.png │ │ │ ├── Files │ │ │ │ ├── fileSharedByLink.png │ │ │ │ ├── fileSharedByLink@2x.png │ │ │ │ ├── fileSharedWithUs.png │ │ │ │ └── fileSharedWithUs@2x.png │ │ │ ├── Login │ │ │ │ ├── Button.png │ │ │ │ ├── Button@2x.png │ │ │ │ ├── gradImage.png │ │ │ │ ├── password.png │ │ │ │ ├── password@2x.png │ │ │ │ ├── server.png │ │ │ │ ├── server@2x.png │ │ │ │ ├── user.png │ │ │ │ └── user@2x.png │ │ │ ├── Player │ │ │ │ ├── exitFullScreen.png │ │ │ │ ├── exitFullScreen@2x.png │ │ │ │ ├── fullScreen.png │ │ │ │ ├── fullScreen@2x.png │ │ │ │ ├── playback_pause.png │ │ │ │ ├── playback_pause@2x.png │ │ │ │ ├── playback_play.png │ │ │ │ └── playback_play@2x.png │ │ │ ├── Preview │ │ │ │ ├── available_offline_TB-filled.png │ │ │ │ ├── available_offline_TB-filled@2x.png │ │ │ │ ├── available_offline_TB-filled@3x.png │ │ │ │ ├── available_offline_TB.png │ │ │ │ ├── available_offline_TB@2x.png │ │ │ │ ├── available_offline_TB@3x.png │ │ │ │ ├── deleteTB.png │ │ │ │ ├── deleteTB@2x.png │ │ │ │ ├── deleteTB@3x.png │ │ │ │ ├── favoriteTB-filled.png │ │ │ │ ├── favoriteTB-filled@2x.png │ │ │ │ ├── favoriteTB-filled@3x.png │ │ │ │ ├── favoriteTB.png │ │ │ │ ├── favoriteTB@2x.png │ │ │ │ ├── favoriteTB@3x.png │ │ │ │ ├── image_fail_download.png │ │ │ │ ├── image_fail_download@2x.png │ │ │ │ ├── openWithTB.png │ │ │ │ ├── openWithTB@2x.png │ │ │ │ ├── openWithTB@3x.png │ │ │ │ ├── popover_backgroud.png │ │ │ │ ├── sharedItem.png │ │ │ │ ├── sharedItem@2x.png │ │ │ │ └── sharedItem@3x.png │ │ │ ├── Seasons │ │ │ │ ├── ownCloud-xmas.png │ │ │ │ └── ownCloud-xmas@2x.png │ │ │ ├── Share │ │ │ │ ├── CopyLinkShareipad.png │ │ │ │ ├── CopyLinkShareipad@2x.png │ │ │ │ ├── CopyLinkShareiphone.png │ │ │ │ ├── CopyLinkShareiphone@2x.png │ │ │ │ ├── WhatsappShareipad.png │ │ │ │ ├── WhatsappShareipad@2x.png │ │ │ │ ├── WhatsappShareiphone.png │ │ │ │ └── WhatsappShareiphone@2x.png │ │ │ ├── Swipe │ │ │ │ ├── ASMoveFile.png │ │ │ │ ├── ASMoveFile@2x.png │ │ │ │ ├── ASOpenWith.png │ │ │ │ ├── ASOpenWith@2x.png │ │ │ │ ├── deleteBlack.png │ │ │ │ ├── deleteBlack@2x.png │ │ │ │ ├── more-filled.png │ │ │ │ ├── more-filled@2x.png │ │ │ │ ├── more-filledBlack.png │ │ │ │ ├── more-filledBlack@2x.png │ │ │ │ ├── notSharedItem.png │ │ │ │ ├── notSharedItem@2x.png │ │ │ │ ├── renameBlack.png │ │ │ │ ├── renameBlack@2x.png │ │ │ │ ├── sharedItemSwipe.png │ │ │ │ ├── sharedItemSwipe@2x.png │ │ │ │ ├── sharedItemWhite.png │ │ │ │ └── sharedItemWhite@2x.png │ │ │ ├── Upload │ │ │ │ ├── movieOverlay.png │ │ │ │ └── movieOverlay@2x.png │ │ │ ├── WhatsappShareiphone@3x.png │ │ │ └── ownCloud-xmas@3x.png │ │ └── Update Guide │ │ │ ├── teaser_accounts-568@2x.png │ │ │ ├── teaser_accounts-667@2x.png │ │ │ ├── teaser_accounts@2x.png │ │ │ ├── teaser_action-568@2x.png │ │ │ ├── teaser_action-667@2x.png │ │ │ ├── teaser_action@2x.png │ │ │ ├── teaser_app_icon-568@2x.png │ │ │ ├── teaser_app_icon-667@2x.png │ │ │ ├── teaser_app_icon@2x.png │ │ │ ├── teaser_pdf-568@2x.png │ │ │ ├── teaser_pdf-667@2x.png │ │ │ ├── teaser_pdf@2x.png │ │ │ ├── teaser_photos-568@2x.png │ │ │ ├── teaser_photos-667@2x.png │ │ │ ├── teaser_photos@2x.png │ │ │ ├── teaser_quick-568@2x.png │ │ │ ├── teaser_quick-667@2x.png │ │ │ └── teaser_quick@2x.png │ ├── Languages │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── ast.lproj │ │ │ └── Localizable.strings │ │ ├── bg_BG.lproj │ │ │ └── Localizable.strings │ │ ├── ca.lproj │ │ │ └── Localizable.strings │ │ ├── cs.lproj │ │ │ └── Localizable.strings │ │ ├── da.lproj │ │ │ └── Localizable.strings │ │ ├── de.lproj │ │ │ └── Localizable.strings │ │ ├── de_CH.lproj │ │ │ └── Localizable.strings │ │ ├── el.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── Localizable.strings │ │ ├── en_GB.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── et.lproj │ │ │ └── Localizable.strings │ │ ├── fi.lproj │ │ │ └── Localizable.strings │ │ ├── fr.lproj │ │ │ └── Localizable.strings │ │ ├── gl.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── id.lproj │ │ │ └── Localizable.strings │ │ ├── is.lproj │ │ │ └── Localizable.strings │ │ ├── it.lproj │ │ │ └── Localizable.strings │ │ ├── ja.lproj │ │ │ └── Localizable.strings │ │ ├── ko.lproj │ │ │ └── Localizable.strings │ │ ├── lt_LT.lproj │ │ │ └── Localizable.strings │ │ ├── nb.lproj │ │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── oc.lproj │ │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ │ └── Localizable.strings │ │ ├── pt-BR.lproj │ │ │ └── Localizable.strings │ │ ├── pt.lproj │ │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ │ └── Localizable.strings │ │ ├── sk_SK.lproj │ │ │ └── Localizable.strings │ │ ├── sl.lproj │ │ │ └── Localizable.strings │ │ ├── sq.lproj │ │ │ └── Localizable.strings │ │ ├── sr.lproj │ │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ │ └── Localizable.strings │ │ ├── th.lproj │ │ │ └── Localizable.strings │ │ ├── tr.lproj │ │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── InfoPlist.strings │ ├── da.lproj │ │ └── InfoPlist.strings │ ├── de.lproj │ │ └── InfoPlist.strings │ ├── el.lproj │ │ └── InfoPlist.strings │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── es.lproj │ │ └── InfoPlist.strings │ ├── et.lproj │ │ └── InfoPlist.strings │ ├── fi.lproj │ │ └── InfoPlist.strings │ ├── fr.lproj │ │ └── InfoPlist.strings │ ├── gl.lproj │ │ └── InfoPlist.strings │ ├── he.lproj │ │ └── InfoPlist.strings │ ├── id.lproj │ │ └── InfoPlist.strings │ ├── it.lproj │ │ └── InfoPlist.strings │ ├── ja.lproj │ │ └── InfoPlist.strings │ ├── ko.lproj │ │ └── InfoPlist.strings │ ├── nb.lproj │ │ └── InfoPlist.strings │ ├── nl.lproj │ │ └── InfoPlist.strings │ ├── pt-BR.lproj │ │ └── InfoPlist.strings │ ├── pt.lproj │ │ └── InfoPlist.strings │ ├── ru.lproj │ │ └── InfoPlist.strings │ ├── sl.lproj │ │ └── InfoPlist.strings │ ├── sq.lproj │ │ └── InfoPlist.strings │ ├── sr.lproj │ │ └── InfoPlist.strings │ ├── th.lproj │ │ └── InfoPlist.strings │ ├── tr.lproj │ │ └── InfoPlist.strings │ ├── zh-Hans.lproj │ │ └── InfoPlist.strings │ └── zh-Hant.lproj │ │ └── InfoPlist.strings ├── Tabs │ ├── FileTab │ │ ├── DeleteFile │ │ │ ├── DeleteFile.h │ │ │ └── DeleteFile.m │ │ ├── FileListDBOperations.h │ │ ├── FileListDBOperations.m │ │ ├── FilesViewController.h │ │ ├── FilesViewController.m │ │ ├── FilesViewController.xib │ │ ├── ManageFiles.swift │ │ ├── MoveFile │ │ │ ├── MoveFile.h │ │ │ └── MoveFile.m │ │ ├── OCNavigationController.h │ │ ├── OCNavigationController.m │ │ ├── OCPortraitNavigationViewController.h │ │ ├── OCPortraitNavigationViewController.m │ │ ├── OCTabBarController.h │ │ ├── OCTabBarController.m │ │ ├── OCToolBar.h │ │ ├── OCToolBar.m │ │ ├── OpenWith │ │ │ ├── DownloadViewController.h │ │ │ ├── DownloadViewController.m │ │ │ ├── DownloadViewController.xib │ │ │ ├── OpenWith.h │ │ │ └── OpenWith.m │ │ ├── OverWriteFileOption │ │ │ ├── OverwriteFileOptions.h │ │ │ └── OverwriteFileOptions.m │ │ ├── PassthroughView.h │ │ ├── PassthroughView.m │ │ ├── RenameFile │ │ │ ├── RenameFile.h │ │ │ └── RenameFile.m │ │ ├── SelectFolder │ │ │ ├── SelectFolderNavigation.h │ │ │ ├── SelectFolderNavigation.m │ │ │ ├── SelectFolderViewController.h │ │ │ ├── SelectFolderViewController.m │ │ │ ├── SelectFolderViewController.xib │ │ │ ├── UINavigationController+KeyboardDismiss.h │ │ │ └── UINavigationController+KeyboardDismiss.m │ │ ├── Share │ │ │ ├── AppsActivityProvider.h │ │ │ ├── AppsActivityProvider.m │ │ │ ├── Cells │ │ │ │ ├── ShareFileCell.swift │ │ │ │ ├── ShareFileCell.xib │ │ │ │ ├── ShareLinkButtonCell.swift │ │ │ │ ├── ShareLinkButtonCell.xib │ │ │ │ ├── ShareLinkHeaderCell.swift │ │ │ │ ├── ShareLinkHeaderCell.xib │ │ │ │ ├── ShareLinkOptionCell.swift │ │ │ │ ├── ShareLinkOptionCell.xib │ │ │ │ ├── ShareLoadingCell.swift │ │ │ │ ├── ShareLoadingCell.xib │ │ │ │ ├── ShareMainLinkCell.swift │ │ │ │ ├── ShareMainLinkCell.xib │ │ │ │ ├── SharePrivilegeCell.swift │ │ │ │ ├── SharePrivilegeCell.xib │ │ │ │ ├── ShareUserCell.swift │ │ │ │ ├── ShareUserCell.xib │ │ │ │ ├── ShareUserPrivilegeCell.swift │ │ │ │ ├── ShareUserPrivilegeCell.xib │ │ │ │ ├── ShareWarningLinkCell.swift │ │ │ │ └── ShareWarningLinkCell.xib │ │ │ ├── ShareEditUserViewController.h │ │ │ ├── ShareEditUserViewController.m │ │ │ ├── ShareEditUserViewController.xib │ │ │ ├── ShareFileOrFolder.h │ │ │ ├── ShareFileOrFolder.m │ │ │ ├── ShareLinkViewController.h │ │ │ ├── ShareLinkViewController.m │ │ │ ├── ShareLinkViewController.xib │ │ │ ├── ShareMainViewController.h │ │ │ ├── ShareMainViewController.m │ │ │ ├── ShareSearchUserViewController.h │ │ │ ├── ShareSearchUserViewController.m │ │ │ ├── ShareSearchUserViewController.xib │ │ │ └── ShareViewController.xib │ │ ├── SimpleFileList │ │ │ ├── SimpleFileListTableViewController.h │ │ │ ├── SimpleFileListTableViewController.m │ │ │ └── SimpleFileListTableViewController.xib │ │ └── Sort │ │ │ ├── SortManager.h │ │ │ └── SortManager.m │ ├── RecentTab │ │ ├── RecentViewController.h │ │ ├── RecentViewController.m │ │ └── RecentViewController.xib │ ├── SettingTab │ │ ├── Account │ │ │ ├── Cell │ │ │ │ ├── AccountCell.h │ │ │ │ ├── AccountCell.m │ │ │ │ └── AccountCell.xib │ │ │ └── ManageAccounts.swift │ │ ├── Imprint │ │ │ ├── Impressum.rtf │ │ │ ├── ImpressumViewController.h │ │ │ ├── ImpressumViewController.m │ │ │ └── ImpressumViewController.xib │ │ ├── SettingsViewController.h │ │ ├── SettingsViewController.m │ │ ├── SettingsViewController.xib │ │ ├── WebViewController.h │ │ ├── WebViewController.m │ │ └── WebViewController.xib │ └── SharedTap │ │ ├── SharedViewController.h │ │ ├── SharedViewController.m │ │ └── SharedViewController.xib ├── Utils │ ├── DeleteUtils.h │ ├── DeleteUtils.m │ ├── DownloadUtils.h │ ├── DownloadUtils.m │ ├── Errors │ │ ├── ManageNetworkErrors.h │ │ └── ManageNetworkErrors.m │ ├── FileNameUtils.h │ ├── FileNameUtils.m │ ├── ImageUtils.h │ ├── ImageUtils.m │ ├── ImagenScale │ │ ├── LICENSE │ │ ├── UIImage+Alpha.h │ │ ├── UIImage+Alpha.m │ │ ├── UIImage+Resize.h │ │ ├── UIImage+Resize.m │ │ ├── UIImage+RoundedCorner.h │ │ ├── UIImage+RoundedCorner.m │ │ ├── UIImage+Thumbnail.h │ │ └── UIImage+Thumbnail.m │ ├── InfoFileUtils.h │ ├── InfoFileUtils.m │ ├── NSObject+AssociatedObject.h │ ├── NSObject+AssociatedObject.m │ ├── NSString+Encoding.h │ ├── NSString+Encoding.m │ ├── OCLoadingSpinner.h │ ├── OCLoadingSpinner.m │ ├── PresentedViewUtils.h │ ├── PresentedViewUtils.m │ ├── SSL │ │ ├── CheckAccessToServer.h │ │ ├── CheckAccessToServer.m │ │ ├── SSLCertificateManager.h │ │ └── SSLCertificateManager.m │ ├── ShareUtils.h │ ├── ShareUtils.m │ ├── SystemConstants-swift.swift │ ├── SystemConstants.h │ ├── UIImage+Device.h │ ├── UIImage+Device.m │ ├── UploadUtils.h │ ├── UploadUtils.m │ ├── UtilsBrandedOptions.h │ ├── UtilsBrandedOptions.m │ ├── UtilsCookies.h │ ├── UtilsCookies.m │ ├── UtilsDtos.h │ ├── UtilsDtos.m │ ├── UtilsFileSystem.h │ ├── UtilsFileSystem.m │ ├── UtilsNetworkRequest.h │ ├── UtilsNetworkRequest.m │ ├── UtilsNotifications.h │ ├── UtilsNotifications.m │ ├── UtilsTableView.h │ ├── UtilsTableView.m │ ├── UtilsUrls.h │ ├── UtilsUrls.m │ └── constants.h └── main.m ├── Owncloud iOs ClientTests ├── ExternalLibraries │ └── OCMock_3.1.5 │ │ ├── License.txt │ │ ├── OCMock │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ ├── OCMArg.h │ │ ├── OCMConstraint.h │ │ ├── OCMLocation.h │ │ ├── OCMMacroState.h │ │ ├── OCMRecorder.h │ │ ├── OCMStubRecorder.h │ │ ├── OCMock.h │ │ └── OCMockObject.h │ │ └── libOCMock.a ├── FileNameUtilsTests.m ├── Owncloud iOs ClientTests-Info.plist ├── Owncloud_iOs_ClientTests.h ├── Owncloud_iOs_ClientTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md ├── SETUP.md ├── THIRD_PARTY.txt ├── automation_Test ├── README.md ├── actions.py ├── config.ini ├── constants.py ├── createFolderTest.py ├── filesView.py ├── helpGuideView.py ├── loginTest.py ├── loginView.py ├── settingsView.py └── webdavCommands.py ├── docs ├── .gitignore ├── Makefile ├── README.md ├── antora.yml ├── books │ └── ownCloud_iOS_App_Manual.adoc ├── fonts │ ├── dejavu-sans-bold.ttf │ ├── dejavu-sans-boldoblique.ttf │ ├── dejavu-sans-condensed.ttf │ ├── dejavu-sans-condensedbold.ttf │ ├── dejavu-sans-condensedboldoblique.ttf │ ├── dejavu-sans-condensedoblique.ttf │ ├── dejavu-sans-extralight.ttf │ ├── dejavu-sans-mono-bold.ttf │ ├── dejavu-sans-mono.ttf │ ├── dejavu-sans-monoboldoblique.ttf │ ├── dejavu-sans-monooblique.ttf │ ├── dejavu-sans-oblique.ttf │ ├── dejavu-sans.ttf │ ├── dejavuserif-bold.ttf │ ├── dejavuserif-bolditalic.ttf │ ├── dejavuserif-italic.ttf │ ├── dejavuserif.ttf │ ├── dejavuserifcondensed-bold.ttf │ ├── dejavuserifcondensed-bolditalic.ttf │ ├── dejavuserifcondensed-italic.ttf │ ├── dejavuserifcondensed.ttf │ ├── notoserif-bold.ttf │ ├── notoserif-bolditalic.ttf │ ├── notoserif-italic.ttf │ ├── notoserif-regular.ttf │ ├── opensans-bold.ttf │ ├── opensans-bolditalic.ttf │ ├── opensans-extrabold.ttf │ ├── opensans-extrabolditalic.ttf │ ├── opensans-italic.ttf │ ├── opensans-light.ttf │ ├── opensans-lightitalic.ttf │ ├── opensans-regular.ttf │ ├── opensans-semibold.ttf │ └── opensans-semibolditalic.ttf ├── generator │ └── xref-validator.js ├── modules │ └── ROOT │ │ ├── assets │ │ ├── attachments │ │ │ └── .gitkeep │ │ └── images │ │ │ ├── ios-app.png │ │ │ ├── ios-clear-cache-button.png │ │ │ ├── ios-clear-cache.png │ │ │ ├── ios-downloaded.png │ │ │ ├── ios-editing-a-text-file.png │ │ │ ├── ios-file-buttons.png │ │ │ ├── ios-file-downloaded-file.png │ │ │ ├── ios-file-squirrel.png │ │ │ ├── ios-files-list-with-instant-uploads.png │ │ │ ├── ios-files-list.png │ │ │ ├── ios-files.png │ │ │ ├── ios-instant-upload-file-list.png │ │ │ ├── ios-instant-uploads-all-disabled.png │ │ │ ├── ios-instant-uploads-enabled-access-notification.png │ │ │ ├── ios-instant-uploads-photos-enabled.png │ │ │ ├── ios-instant-uploads-videos-location-services-notification.png │ │ │ ├── ios-settings-more-app-version.png │ │ │ ├── ios-settings-more.png │ │ │ ├── ios-settings.png │ │ │ ├── ios-share-link.png │ │ │ ├── ios-sharing.png │ │ │ ├── ios-slider.png │ │ │ ├── ios-uploads-list.png │ │ │ └── ios-viewing-a-text-file.png │ │ ├── examples │ │ └── .gitkeep │ │ ├── nav.adoc │ │ └── pages │ │ ├── index.adoc │ │ └── ios_faq.adoc ├── package.json ├── resources │ └── themes │ │ ├── custom-theme.yml │ │ └── owncloud-theme.yml ├── site.yml └── yarn.lock ├── include └── openssl │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h ├── issue_template.md ├── libcrypto.a ├── libssl.a ├── ownCloudExtApp ├── Cells │ ├── DocumentPickerCell.h │ ├── DocumentPickerCell.m │ └── DocumentPickerCell.xib ├── DocumentPickerViewController.h ├── DocumentPickerViewController.m ├── DocumentPickerViewController.xib ├── File List │ ├── FileListDocumentProviderViewController.h │ ├── FileListDocumentProviderViewController.m │ └── FileListDocumentProviderViewController.xib ├── FileListDocumentProviderMoveViewController.xib ├── Info.plist ├── Network │ ├── DPDownload.h │ └── DPDownload.m └── ownCloudExtApp.entitlements ├── ownCloudExtAppFileProvider ├── FileProvider.h ├── FileProvider.m ├── Info.plist └── ownCloudExtAppFileProvider.entitlements └── svg_resources └── IntroGuide ├── IntroGuide.svg └── navigationButtons.svg /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | */build/* 4 | _build/ 5 | *.pbxuser 6 | !default.pbxuser 7 | *.mode1v3 8 | !default.mode1v3 9 | *.mode2v3 10 | !default.mode2v3 11 | *.perspectivev3 12 | !default.perspectivev3 13 | xcuserdata 14 | profile 15 | *.moved-aside 16 | DerivedData 17 | .idea/ 18 | *.hmap 19 | *.xccheckout 20 | *.pyc 21 | xcshareddata/ 22 | 23 | #CocoaPods 24 | Pods 25 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "OCCommunicationLib"] 2 | path = OCCommunicationLib 3 | url = https://github.com/owncloud/ios-library.git 4 | [submodule "ocdoc"] 5 | path = user_manual/ocdoc 6 | url = https://github.com/owncloud/documentation 7 | branch = master 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode9.2 3 | #xcode_project: Owncloud iOs Client.xcodeproj 4 | #xcode_scheme: Owncloud iOs Client 5 | #xcode_sdk: iphonesimulator 6 | 7 | script: 8 | - set -o pipefail && xcodebuild -project 'Owncloud iOs Client.xcodeproj' -scheme 'Owncloud iOs Client' -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=11.2,name=iPhone 8' clean test build | xcpretty -c 9 | #-UseSanitizedBuildSystemEnvironment=YES 10 | 11 | #before_install: 12 | #- brew update; brew update 13 | #- brew outdated xctool || brew upgrade xctool 14 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | 4 | [owncloud.mobile-ios] 5 | file_filter = Owncloud iOs Client/SupportingFiles/Languages/.lproj/Localizable.strings 6 | lang_map = nb_NO: nb, pt_PT: pt, pt_BR: pt-BR, th_TH: th, fi_FI: fi, cs_CZ: cs, et_EE: et, ja_JP: ja, de_DE: de, zh_CN: zh-Hans, zh_TW: zh-Hant 7 | source_file = Owncloud iOs Client/SupportingFiles/Languages/en.lproj/Localizable.strings 8 | source_lang = en 9 | type = STRINGS 10 | -------------------------------------------------------------------------------- /OC Share Sheet/OC Share Sheet.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | com.apple.security.application-groups 8 | 9 | group.com.owncloud.iOSmobileapp 10 | 11 | keychain-access-groups 12 | 13 | $(AppIdentifierPrefix)group.com.owncloud.iOSmobileapp 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /OCC2015_iOS_workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/OCC2015_iOS_workshop.pdf -------------------------------------------------------------------------------- /Owncloud iOs Client.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Owncloud iOs Client/DB.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/DB.sqlite -------------------------------------------------------------------------------- /Owncloud iOs Client/DataBase/DTOs/CookiesStorageDto.m: -------------------------------------------------------------------------------- 1 | // 2 | // CookiesStorageDto.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Javier Gonzalez on 10/07/14. 6 | // 7 | 8 | /* 9 | Copyright (C) 2016, ownCloud GmbH. 10 | This code is covered by the GNU Public License Version 3. 11 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 12 | You should have received a copy of this license 13 | along with this program. If not, see . 14 | */ 15 | 16 | #import "CookiesStorageDto.h" 17 | 18 | @implementation CookiesStorageDto 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Owncloud iOs Client/DataBase/DTOs/FolderSyncDto.m: -------------------------------------------------------------------------------- 1 | // 2 | // FolderSyncDto.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Javier Gonzalez on 29/09/15. 6 | // 7 | // 8 | 9 | /* 10 | Copyright (C) 2016, ownCloud GmbH. 11 | This code is covered by the GNU Public License Version 3. 12 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 13 | You should have received a copy of this license 14 | along with this program. If not, see . 15 | */ 16 | 17 | #import "FolderSyncDto.h" 18 | 19 | @implementation FolderSyncDto 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Owncloud iOs Client/DataBase/DTOs/ProvidingFileDto.m: -------------------------------------------------------------------------------- 1 | // 2 | // ProvidingFileDto.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Gonzalo Gonzalez on 2/1/15. 6 | // 7 | // 8 | 9 | /* 10 | Copyright (C) 2016, ownCloud GmbH. 11 | This code is covered by the GNU Public License Version 3. 12 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 13 | You should have received a copy of this license 14 | along with this program. If not, see . 15 | */ 16 | 17 | #import "ProvidingFileDto.h" 18 | 19 | @implementation ProvidingFileDto 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Owncloud iOs Client/DataBase/DTOs/UploadsOfflineDto.m: -------------------------------------------------------------------------------- 1 | // 2 | // UploadsOfflineDto.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Javier Gonzalez on 6/7/13. 6 | // 7 | 8 | /* 9 | Copyright (C) 2016, ownCloud GmbH. 10 | This code is covered by the GNU Public License Version 3. 11 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 12 | You should have received a copy of this license 13 | along with this program. If not, see . 14 | */ 15 | 16 | #import "UploadsOfflineDto.h" 17 | 18 | @implementation UploadsOfflineDto 19 | 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/CustomStatusBar/NotificationStatusBarViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // NotificationStatusBarViewController.h 3 | // Owncloud iOs Client 4 | // 5 | // Created by Rebeca Martín de León on 08/01/14. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface NotificationStatusBarViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCAssetCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // AssetCell.h 3 | // 4 | // Created by ELC on 2/15/11. 5 | // Copyright 2011 ELC Technologies. All rights reserved. 6 | // 7 | 8 | #import 9 | 10 | 11 | @interface ELCAssetCell : UITableViewCell 12 | 13 | @property (nonatomic, assign) BOOL alignmentLeft; 14 | 15 | - (void)setAssets:(NSArray *)assets; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCAssetPickerFilterDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // ELCAssetPickerFilterDelegate.h 3 | 4 | @class ELCAsset; 5 | @class ELCAssetTablePicker; 6 | 7 | @protocol ELCAssetPickerFilterDelegate 8 | 9 | // respond YES/NO to filter out (not show the asset) 10 | -(BOOL)assetTablePicker:(ELCAssetTablePicker *)picker isAssetFilteredOut:(ELCAsset *)elcAsset; 11 | 12 | @end -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCAssetSelectionDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // ELCAssetSelectionDelegate.h 3 | // ELCImagePickerDemo 4 | // 5 | // Created by JN on 9/6/12. 6 | // Copyright (c) 2012 ELC Technologies. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class ELCAsset; 12 | 13 | @protocol ELCAssetSelectionDelegate 14 | 15 | - (void)selectedAssets:(NSArray*)assets andURL:(NSString*)urlToUpload; 16 | - (BOOL)shouldSelectAsset:(ELCAsset *)asset previousCount:(NSUInteger)previousCount; 17 | - (BOOL)shouldDeselectAsset:(ELCAsset *)asset previousCount:(NSUInteger)previousCount; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCConsole.h: -------------------------------------------------------------------------------- 1 | // 2 | // ELCConsole.h 3 | // ELCImagePickerDemo 4 | // 5 | // Created by Seamus on 14-7-11. 6 | // Copyright (c) 2014年 ELC Technologies. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ELCConsole : NSObject 12 | { 13 | NSMutableArray *myIndex; 14 | } 15 | @property (nonatomic,assign) BOOL onOrder; 16 | + (ELCConsole *)mainConsole; 17 | - (void)addIndex:(int)index; 18 | - (void)removeIndex:(int)index; 19 | - (int)currIndex; 20 | - (int)numOfSelectedElements; 21 | - (void)removeAllIndex; 22 | @end 23 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // ELCConstants.h 3 | // ELCImagePickerDemo 4 | // 5 | // Created by synerzip on 08/10/15. 6 | // Copyright © 2015 ELC Technologies. All rights reserved. 7 | // 8 | 9 | #ifndef ELCConstants_h 10 | #define ELCConstants_h 11 | 12 | #endif /* ELCConstants_h */ 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCImagePickerHeader.h: -------------------------------------------------------------------------------- 1 | // 2 | // ELCImagePickerHeader.h 3 | // ELCImagePickerDemo 4 | // 5 | // Created by ericyang on 14-4-25. 6 | // Copyright (c) 2014年 ELC Technologies. All rights reserved. 7 | // 8 | 9 | #ifndef ELCImagePickerDemo_ELCImagePickerHeader_h 10 | #define ELCImagePickerDemo_ELCImagePickerHeader_h 11 | 12 | #import "ELCAlbumPickerController.h" 13 | #import "ELCImagePickerController.h" 14 | #import "ELCAssetTablePicker.h" 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/ELCOverlayImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ELCOverlayImageView.h 3 | // ELCImagePickerDemo 4 | // 5 | // Created by Seamus on 14-7-11. 6 | // Copyright (c) 2014年 ELC Technologies. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ELCOverlayImageView : UIImageView 12 | 13 | @property (nonatomic, strong) UILabel *labIndex; 14 | 15 | - (void)setIndex:(int)_index; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/Resources/Overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/ELCPickerLib/Resources/Overlay.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/ELCPickerLib/Resources/Overlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/ELCPickerLib/Resources/Overlay@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/FFCircularProgressView/UIColor+iOS7.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+iOS7.h 3 | // FFCircularProgressView 4 | // 5 | // Created by Fabiano Francesconi on 16/07/13. 6 | // Copyright (c) 2013 Fabiano Francesconi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIColor (iOS7) 12 | 13 | + (UIColor *) ios7Blue; 14 | + (UIColor *) ios7Gray; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/FFCircularProgressView/UIColor+iOS7.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIColor+iOS7.m 3 | // FFCircularProgressView 4 | // 5 | // Created by Fabiano Francesconi on 16/07/13. 6 | // Copyright (c) 2013 Fabiano Francesconi. All rights reserved. 7 | // 8 | 9 | #import "UIColor+iOS7.h" 10 | 11 | @implementation UIColor (iOS7) 12 | 13 | + (UIColor *) ios7Blue { 14 | return [self colorWithRed:0 green:122/255.0 blue:1.0 alpha:1.0]; 15 | } 16 | 17 | + (UIColor *) ios7Gray { 18 | return [self colorWithRed:181/255.0 green:182/255.0 blue:183/255.0 alpha:1.0]; 19 | } 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTAlphaAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTAlphaAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Devin Foley on 9/27/13. 6 | // Copyright (c) 2013 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTAlphaAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time alpha:(CGFloat)alpha; 14 | - (void)addKeyframeForTime:(CGFloat)time alpha:(CGFloat)alpha withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTAnimatable.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTAnimatable.h 3 | // JazzHands 4 | // 5 | // Created by Laura Skelton on 6/17/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol IFTTTAnimatable 12 | 13 | - (void)animate:(CGFloat)time; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTAnimator.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTAnimator.h 3 | // JazzHands 4 | // 5 | // Created by Devin Foley on 9/28/13. 6 | // Copyright (c) 2013 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | @protocol IFTTTAnimatable; 10 | 11 | @interface IFTTTAnimator : NSObject 12 | 13 | - (void)addAnimation:(id)animation; 14 | - (void)animate:(CGFloat)time; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTColorAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTColorAnimation.h 3 | // IFTTT 4 | // 5 | // Created by Max Meyers on 10/10/13. 6 | // Copyright (c) 2013 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTColorAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time color:(UIColor *)color; 14 | - (void)addKeyframeForTime:(CGFloat)time color:(UIColor *)color withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTCornerRadiusAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTCornerRadiusAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Nuno Gonçalves on 3/8/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTCornerRadiusAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time cornerRadius:(CGFloat)cornerRadius; 14 | - (void)addKeyframeForTime:(CGFloat)time cornerRadius:(CGFloat)cornerRadius withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTFillColorAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTFillColorAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Pierluigi D'Andrea on 07/05/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTShapeLayerAnimation.h" 10 | 11 | @interface IFTTTFillColorAnimation : IFTTTShapeLayerAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time color:(UIColor *)color; 14 | - (void)addKeyframeForTime:(CGFloat)time color:(UIColor *)color withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTFrameAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTFrameAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Devin Foley on 9/27/13. 6 | // Copyright (c) 2013 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTFrameAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time frame:(CGRect)frame; 14 | - (void)addKeyframeForTime:(CGFloat)time frame:(CGRect)frame withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTHideAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTHideAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Devin Foley on 9/28/13. 6 | // Copyright (c) 2013 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTAnimation.h" 10 | 11 | @interface IFTTTHideAnimation : IFTTTAnimation 12 | 13 | + (instancetype)animationWithView:(UIView *)view hideAt:(CGFloat)time; 14 | + (instancetype)animationWithView:(UIView *)view showAt:(CGFloat)time; 15 | 16 | - (instancetype)initWithView:(UIView *)view hideAt:(CGFloat)time; 17 | - (instancetype)initWithView:(UIView *)view showAt:(CGFloat)time; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTLabelAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTLabelAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Laura Skelton on 6/18/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTAnimation.h" 10 | 11 | @interface IFTTTLabelAnimation : IFTTTAnimation 12 | 13 | @property (nonatomic, strong, readonly) UILabel *label; 14 | 15 | - (instancetype)initWithLabel:(UILabel *)label NS_DESIGNATED_INITIALIZER; 16 | + (instancetype)animationWithLabel:(UILabel *)label; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTRotationAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTRotationAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Vahur Roosimaa on 12/7/13. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTRotationAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time rotation:(CGFloat)degrees; 14 | - (void)addKeyframeForTime:(CGFloat)time rotation:(CGFloat)degrees withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTScaleAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTScaleAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Steven Mok on 1/10/14. 6 | // Copyright (c) 2014 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTScaleAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time scale:(CGFloat)scale; 14 | - (void)addKeyframeForTime:(CGFloat)time scale:(CGFloat)scale withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTShapeLayerAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTShapeLayerAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Laura Skelton on 6/17/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTAnimation.h" 10 | 11 | @interface IFTTTShapeLayerAnimation : IFTTTAnimation 12 | 13 | @property (nonatomic, strong, readonly) CAShapeLayer *layer; 14 | 15 | - (instancetype)initWithLayer:(CAShapeLayer *)layer NS_DESIGNATED_INITIALIZER; 16 | + (instancetype)animationWithLayer:(CAShapeLayer *)layer; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTStrokeEndAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTStrokeEndAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Pierluigi D'Andrea on 06/05/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTShapeLayerAnimation.h" 10 | 11 | @interface IFTTTStrokeEndAnimation : IFTTTShapeLayerAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time strokeEnd:(CGFloat)strokeEnd; 14 | - (void)addKeyframeForTime:(CGFloat)time strokeEnd:(CGFloat)strokeEnd withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTStrokeStartAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTStrokeStartAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Pierluigi D'Andrea on 06/05/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTShapeLayerAnimation.h" 10 | 11 | @interface IFTTTStrokeStartAnimation : IFTTTShapeLayerAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time strokeStart:(CGFloat)strokeStart; 14 | - (void)addKeyframeForTime:(CGFloat)time strokeStart:(CGFloat)strokeStart withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTTextColorAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTTextColorAnimation.h 3 | // IFTTT 4 | // 5 | // Created by Iulian Onofrei on 07/05/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTLabelAnimation.h" 10 | 11 | @interface IFTTTTextColorAnimation : IFTTTLabelAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time color:(UIColor *)color; 14 | - (void)addKeyframeForTime:(CGFloat)time color:(UIColor *)color withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTTranslationAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTTranslationAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Laura Skelton on 6/17/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface IFTTTTranslationAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time translation:(CGPoint)translation; 14 | - (void)addKeyframeForTime:(CGFloat)time translation:(CGPoint)translation withEasingFunction:(IFTTTEasingFunction)easingFunction; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/IFTTTViewAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // IFTTTViewAnimation.h 3 | // JazzHands 4 | // 5 | // Created by Laura Skelton on 6/17/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTAnimation.h" 10 | 11 | @interface IFTTTViewAnimation : IFTTTAnimation 12 | 13 | @property (nonatomic, strong, readonly) UIView *view; 14 | 15 | - (instancetype)initWithView:(UIView *)view NS_DESIGNATED_INITIALIZER; 16 | + (instancetype)animationWithView:(UIView *)view; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/JazzHands/UIView+IFTTTJazzHands.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+IFTTTJazzHands.h 3 | // JazzHands 4 | // 5 | // Created by Laura Skelton on 6/17/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIView (IFTTTJazzHands) 12 | 13 | @property (nonatomic, strong) NSValue *iftttRotationTransform; 14 | @property (nonatomic, strong) NSValue *iftttScaleTransform; 15 | @property (nonatomic, strong) NSValue *iftttTranslationTransform; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_empty.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_empty@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_filled.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/box_filled@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/KKPasscodeLock/KKPasscodeLock.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/SWTableViewCell/SWCellScrollView.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWCellScrollView.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SWCellScrollView : UIScrollView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/SWTableViewCell/SWConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWConstants.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #ifndef SWTableViewCell_Constants_h 10 | #define SWTableViewCell_Constants_h 11 | 12 | #define kUtilityButtonsWidthMax 200//260 13 | #define kUtilityButtonWidthDefault 90//90 14 | #define kSectionIndexWidth 15 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/SWTableViewCell/SWLongPressGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWLongPressGestureRecognizer.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface SWLongPressGestureRecognizer : UILongPressGestureRecognizer 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/SWTableViewCell/SWUtilityButtonTapGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | // 2 | // SWUtilityButtonTapGestureRecognizer.h 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface SWUtilityButtonTapGestureRecognizer : UITapGestureRecognizer 13 | 14 | @property (nonatomic) NSUInteger buttonIndex; 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/SWTableViewCell/SWUtilityButtonTapGestureRecognizer.m: -------------------------------------------------------------------------------- 1 | // 2 | // SWUtilityButtonTapGestureRecognizer.m 3 | // SWTableViewCell 4 | // 5 | // Created by Matt Bowman on 11/27/13. 6 | // Copyright (c) 2013 Chris Wendel. All rights reserved. 7 | // 8 | 9 | #import "SWUtilityButtonTapGestureRecognizer.h" 10 | 11 | @implementation SWUtilityButtonTapGestureRecognizer 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundError.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundError@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundErrorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundErrorIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundErrorIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundErrorIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundMessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundMessage.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundMessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundMessage@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccess.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccess@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccess@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccessIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccessIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccessIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundSuccessIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarning.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarning@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarningIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarningIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationBackgroundWarningIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationButtonBackground.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationButtonBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TSMessages/Assets/NotificationButtonBackground@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TSMessages/Classes/TSBlurView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TSBlurView.h 3 | // Pods 4 | // 5 | // Created by Felix Krause on 20.08.13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface TSBlurView : UIView 12 | 13 | @property (nonatomic, strong) UIColor *blurTintColor; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity7.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity7@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity8.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity8@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity8@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity8@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/ExternalLibreries/TTOpenInAppActivity/TTOpenInAppActivity@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/Files/PreviewSupportedFiles/Media/MediaAVPlayerViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // MediaAVPlayerViewController.h 3 | // Owncloud iOs Client 4 | // 5 | // Created by Javier Gonzalez Perez on 14/2/17. 6 | // 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface MediaAVPlayerViewController : AVPlayerViewController 13 | 14 | @property (nonatomic, strong) NSString *urlString; 15 | @property (nonatomic) BOOL isMusic; 16 | @property (nonatomic) BOOL isFullScreen; 17 | 18 | +(NSString *)observerKeyFullScreen; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Owncloud iOs Client/Files/PreviewSupportedFiles/Media/MediaAVPlayerViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // MediaAVPlayerViewController.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Javier Gonzalez Perez on 14/2/17. 6 | // 7 | // 8 | 9 | #import "MediaAVPlayerViewController.h" 10 | 11 | NSString * const keyFullScreen = @"bounds"; 12 | 13 | @implementation MediaAVPlayerViewController 14 | 15 | +(NSString *)observerKeyFullScreen { 16 | return keyFullScreen; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Owncloud iOs Client/HelpGuide/MyCustomAnimation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MyCustomAnimation.h 3 | // JazzHandsDemo 4 | // 5 | // Created by Laura Skelton on 6/18/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "IFTTTViewAnimation.h" 10 | 11 | @interface MyCustomAnimation : IFTTTViewAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time shadowOpacity:(CGFloat)shadowOpacity; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Owncloud iOs Client/HelpGuide/MyCustomAnimation.m: -------------------------------------------------------------------------------- 1 | // 2 | // MyCustomAnimation.m 3 | // JazzHandsDemo 4 | // 5 | // Created by Laura Skelton on 6/18/15. 6 | // Copyright (c) 2015 IFTTT Inc. All rights reserved. 7 | // 8 | 9 | #import "MyCustomAnimation.h" 10 | 11 | @implementation MyCustomAnimation 12 | 13 | - (void)addKeyframeForTime:(CGFloat)time shadowOpacity:(CGFloat)shadowOpacity 14 | { 15 | [self addKeyframeForTime:time value:@(shadowOpacity)]; 16 | } 17 | 18 | - (void)animate:(CGFloat)time 19 | { 20 | if (!self.hasKeyframes) return; 21 | self.view.layer.shadowOpacity = (float)[(NSNumber *)[self valueAtTime:time] floatValue]; 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Owncloud iOs Client/ManageAccounts.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ManageAccounts.swift 3 | // Owncloud iOs Client 4 | // 5 | // Created by Noelia Alvarez on 13/07/2017. 6 | // 7 | // 8 | 9 | import Foundation 10 | -------------------------------------------------------------------------------- /Owncloud iOs Client/OpenInApp/UniversalLinksContext.m: -------------------------------------------------------------------------------- 1 | // 2 | // UniversalLinksContext.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Pablo Carrascal on 14/02/2018. 6 | // 7 | 8 | #import "UniversalLinksContext.h" 9 | 10 | @implementation UniversalLinksContext 11 | 12 | @synthesize strategy; 13 | 14 | -(void)handleLink:(void (^)(NSArray *))success failure:(void (^)(NSError *))failure { 15 | [strategy handleLink:success failure:failure]; 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Owncloud iOs Client/Owncloud iOs Client.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | com.apple.security.application-groups 8 | 9 | group.com.owncloud.iOSmobileapp 10 | 11 | keychain-access-groups 12 | 13 | $(AppIdentifierPrefix)group.com.owncloud.iOSmobileapp 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SplashScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnAllHelpGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnAllHelpGrey.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnAllHelpGrey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnAllHelpGrey@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage0.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage0@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage1@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage2.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage2@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage3.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage3@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage4.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage4@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage5.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/HelpPageButtons/btnHelpPage5@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x", 6 | "filename" : "company.png" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x", 11 | "filename" : "company_empty_screen_ipad.png" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x", 16 | "filename" : "company_empty_screen_ipad@2x.png" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/company.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/company_empty_screen_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/company_empty_screen_ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/company_empty_screen_ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/companyLogoHelp.imageset/company_empty_screen_ipad@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/dismiss.imageset/baseline_cancel_black_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/dismiss.imageset/baseline_cancel_black_24pt_1x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/dismiss.imageset/baseline_cancel_black_24pt_2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/dismiss.imageset/baseline_cancel_black_24pt_2x-1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/dismiss.imageset/baseline_cancel_black_24pt_3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/Images.xcassets/dismiss.imageset/baseline_cancel_black_24pt_3x-1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneAccounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneAccounts.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneAccounts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneAccounts@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneFiles.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneFiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneFiles@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneInstantUpload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneInstantUpload.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneInstantUpload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneInstantUpload@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneShare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneShare.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneShare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/iphoneShare@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/owncloudLogoFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/owncloudLogoFiles.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/HelpGuide/owncloudLogoFiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/HelpGuide/owncloudLogoFiles@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TapBar/tabBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TapBar/tabBar.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TapBar/tabBar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TapBar/tabBar@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TopBar/topBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TopBar/topBar.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TopBar/topBar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Bar/TopBar/topBar@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/CompanyLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/CompanyLogo.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/CompanyLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/CompanyLogo@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/CompanyLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/CompanyLogo@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/40-1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/40-2.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/MainAppIcon.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/company_empty_screen_ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/company_empty_screen_ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/company_empty_screen_ipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/Branding/company_empty_screen_ipad@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/BackRootFolderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/BackRootFolderIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/BackRootFolderIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/BackRootFolderIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/BackRootFolderIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/BackRootFolderIcon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadedIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadedIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadedIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadingIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadingIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileDownloadingIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteUpdatingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteUpdatingIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteUpdatingIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileFavoriteUpdatingIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileOverwritingIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileOverwritingIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileOverwritingIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileOverwritingIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileUpdatedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileUpdatedIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileUpdatedIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/FileUpdatedIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/RootFolderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/RootFolderIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/RootFolderIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/RootFolderIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/RootFolderIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/RootFolderIcon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABShares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABShares.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABShares@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABShares@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABShares@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABShares@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABfiles.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABfiles@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABfiles@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABfiles@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABfiles@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABrecents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABrecents.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABrecents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABrecents@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABrecents@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABrecents@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABsettings.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABsettings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABsettings@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABsettings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/TABsettings@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/doc_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_available_offline_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_available_offline_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_available_offline_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_available_offline_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_new_server_version_available_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_new_server_version_available_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_new_server_version_available_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_new_server_version_available_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_synchronizing_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_synchronizing_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_synchronizing_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/file_synchronizing_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-public.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-public@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-public@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-shared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-shared.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-shared@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder-shared@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/folder_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/image_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/movie_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/pdf_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/popover_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/popover_arrow.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/presentation_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/sound_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/spreadsheet_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon@2x~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/FilesViewScreen/zip_icon~ipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/CredentialsError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/CredentialsError.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/CredentialsError@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/CredentialsError@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonRevealPasswordIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonRevealPasswordIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonRevealPasswordIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonRevealPasswordIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonSecureConnectionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonSecureConnectionIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonSecureConnectionIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/NonSecureConnectionIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/ReconnectIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/ReconnectIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/ReconnectIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/ReconnectIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/RevealPasswordIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/RevealPasswordIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/RevealPasswordIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/RevealPasswordIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/SecureConnectionIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/SecureConnectionIcon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/SecureConnectionIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/LoginScreen/SecureConnectionIcon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download_white.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download_white@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/PreviewScreen/cancel_download_white@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/SplashScreen/SplashImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/SplashScreen/SplashImage.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon_error.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/genericFile_icon_error@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/imageSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/imageSelected.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/imageSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageBranding/UploadsScreen/imageSelected@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_checked.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_checked@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_unchecked.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_unchecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Account/radio_unchecked@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/arrow_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/arrow_button.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/arrow_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/arrow_button@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/conarrow_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/conarrow_button.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/conarrow_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Arrow/conarrow_button@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/CopyLinkShareiphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/CopyLinkShareiphone@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewBackground.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewBackground2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewBackground2.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewButtonBackground.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewButtonBackground_Highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewButtonBackground_Highlighted.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewCancelButtonBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewCancelButtonBackground.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewMessageListViewShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ExternalLibreries/TSAlertViewMessageListViewShadow.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedByLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedByLink.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedByLink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedByLink@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedWithUs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedWithUs.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedWithUs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Files/fileSharedWithUs@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/Button.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/Button@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/gradImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/gradImage.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/password.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/password@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/password@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/server.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/server@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/server@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/user.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/user@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Login/user@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/exitFullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/exitFullScreen.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/exitFullScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/exitFullScreen@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/fullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/fullScreen.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/fullScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/fullScreen@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_pause.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_pause@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_play.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Player/playback_play@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB-filled.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB-filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB-filled@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB-filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB-filled@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/available_offline_TB@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/deleteTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/deleteTB.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/deleteTB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/deleteTB@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/deleteTB@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/deleteTB@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB-filled.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB-filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB-filled@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB-filled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB-filled@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/favoriteTB@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/image_fail_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/image_fail_download.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/image_fail_download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/image_fail_download@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/openWithTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/openWithTB.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/openWithTB@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/openWithTB@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/openWithTB@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/openWithTB@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/popover_backgroud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/popover_backgroud.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/sharedItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/sharedItem.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/sharedItem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/sharedItem@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/sharedItem@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Preview/sharedItem@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Seasons/ownCloud-xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Seasons/ownCloud-xmas.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Seasons/ownCloud-xmas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Seasons/ownCloud-xmas@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareipad@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareiphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareiphone.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareiphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/CopyLinkShareiphone@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareipad.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareipad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareipad@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareiphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareiphone.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareiphone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Share/WhatsappShareiphone@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASMoveFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASMoveFile.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASMoveFile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASMoveFile@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASOpenWith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASOpenWith.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASOpenWith@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/ASOpenWith@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/deleteBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/deleteBlack.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/deleteBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/deleteBlack@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filled.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filled@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filledBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filledBlack.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filledBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/more-filledBlack@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/notSharedItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/notSharedItem.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/notSharedItem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/notSharedItem@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/renameBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/renameBlack.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/renameBlack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/renameBlack@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemSwipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemSwipe.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemSwipe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemSwipe@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemWhite.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemWhite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Swipe/sharedItemWhite@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Upload/movieOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Upload/movieOverlay.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Upload/movieOverlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/Upload/movieOverlay@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/WhatsappShareiphone@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/WhatsappShareiphone@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ownCloud-xmas@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/ImageSystem/ownCloud-xmas@3x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_accounts-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_accounts-568@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_accounts-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_accounts-667@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_accounts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_accounts@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_action-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_action-568@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_action-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_action-667@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_action@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_action@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_app_icon-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_app_icon-568@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_app_icon-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_app_icon-667@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_app_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_app_icon@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_pdf-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_pdf-568@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_pdf-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_pdf-667@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_pdf@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_photos-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_photos-568@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_photos-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_photos-667@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_photos@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_quick-568@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_quick-568@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_quick-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_quick-667@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_quick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Images/Update Guide/teaser_quick@2x.png -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/ast.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/ast.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/bg_BG.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/bg_BG.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/de_CH.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/de_CH.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/en_GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/en_GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/et.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/et.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/is.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/is.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/lt_LT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/lt_LT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/oc.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/oc.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/sk_SK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/sk_SK.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/sq.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/sq.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/sr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/sr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/Languages/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs Client/SupportingFiles/Languages/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/et.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/gl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/sl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/sq.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/sr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/SupportingFiles/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | Owncloud iOs Client 4 | 5 | Created by Noelia Alvarez on 13/09/16. 6 | 7 | */ 8 | 9 | 10 | "NSPhotoLibraryUsageDescription" = "Upload your selected photos to your account"; 11 | "NSLocationAlwaysUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 12 | "NSLocationWhenInUseUsageDescription" = "Used to instantly upload your new photos after a significant change in your location"; 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/Tabs/FileTab/PassthroughView.h: -------------------------------------------------------------------------------- 1 | // 2 | // PassthroughView.h 3 | // Owncloud iOs Client 4 | // 5 | // Created by Gonzalo Gonzalez on 08/10/13. 6 | // 7 | 8 | /* 9 | Copyright (C) 2016, ownCloud GmbH. 10 | This code is covered by the GNU Public License Version 3. 11 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 12 | You should have received a copy of this license 13 | along with this program. If not, see . 14 | */ 15 | 16 | 17 | #import 18 | 19 | @interface PassthroughView : UIView 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /Owncloud iOs Client/Tabs/SettingTab/Imprint/Impressum.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1343\cocoasubrtf140 2 | {\fonttbl} 3 | {\colortbl;\red255\green255\blue255;} 4 | \paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0 5 | } -------------------------------------------------------------------------------- /Owncloud iOs Client/Utils/ImagenScale/LICENSE: -------------------------------------------------------------------------------- 1 | License 2 | 3 | Created by Trevor Harmon on 9/20/09. 4 | 5 | All code presented here is free for both personal and commercial use, with or without modification. No warranty is expressed or implied. -------------------------------------------------------------------------------- /Owncloud iOs Client/Utils/ImagenScale/UIImage+Alpha.h: -------------------------------------------------------------------------------- 1 | // UIImage+Alpha.h 2 | // Created by Trevor Harmon on 9/20/09. 3 | // Free for personal or commercial use, with or without modification. 4 | // No warranty is expressed or implied. 5 | 6 | // Helper methods for adding an alpha layer to an image 7 | @interface UIImage (Alpha) 8 | - (BOOL)hasAlpha; 9 | - (UIImage *)imageWithAlpha; 10 | - (UIImage *)transparentBorderImage:(NSUInteger)borderSize; 11 | - (CGImageRef)newBorderMask:(NSUInteger)borderSize size:(CGSize)size; 12 | @end 13 | -------------------------------------------------------------------------------- /Owncloud iOs Client/Utils/ImagenScale/UIImage+RoundedCorner.h: -------------------------------------------------------------------------------- 1 | // UIImage+RoundedCorner.h 2 | // Created by Trevor Harmon on 9/20/09. 3 | // Free for personal or commercial use, with or without modification. 4 | // No warranty is expressed or implied. 5 | 6 | // Extends the UIImage class to support making rounded corners 7 | @interface UIImage (RoundedCorner) 8 | - (UIImage *)roundedCornerImage:(NSInteger)cornerSize borderSize:(NSInteger)borderSize; 9 | - (void)addRoundedRectToPath:(CGRect)rect context:(CGContextRef)context ovalWidth:(CGFloat)ovalWidth ovalHeight:(CGFloat)ovalHeight; 10 | @end 11 | -------------------------------------------------------------------------------- /Owncloud iOs Client/Utils/ImagenScale/UIImage+Thumbnail.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+Thumbnail.h 3 | // Owncloud iOs Client 4 | // 5 | // Created by Gonzalo Gonzalez on 4/12/15. 6 | // 7 | 8 | /* 9 | Copyright (C) 2016, ownCloud GmbH. 10 | This code is covered by the GNU Public License Version 3. 11 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 12 | You should have received a copy of this license 13 | along with this program. If not, see . 14 | */ 15 | 16 | 17 | 18 | @interface UIImage (Thumbnail) 19 | 20 | - (UIImage *) getThumbnailFromDownloadedImage; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Owncloud iOs ClientTests/ExternalLibraries/OCMock_3.1.5/libOCMock.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/Owncloud iOs ClientTests/ExternalLibraries/OCMock_3.1.5/libOCMock.a -------------------------------------------------------------------------------- /Owncloud iOs ClientTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /automation_Test/config.ini: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #author : ownCloud, Inc. 3 | #description: description 4 | #copyright :Copyright (C) 2015, ownCloud, Inc. This code is covered by the GNU Public License Version 3. For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ You should have received a copy of this license along with this program. If not, see . 5 | #version 1.0 6 | 7 | [nosetests] 8 | verbosity = 2 9 | #Used to display print statements on console 10 | nocapture = 1 11 | #test only some modules with comma seperated values 12 | tests = loginTest.py,createFolderTest, -------------------------------------------------------------------------------- /automation_Test/filesView.py: -------------------------------------------------------------------------------- 1 | 2 | tabBar_class = 'UIATabBar' 3 | cell_class = 'UIATableCell' 4 | 5 | settingsButton_xpath = "//UIAApplication[1]/UIAWindow[1]/UIATabBar[1]/UIAButton[4]" 6 | settingsButton_name = "Settings" 7 | 8 | addButton_name = 'Add' 9 | createFolder_name = 'New folder' 10 | 11 | createFolderTextView_xpath = "//UIAApplication[1]/UIAWindow[3]/UIAAlert[1]/UIAScrollView[1]/UIATableView[1]/UIATableCell[1]/UIATextField[1]" 12 | saveButton_name = 'Save' 13 | 14 | filesTableView_xpath = "//UIAApplication[1]/UIAWindow[1]/UIATableView[1]" 15 | name_attribute = "name" 16 | -------------------------------------------------------------------------------- /automation_Test/helpGuideView.py: -------------------------------------------------------------------------------- 1 | 2 | skipButton_class = 'UIAButton' 3 | skipButton_index = 1 4 | skipButton_name = "Skip" -------------------------------------------------------------------------------- /automation_Test/settingsView.py: -------------------------------------------------------------------------------- 1 | 2 | addNewAccountButton_xpath = "//UIAApplication[1]/UIAWindow[1]/UIATableView[1]/UIATableCell[2]/UIAStaticText[1]" 3 | addNewAccountButton_name = "Add new account" -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | node_modules/ 3 | public/ 4 | build/ 5 | -------------------------------------------------------------------------------- /docs/antora.yml: -------------------------------------------------------------------------------- 1 | name: ios 2 | title: Mobile App for iOS (Legacy) 3 | version: master 4 | start_page: ROOT:index.adoc 5 | nav: 6 | - modules/ROOT/nav.adoc 7 | -------------------------------------------------------------------------------- /docs/books/ownCloud_iOS_App_Manual.adoc: -------------------------------------------------------------------------------- 1 | = ownCloud iOS Application Manual 2 | The ownCloud Team 3 | {revnumber}, {revdate} 4 | :source-highlighter: rouge 5 | :homepage: https://github.com/owncloud/ios 6 | :listing-caption: Listing 7 | :toc: 8 | :toclevels: 1 9 | :icons: font 10 | :icon-set: octicon 11 | 12 | include::modules/ROOT/pages/index.adoc[leveloffset=+1] 13 | -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-bold.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-boldoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-boldoblique.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-condensed.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-condensedbold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-condensedbold.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-condensedboldoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-condensedboldoblique.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-condensedoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-condensedoblique.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-extralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-extralight.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-mono-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-mono-bold.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-mono.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-monoboldoblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-monoboldoblique.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-monooblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-monooblique.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans-oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans-oblique.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavu-sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavu-sans.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserif-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserif-bold.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserif-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserif-bolditalic.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserif-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserif-italic.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserif.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserifcondensed-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserifcondensed-bold.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserifcondensed-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserifcondensed-bolditalic.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserifcondensed-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserifcondensed-italic.ttf -------------------------------------------------------------------------------- /docs/fonts/dejavuserifcondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/dejavuserifcondensed.ttf -------------------------------------------------------------------------------- /docs/fonts/notoserif-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/notoserif-bold.ttf -------------------------------------------------------------------------------- /docs/fonts/notoserif-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/notoserif-bolditalic.ttf -------------------------------------------------------------------------------- /docs/fonts/notoserif-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/notoserif-italic.ttf -------------------------------------------------------------------------------- /docs/fonts/notoserif-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/notoserif-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-bold.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-bolditalic.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-extrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-extrabold.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-extrabolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-extrabolditalic.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-italic.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-light.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-lightitalic.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-semibold.ttf -------------------------------------------------------------------------------- /docs/fonts/opensans-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/fonts/opensans-semibolditalic.ttf -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/attachments/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/attachments/.gitkeep -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-app.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-clear-cache-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-clear-cache-button.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-clear-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-clear-cache.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-downloaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-downloaded.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-editing-a-text-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-editing-a-text-file.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-file-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-file-buttons.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-file-downloaded-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-file-downloaded-file.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-file-squirrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-file-squirrel.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-files-list-with-instant-uploads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-files-list-with-instant-uploads.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-files-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-files-list.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-files.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-instant-upload-file-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-instant-upload-file-list.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-instant-uploads-all-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-instant-uploads-all-disabled.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-instant-uploads-enabled-access-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-instant-uploads-enabled-access-notification.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-instant-uploads-photos-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-instant-uploads-photos-enabled.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-instant-uploads-videos-location-services-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-instant-uploads-videos-location-services-notification.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-settings-more-app-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-settings-more-app-version.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-settings-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-settings-more.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-settings.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-share-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-share-link.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-sharing.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-slider.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-uploads-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-uploads-list.png -------------------------------------------------------------------------------- /docs/modules/ROOT/assets/images/ios-viewing-a-text-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/assets/images/ios-viewing-a-text-file.png -------------------------------------------------------------------------------- /docs/modules/ROOT/examples/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/docs/modules/ROOT/examples/.gitkeep -------------------------------------------------------------------------------- /docs/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- 1 | * xref:index.adoc[Using the iOS App] 2 | * xref:ios_faq.adoc[FAQ] 3 | -------------------------------------------------------------------------------- /docs/site.yml: -------------------------------------------------------------------------------- 1 | site: 2 | title: ownCloud iOS App Documentation 3 | 4 | content: 5 | sources: 6 | - url: ../ 7 | branches: HEAD 8 | start_path: docs/ 9 | 10 | ui: 11 | output_dir: assets 12 | bundle: 13 | snapshot: true 14 | url: https://minio.owncloud.com/documentation/ui-bundle.zip 15 | 16 | output: 17 | clean: true 18 | dir: public 19 | 20 | asciidoc: 21 | attributes: 22 | idprefix: '' 23 | idseparator: '-' 24 | -------------------------------------------------------------------------------- /include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | #define HEADER_EBCDIC_H 5 | 6 | #include 7 | 8 | /* Avoid name clashes with other applications */ 9 | #define os_toascii _openssl_os_toascii 10 | #define os_toebcdic _openssl_os_toebcdic 11 | #define ebcdic2ascii _openssl_ebcdic2ascii 12 | #define ascii2ebcdic _openssl_ascii2ebcdic 13 | 14 | extern const unsigned char os_toascii[256]; 15 | extern const unsigned char os_toebcdic[256]; 16 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 17 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/libcrypto.a -------------------------------------------------------------------------------- /libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owncloud/ios-legacy/0cea1e68d5f2cd93192e1af8e0a48dc7997e3e81/libssl.a -------------------------------------------------------------------------------- /ownCloudExtApp/Cells/DocumentPickerCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // DocumentPickerCell.h 3 | // Owncloud iOs Client 4 | // 5 | // Created by Gonzalo Gonzalez on 5/12/14. 6 | // 7 | // 8 | 9 | #import "CustomCellFileAndDirectory.h" 10 | #import "FFCircularProgressView.h" 11 | 12 | @interface DocumentPickerCell : CustomCellFileAndDirectory 13 | 14 | @property(nonatomic, weak) IBOutlet FFCircularProgressView *circularPV; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ownCloudExtApp/Cells/DocumentPickerCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // DocumentPickerCell.m 3 | // Owncloud iOs Client 4 | // 5 | // Created by Gonzalo Gonzalez on 5/12/14. 6 | // 7 | // 8 | 9 | #import "DocumentPickerCell.h" 10 | 11 | 12 | @implementation DocumentPickerCell 13 | 14 | /* 15 | // Only override drawRect: if you perform custom drawing. 16 | // An empty implementation adversely affects performance during animation. 17 | - (void)drawRect:(CGRect)rect { 18 | // Drawing code 19 | } 20 | */ 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /ownCloudExtApp/ownCloudExtApp.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | com.apple.security.application-groups 8 | 9 | group.com.owncloud.iOSmobileapp 10 | 11 | keychain-access-groups 12 | 13 | $(AppIdentifierPrefix)group.com.owncloud.iOSmobileapp 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /ownCloudExtAppFileProvider/FileProvider.h: -------------------------------------------------------------------------------- 1 | // 2 | // FileProvider.h 3 | // ownCloudExtAppFileProvider 4 | // 5 | // Created by Gonzalo Gonzalez on 14/10/14. 6 | // 7 | 8 | /* 9 | Copyright (C) 2016, ownCloud GmbH. 10 | This code is covered by the GNU Public License Version 3. 11 | For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ 12 | You should have received a copy of this license 13 | along with this program. If not, see . 14 | */ 15 | 16 | #import 17 | #import "FMDatabaseQueue.h" 18 | 19 | @interface FileProvider : NSFileProviderExtension 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /ownCloudExtAppFileProvider/ownCloudExtAppFileProvider.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | com.apple.security.application-groups 8 | 9 | group.com.owncloud.iOSmobileapp 10 | 11 | keychain-access-groups 12 | 13 | $(AppIdentifierPrefix)group.com.owncloud.iOSmobileapp 14 | 15 | 16 | 17 | --------------------------------------------------------------------------------