├── .gitignore ├── .gitlab-ci.yml ├── .mailmap ├── .periphery.yml ├── .swiftlint.yml ├── .tx └── config ├── AUTHORS ├── Buildsystem ├── Fastlane │ ├── Fastfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Gymfile │ ├── Pluginfile │ ├── README.md │ ├── Scanfile │ ├── Snapfile │ ├── SnapshotHelper.swift │ ├── helpers │ │ ├── VLC.rb │ │ └── version.rb │ └── screenshots │ │ ├── Framefile.json │ │ ├── af │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── am │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ar │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ast │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── az │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── background.png │ │ ├── be │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── bg │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── bn │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── br │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── bs │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ca │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── co │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── cs │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── da │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── de │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── el │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── en-GB │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── en │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── es-MX │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── es │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── eu │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── fa │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── fi │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── fo │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── fonts │ │ ├── SF-Pro-Display-Bold.otf │ │ └── SF-Pro-Display-Regular.otf │ │ ├── fr │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── gl │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── he │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── hi │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── hr │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── hu │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── id │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── is │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── it │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ja │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ka │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── kab │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── km │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── kn │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ko │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ku │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── lo │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── lt │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── lv │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ml │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── mr │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ms │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── my │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── nb │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ne │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── nl │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── nn │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── pl │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── pt-BR │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── pt-PT │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ro │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ru │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── sc │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── si │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── sk │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── sl │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── sr-Latn │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── sv │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── ta │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── th │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── tr │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── tt │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── uk │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── vi │ │ ├── keyword.strings │ │ └── title.strings │ │ ├── zh-Hans │ │ ├── keyword.strings │ │ └── title.strings │ │ └── zh-Hant │ │ ├── keyword.strings │ │ └── title.strings ├── SharedConfig.xcconfig ├── Testing │ ├── Screenshots │ │ ├── Info.plist │ │ ├── Screenshot.swift │ │ └── VLC-iOS-Screenshots-Bridging-Header.h │ ├── UI │ │ ├── Helpers │ │ │ ├── TestHelper.swift │ │ │ ├── VLCAccessibilityIdentifier.swift │ │ │ └── XCUIElement+Helpers.swift │ │ ├── Info.plist │ │ └── VLCTestMenu.swift │ └── Unit │ │ ├── Info.plist │ │ ├── PreferenceSettingTests.swift │ │ ├── PreferenceSettingTestsSuccess.plist │ │ └── URLHandlerTests.swift └── Tools │ └── update_strings.py ├── COPYING ├── Documentation ├── CodingStyle.md ├── NEWS.md └── RELEASEHOWTO.md ├── Podfile ├── Podfile.lock ├── README.md ├── Resources ├── Artwork │ ├── AppleTV │ │ ├── Apple TV Icon.sketch │ │ ├── Apple TV LaunchImage.svg │ │ ├── Apple TV Top Shelf.svg │ │ ├── FileAndFolders.sketch │ │ ├── PlayPauseButton.sketch │ │ ├── ServerIcon.png │ │ ├── ServerIcon.sketch │ │ ├── VLC-Server-Icon.sketch │ │ ├── iTunes Icon.png │ │ └── iTunes Icon.svg │ └── readme_banner.png ├── Base.lproj │ └── Localizable.strings ├── PrivacyInfo.xcprivacy ├── af.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── am.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ar.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── be.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── bg.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── br.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── bs.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ca.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── co.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── cs.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── da.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── de.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── el.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── en-GB.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── es-MX.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── es.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── eu.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── fa.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── fi.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── fo.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── fr.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── gl.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── he.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── hu.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── iOS │ ├── Images.xcassets │ │ ├── ActionSheet │ │ │ ├── Contents.json │ │ │ ├── checkmark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── checkmark.png │ │ │ │ ├── checkmark@2x.png │ │ │ │ └── checkmark@3x.png │ │ │ └── disclosureChevron.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── disclosureChevron-rtl.png │ │ │ │ ├── disclosureChevron.png │ │ │ │ ├── disclosureChevron@2x-rtl.png │ │ │ │ ├── disclosureChevron@2x.png │ │ │ │ ├── disclosureChevron@3x-rtl.png │ │ │ │ └── disclosureChevron@3x.png │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon100.png │ │ │ ├── AppIcon1024-1.png │ │ │ ├── AppIcon1024.png │ │ │ ├── AppIcon120-1.png │ │ │ ├── AppIcon120.png │ │ │ ├── AppIcon152.png │ │ │ ├── AppIcon167.png │ │ │ ├── AppIcon172.png │ │ │ ├── AppIcon180.png │ │ │ ├── AppIcon196.png │ │ │ ├── AppIcon20.png │ │ │ ├── AppIcon216.png │ │ │ ├── AppIcon29.png │ │ │ ├── AppIcon40-1.png │ │ │ ├── AppIcon40-2.png │ │ │ ├── AppIcon40.png │ │ │ ├── AppIcon48.png │ │ │ ├── AppIcon55.png │ │ │ ├── AppIcon58-1.png │ │ │ ├── AppIcon58-2.png │ │ │ ├── AppIcon58.png │ │ │ ├── AppIcon60.png │ │ │ ├── AppIcon76.png │ │ │ ├── AppIcon80-1.png │ │ │ ├── AppIcon80-2.png │ │ │ ├── AppIcon80.png │ │ │ ├── AppIcon87-1.png │ │ │ ├── AppIcon87.png │ │ │ ├── AppIcon88.png │ │ │ └── Contents.json │ │ ├── AppIconDev.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon100.png │ │ │ ├── icon102.png │ │ │ ├── icon1024-1.png │ │ │ ├── icon1024.png │ │ │ ├── icon120-1.png │ │ │ ├── icon120.png │ │ │ ├── icon152.png │ │ │ ├── icon167.png │ │ │ ├── icon172.png │ │ │ ├── icon180.png │ │ │ ├── icon196.png │ │ │ ├── icon20.png │ │ │ ├── icon216.png │ │ │ ├── icon234.png │ │ │ ├── icon29.png │ │ │ ├── icon40-1.png │ │ │ ├── icon40-2.png │ │ │ ├── icon40.png │ │ │ ├── icon48.png │ │ │ ├── icon55.png │ │ │ ├── icon58-1.png │ │ │ ├── icon58-2.png │ │ │ ├── icon58.png │ │ │ ├── icon60.png │ │ │ ├── icon66.png │ │ │ ├── icon76.png │ │ │ ├── icon80-1.png │ │ │ ├── icon80-2.png │ │ │ ├── icon80.png │ │ │ ├── icon87-1.png │ │ │ ├── icon87.png │ │ │ ├── icon88.png │ │ │ └── icon92.png │ │ ├── AppIconVisionOS.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Icon-Background-large.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Icon-Foreground-large.png │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── AppIconVisionOSDev.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Icon-Background-large.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Icon-Foreground-large.png │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── CarPlay │ │ │ ├── Contents.json │ │ │ ├── cp-Artist.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_artist_big.svg │ │ │ ├── cp-Genre.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_genre_big.svg │ │ │ ├── cp-Playlist.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_auto_playlist.svg │ │ │ └── cp-Stream.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_menu_stream.svg │ │ ├── CloudController │ │ │ ├── BoxCell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnCloudBox.png │ │ │ │ ├── icnCloudBox@2x.png │ │ │ │ └── icnCloudBox@3x.png │ │ │ ├── Contents.json │ │ │ ├── DriveCell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnCloudGdrive.png │ │ │ │ ├── icnCloudGdrive@2x.png │ │ │ │ └── icnCloudGdrive@3x.png │ │ │ ├── DriveWhite.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DriveWhite.png │ │ │ │ ├── DriveWhite@2x.png │ │ │ │ └── DriveWhite@3x.png │ │ │ ├── DropboxCell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnCloudDropbox.png │ │ │ │ ├── icnCloudDropbox@2x.png │ │ │ │ └── icnCloudDropbox@3x.png │ │ │ ├── OneDriveCell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnCloudOneBox.png │ │ │ │ ├── icnCloudOneBox@2x.png │ │ │ │ └── icnCloudOneBox@3x.png │ │ │ ├── OneDriveWhite.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── OneDriveWhite.png │ │ │ │ ├── OneDriveWhite@2x.png │ │ │ │ └── OneDriveWhite@3x.png │ │ │ ├── audioFile.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── audio-1.png │ │ │ │ ├── audio.png │ │ │ │ ├── audio@2x-1.png │ │ │ │ ├── audio@2x-2.png │ │ │ │ ├── audio@2x.png │ │ │ │ ├── audio@2x~ipad.png │ │ │ │ ├── audio@3x-1.png │ │ │ │ └── audio@3x.png │ │ │ ├── blank.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── blank-1.png │ │ │ │ ├── blank.png │ │ │ │ ├── blank@2x-1.png │ │ │ │ ├── blank@2x-2.png │ │ │ │ ├── blank@2x.png │ │ │ │ ├── blank@2x~ipad.png │ │ │ │ ├── blank@3x-1.png │ │ │ │ └── blank@3x.png │ │ │ ├── dropbox-white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dropbox-white.png │ │ │ │ ├── dropbox-white@2x.png │ │ │ │ └── dropbox-white@3x.png │ │ │ ├── folder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── folder-1.png │ │ │ │ ├── folder.png │ │ │ │ ├── folder@2x-1.png │ │ │ │ ├── folder@2x-2.png │ │ │ │ ├── folder@2x.png │ │ │ │ ├── folder@2x~ipad.png │ │ │ │ ├── folder@3x-1.png │ │ │ │ └── folder@3x.png │ │ │ ├── iCloudCell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iCloud.png │ │ │ │ ├── iCloud@2x.png │ │ │ │ └── iCloud@3x.png │ │ │ ├── iCloudIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnCloud.png │ │ │ │ ├── icnCloud@2x.png │ │ │ │ └── icnCloud@3x.png │ │ │ ├── movie.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── movie-1.png │ │ │ │ ├── movie.png │ │ │ │ ├── movie@2x-1.png │ │ │ │ ├── movie@2x-2.png │ │ │ │ ├── movie@2x.png │ │ │ │ ├── movie@2x~ipad.png │ │ │ │ ├── movie@3x-1.png │ │ │ │ └── movie@3x.png │ │ │ ├── pCloud.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── logo_2x-2.png │ │ │ └── pCloudCell.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pCloudCell.png │ │ │ │ ├── pCloudCell@2x.png │ │ │ │ └── pCloudCell@3x.png │ │ ├── Contents.json │ │ ├── Donation │ │ │ ├── Contents.json │ │ │ ├── dot1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dot1.png │ │ │ │ ├── dot1@2x.png │ │ │ │ └── dot1@3x.png │ │ │ ├── dot2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dot2.png │ │ │ │ ├── dot2@2x.png │ │ │ │ └── dot2@3x.png │ │ │ ├── dot3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dot3.png │ │ │ │ ├── dot3@2x.png │ │ │ │ └── dot3@3x.png │ │ │ └── paypal-color.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── paypal-color.svg │ │ ├── DownloadController │ │ │ ├── Contents.json │ │ │ ├── Downloads.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnDownload.png │ │ │ │ ├── icnDownload@2x.png │ │ │ │ └── icnDownload@3x.png │ │ │ ├── download.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iconDownload.png │ │ │ │ ├── iconDownload@2x.png │ │ │ │ └── iconDownload@3x.png │ │ │ └── flatDeleteButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── flatDeleteButton.png │ │ │ │ ├── flatDeleteButton@2x.png │ │ │ │ └── flatDeleteButton@3x.png │ │ ├── FavoriteController │ │ │ ├── Contents.json │ │ │ ├── heart.fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── heart.fill@1x.png │ │ │ │ ├── heart.fill@2x.png │ │ │ │ └── heart.fill@3x.png │ │ │ └── heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── heart@1x.png │ │ │ │ ├── heart@2x.png │ │ │ │ └── heart@3x.png │ │ ├── FirstSteps │ │ │ ├── Cloud │ │ │ │ ├── Contents.json │ │ │ │ ├── blackCloudiPhone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iPhone 14 dark coulds.png │ │ │ │ │ ├── iPhone 14 dark coulds@2x.png │ │ │ │ │ └── iPhone 14 dark coulds@3x.png │ │ │ │ ├── box.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnCloudBox.png │ │ │ │ │ ├── icnCloudBox@2x.png │ │ │ │ │ └── icnCloudBox@3x.png │ │ │ │ ├── cloudDownload.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Download.png │ │ │ │ │ ├── Download@2x.png │ │ │ │ │ └── Download@3x.png │ │ │ │ ├── dropBox.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnCloudDropbox.png │ │ │ │ │ ├── icnCloudDropbox@2x.png │ │ │ │ │ └── icnCloudDropbox@3x.png │ │ │ │ ├── googleDrive.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnCloudGdrive.png │ │ │ │ │ ├── icnCloudGdrive@2x.png │ │ │ │ │ └── icnCloudGdrive@3x.png │ │ │ │ ├── oneDrive.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnCloudOneBox.png │ │ │ │ │ ├── icnCloudOneBox@2x.png │ │ │ │ │ └── icnCloudOneBox@3x.png │ │ │ │ └── whiteCloudiPhone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iPhone 14 dark coulds.png │ │ │ │ │ ├── iPhone 14 dark coulds@2x.png │ │ │ │ │ └── iPhone 14 dark coulds@3x.png │ │ │ ├── Contents.json │ │ │ ├── Donate │ │ │ │ └── Lunettes.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Lunettes.png │ │ │ │ │ ├── Lunettes@2x.png │ │ │ │ │ └── Lunettes@3x.png │ │ │ ├── Wifi │ │ │ │ ├── Contents.json │ │ │ │ ├── blackiPhone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iPhone 14 (Black).png │ │ │ │ │ ├── iPhone 14 (Black)@2x.png │ │ │ │ │ └── iPhone 14 (Black)@3x.png │ │ │ │ └── whiteiPhone.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iPhone 14 (White).png │ │ │ │ │ ├── iPhone 14 (White)@2x.png │ │ │ │ │ └── iPhone 14 (White)@3x.png │ │ │ └── iTunes │ │ │ │ ├── Contents.json │ │ │ │ ├── cable.imageset │ │ │ │ ├── Cable.png │ │ │ │ ├── Cable@2x.png │ │ │ │ ├── Cable@3x.png │ │ │ │ └── Contents.json │ │ │ │ ├── laptop.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Laptop.png │ │ │ │ ├── Laptop@2x.png │ │ │ │ └── Laptop@3x.png │ │ │ │ └── phone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iPhone.png │ │ │ │ ├── iPhone@2x.png │ │ │ │ └── iPhone@3x.png │ │ ├── LaunchScreen │ │ │ ├── Contents.json │ │ │ └── LaunchCone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchCone.png │ │ │ │ ├── LaunchCone@2x.png │ │ │ │ └── LaunchCone@3x.png │ │ ├── MediaController │ │ │ ├── Contents.json │ │ │ ├── Edit │ │ │ │ ├── Contents.json │ │ │ │ ├── MediaGroups │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── addToMediaGroup.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── addToMediaGroup.pdf │ │ │ │ │ ├── regroupMediaGroups.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── regroupMediaGroup.pdf │ │ │ │ │ └── removeFromMediaGroup.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── removeFromMediaGroup.pdf │ │ │ │ ├── addToPlaylist.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconAddPlaylist-2.png │ │ │ │ │ ├── iconAddPlaylist-3.png │ │ │ │ │ └── iconAddPlaylist.png │ │ │ │ ├── allSelected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icnChecked.pdf │ │ │ │ ├── checkboxEmpty.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── checkbox-empty.png │ │ │ │ │ ├── checkbox-empty@2x.png │ │ │ │ │ └── checkbox-empty@3x.png │ │ │ │ ├── checkboxSelected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── checkbox-selected.png │ │ │ │ │ ├── checkbox-selected@2x.png │ │ │ │ │ └── checkbox-selected@3x.png │ │ │ │ ├── delete.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── delete@2x.png │ │ │ │ │ └── delete@3x.png │ │ │ │ ├── edit.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── rename.png │ │ │ │ │ ├── rename@2x.png │ │ │ │ │ └── rename@3x.png │ │ │ │ ├── emptySelectAll.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icnUnChecked.pdf │ │ │ │ ├── list.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── list.png │ │ │ │ │ ├── list@2x.png │ │ │ │ │ └── list@3x.png │ │ │ │ ├── rename.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnEdit.png │ │ │ │ │ ├── icnEdit@2x.png │ │ │ │ │ └── icnEdit@3x.png │ │ │ │ └── share.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Share.png │ │ │ │ │ ├── Share@2x.png │ │ │ │ │ └── Share@3x.png │ │ │ ├── Sort │ │ │ │ ├── Contents.json │ │ │ │ └── sort.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── sort.png │ │ │ │ │ ├── sort@2x.png │ │ │ │ │ └── sort@3x.png │ │ │ ├── album-placeholder-dark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── album-placeholder-dark.svg │ │ │ ├── album-placeholder-white.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── album-placeholder-white.svg │ │ │ ├── artist-placeholder-dark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── artist-placeholder-dark.svg │ │ │ ├── artist-placeholder-white.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── artist-placeholder-white.svg │ │ │ ├── movie-placeholder-dark.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── moviedark.png │ │ │ │ ├── moviedark@2x.png │ │ │ │ └── moviedark@3x.png │ │ │ ├── movie-placeholder-white.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── moviewhite.png │ │ │ │ ├── moviewhite@2x.png │ │ │ │ └── moviewhite@3x.png │ │ │ ├── no-artwork.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── no-artwork.png │ │ │ │ ├── no-artwork@2x.png │ │ │ │ └── no-artwork@3x.png │ │ │ ├── song-placeholder-dark.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── track-placeholder-dark 1.svg │ │ │ ├── song-placeholder-white.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── track-placeholder-white 1.svg │ │ │ └── tvShow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tvShow.png │ │ │ │ ├── tvShow@2x.png │ │ │ │ ├── tvShow@2x~ipad.png │ │ │ │ └── tvShow~iPad.png │ │ ├── MenuNavigation │ │ │ ├── AboutTitle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── title.png │ │ │ │ ├── title@2x.png │ │ │ │ └── title@3x.png │ │ │ ├── Contents.json │ │ │ ├── EllipseCircle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconCircleEllipse.pdf │ │ │ ├── HistoryClock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── clock.arrow.circlepath.svg │ │ │ ├── Network │ │ │ │ ├── Contents.json │ │ │ │ ├── Local.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Local.png │ │ │ │ │ ├── Local@2x.png │ │ │ │ │ └── Local@3x.png │ │ │ │ ├── WifiIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icnWifi.png │ │ │ │ │ ├── icnWifi@2x.png │ │ │ │ │ └── icnWifi@3x.png │ │ │ │ └── homeLocalFiles.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── iconHome.pdf │ │ │ └── Tab bar │ │ │ │ ├── Audio.imageset │ │ │ │ ├── Audio.png │ │ │ │ ├── Audio@2x.png │ │ │ │ ├── Audio@3x.png │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Network.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Network.png │ │ │ │ ├── Network@2x.png │ │ │ │ └── Network@3x.png │ │ │ │ ├── Playlist.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Playlist.png │ │ │ │ ├── Playlists@2x.png │ │ │ │ └── Playlists@3x.png │ │ │ │ ├── Settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Settings.png │ │ │ │ ├── Settings@2x.png │ │ │ │ └── Settings@3x.png │ │ │ │ └── Video.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Video.png │ │ │ │ ├── Video@2x.png │ │ │ │ └── Video@3x.png │ │ ├── MovieController │ │ │ ├── Contents.json │ │ │ ├── MediaProgressBar │ │ │ │ ├── Contents.json │ │ │ │ ├── sliderThumb.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── thumbSlider.pdf │ │ │ │ └── sliderThumbBig.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── thumbSliderBig.pdf │ │ │ ├── MiniPlayer │ │ │ │ ├── Contents.json │ │ │ │ ├── MiniNext.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── next@1x.png │ │ │ │ │ ├── next@2x.png │ │ │ │ │ └── next@3x.png │ │ │ │ ├── MiniPause.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pause@1x.png │ │ │ │ │ ├── pause@2x.png │ │ │ │ │ └── pause@3x.png │ │ │ │ ├── MiniPlay.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── play@1x.png │ │ │ │ │ ├── play@2x.png │ │ │ │ │ └── play@3x.png │ │ │ │ ├── MiniPrev.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── prev@1x.png │ │ │ │ │ ├── prev@2x.png │ │ │ │ │ └── prev@3x.png │ │ │ │ ├── appendToQueue.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── appendToQueue.png │ │ │ │ │ ├── appendToQueue@2x.png │ │ │ │ │ └── appendToQueue@3x.png │ │ │ │ └── playNextInQueue.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── playNextInQueue.png │ │ │ │ │ ├── playNextInQueue@2x.png │ │ │ │ │ └── playNextInQueue@3x.png │ │ │ ├── OldPlayer │ │ │ │ ├── Contents.json │ │ │ │ ├── More.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── More.png │ │ │ │ │ ├── More@2x.png │ │ │ │ │ └── More@3x.png │ │ │ │ ├── PlayingExternally.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── PlayingExternally@2x~ipad.png │ │ │ │ │ ├── PlayingExternally@2x~iphone.png │ │ │ │ │ ├── PlayingExternally@3x~iphone.png │ │ │ │ │ ├── PlayingExternally~ipad.png │ │ │ │ │ └── PlayingExternally~iphone.png │ │ │ │ ├── audioTrackIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── audioTrackIcon.png │ │ │ │ │ ├── audioTrackIcon@2x.png │ │ │ │ │ └── audioTrackIcon@3x.png │ │ │ │ ├── backIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── backIcon.png │ │ │ │ │ ├── backIcon@2x.png │ │ │ │ │ └── backIcon@3x.png │ │ │ │ ├── chaptersIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chaptersIcon.png │ │ │ │ │ ├── chaptersIcon@2x.png │ │ │ │ │ └── chaptersIcon@3x.png │ │ │ │ ├── equalizerIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── equalizerIcon.png │ │ │ │ │ ├── equalizerIcon@2x.png │ │ │ │ │ └── equalizerIcon@3x.png │ │ │ │ ├── forwardIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── forwardIcon.png │ │ │ │ │ ├── forwardIcon@2x.png │ │ │ │ │ └── forwardIcon@3x.png │ │ │ │ ├── iconAirplay.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconAirplay.png │ │ │ │ │ ├── iconAirplay@2x.png │ │ │ │ │ └── iconAirplay@3x.png │ │ │ │ ├── iconChevron.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconChevron.png │ │ │ │ │ ├── iconChevron@2x.png │ │ │ │ │ └── iconChevron@3x.png │ │ │ │ ├── lock.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── lock@2x.png │ │ │ │ │ └── lock@3x.png │ │ │ │ ├── no-repeat.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── no-repeat.png │ │ │ │ │ ├── no-repeat@2x.png │ │ │ │ │ └── no-repeat@3x.png │ │ │ │ ├── pauseIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pauseIcon.png │ │ │ │ │ ├── pauseIcon@2x.png │ │ │ │ │ └── pauseIcon@3x.png │ │ │ │ ├── playIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── playIcon.png │ │ │ │ │ ├── playIcon@2x.png │ │ │ │ │ └── playIcon@3x.png │ │ │ │ ├── ratioIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ratioIcon.png │ │ │ │ │ ├── ratioIcon@2x.png │ │ │ │ │ └── ratioIcon@3x.png │ │ │ │ ├── repeat.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── repeat.png │ │ │ │ │ ├── repeat@2x.png │ │ │ │ │ └── repeat@3x.png │ │ │ │ ├── repeatOne.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── repeatOne.png │ │ │ │ │ ├── repeatOne@2x.png │ │ │ │ │ └── repeatOne@3x.png │ │ │ │ ├── resetIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── resetIcon.png │ │ │ │ │ ├── resetIcon@2x.png │ │ │ │ │ └── resetIcon@3x.png │ │ │ │ ├── shuffle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── shuffle.pdf │ │ │ │ ├── sliderKnob.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── modernSliderKnob.png │ │ │ │ │ ├── modernSliderKnob@2x.png │ │ │ │ │ └── modernSliderKnob@3x.png │ │ │ │ ├── speedIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── speedIcon.png │ │ │ │ │ ├── speedIcon@2x.png │ │ │ │ │ └── speedIcon@3x.png │ │ │ │ ├── stopIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── stop.png │ │ │ │ │ ├── stop@2x.png │ │ │ │ │ └── stop@3x.png │ │ │ │ └── videoEffectsIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── videoEffectsIcon.png │ │ │ │ │ ├── videoEffectsIcon@2x.png │ │ │ │ │ └── videoEffectsIcon@3x.png │ │ │ ├── Renderer │ │ │ │ ├── Contents.json │ │ │ │ ├── renderer.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── renderer.png │ │ │ │ │ ├── renderer@2x.png │ │ │ │ │ └── renderer@3x.png │ │ │ │ └── rendererFull.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── renderer_full.png │ │ │ │ │ ├── renderer_full@2x.png │ │ │ │ │ └── renderer_full@3x.png │ │ │ └── minimizePlayback.imageset │ │ │ │ ├── Arrow_15x05.png │ │ │ │ ├── Arrow_30x10.png │ │ │ │ ├── Arrow_45x15.png │ │ │ │ └── Contents.json │ │ ├── NetworkController │ │ │ ├── Contents.json │ │ │ ├── OpenNetStream.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icnStreaming.png │ │ │ │ ├── icnStreaming@2x.png │ │ │ │ └── icnStreaming@3x.png │ │ │ ├── PlexServerIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PlexServerIcon@1x.png │ │ │ │ ├── PlexServerIcon@2x.png │ │ │ │ └── PlexServerIcon@3x.png │ │ │ ├── iconCheckbox-checked.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconCheckbox-checked-2.pdf │ │ │ ├── iconCheckbox-empty.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconCheckbox-emtpy-2.pdf │ │ │ ├── serverIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ic_server 1.svg │ │ │ │ └── ic_server.svg │ │ │ └── vlc-sharing.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── menuCone.png │ │ │ │ ├── menuCone@2x.png │ │ │ │ └── menuCone@3x.png │ │ ├── NewPlayer │ │ │ ├── Contents.json │ │ │ ├── Equalizer │ │ │ │ ├── Contents.json │ │ │ │ ├── chevronDown.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevron.down.svg │ │ │ │ ├── chevronUp.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chevron.up.svg │ │ │ │ └── iconUndo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── iconUndo.pdf │ │ │ ├── ExternallyPlaying.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playingExternally.pdf │ │ │ ├── MoreOptionsActionSheet │ │ │ │ ├── Contents.json │ │ │ │ ├── equalizer.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── equalizer.png │ │ │ │ │ ├── equalizer@2x.png │ │ │ │ │ └── equalizer@3x.png │ │ │ │ ├── filter.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── filter.png │ │ │ │ │ ├── filter@2x.png │ │ │ │ │ └── filter@3x.png │ │ │ │ └── playback.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── playbackSpeed.png │ │ │ │ │ ├── playbackSpeed@2x.png │ │ │ │ │ └── playbackSpeed@3x.png │ │ │ ├── NavigationBar │ │ │ │ ├── Contents.json │ │ │ │ ├── airplay-audio.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── airplay-audio.pdf │ │ │ │ ├── close.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── close.pdf │ │ │ │ └── minimize.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── minimize.pdf │ │ │ ├── VideoPlayerControls │ │ │ │ ├── Contents.json │ │ │ │ ├── next-media.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── next-media.pdf │ │ │ │ ├── pause-circle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── pause-circle.pdf │ │ │ │ ├── play-circle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── play-circle.pdf │ │ │ │ └── previous-media.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── previous-media.pdf │ │ │ ├── VideoPlayerMainControl │ │ │ │ ├── Contents.json │ │ │ │ ├── iconNextVideo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconNextVideo.png │ │ │ │ │ ├── iconNextVideo@2x.png │ │ │ │ │ └── iconNextVideo@3x.png │ │ │ │ ├── iconPause.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconPause.png │ │ │ │ │ ├── iconPause@2x.png │ │ │ │ │ └── iconPause@3x.png │ │ │ │ ├── iconPauseLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── pause_large_36 1.svg │ │ │ │ │ ├── pause_large_36 2.svg │ │ │ │ │ └── pause_large_36.svg │ │ │ │ ├── iconPlay.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconPlay.png │ │ │ │ │ ├── iconPlay@2x.png │ │ │ │ │ └── iconPlay@3x.png │ │ │ │ ├── iconPlayLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── play_large_36 1.svg │ │ │ │ │ ├── play_large_36 2.svg │ │ │ │ │ └── play_large_36.svg │ │ │ │ ├── iconPreviousVideo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconPreviousVideo.png │ │ │ │ │ ├── iconPreviousVideo@2x.png │ │ │ │ │ └── iconPreviousVideo@3x.png │ │ │ │ ├── iconSkipBack.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconSkipBack.png │ │ │ │ │ ├── iconSkipBack@2x.png │ │ │ │ │ └── iconSkipBack@3x.png │ │ │ │ └── iconSkipForward.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconSkipForward.png │ │ │ │ │ ├── iconSkipForward@2x.png │ │ │ │ │ └── iconSkipForward@3x.png │ │ │ ├── VideoPlayerSubControl │ │ │ │ ├── Contents.json │ │ │ │ ├── abRepeat.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_repeat_ab_1.svg │ │ │ │ ├── abRepeatMarker.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_repeat_ab_marker_2.svg │ │ │ │ ├── abRepeatMarkerFill.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_repeat_ab_marker_1.svg │ │ │ │ ├── add-bookmark-at.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── add-bookmark-at.pdf │ │ │ │ ├── add-bookmark.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── add-bookmark.pdf │ │ │ │ ├── aspectRatio.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── aspectratio.svg │ │ │ │ ├── bookmarks.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_chapter.pdf │ │ │ │ ├── chapters.symbolset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── chapters.svg │ │ │ │ ├── iconExpand.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconExpand.png │ │ │ │ │ ├── iconExpand@2x.png │ │ │ │ │ └── iconExpand@3x.png │ │ │ │ ├── iconMoreOptions.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── moreWhite-new.png │ │ │ │ │ ├── moreWhite-new@2x.png │ │ │ │ │ └── moreWhite-new@3x.png │ │ │ │ ├── iconNoRepeat.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconNoRepeat.png │ │ │ │ │ ├── iconNoRepeat@2x.png │ │ │ │ │ └── iconNoRepeat@3x.png │ │ │ │ ├── iconReduce.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── fullscreenIcon.png │ │ │ │ │ ├── fullscreenIcon@2x.png │ │ │ │ │ └── fullscreenIcon@3x.png │ │ │ │ ├── iconRepeat.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── repeat 1.svg │ │ │ │ │ ├── repeat 2.svg │ │ │ │ │ └── repeat.svg │ │ │ │ ├── iconRepeatLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── repeat_large.svg │ │ │ │ ├── iconRepeatOnLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── repeat_large_on.svg │ │ │ │ ├── iconRepeatOne.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── repeat_one 1.svg │ │ │ │ │ ├── repeat_one 2.svg │ │ │ │ │ └── repeat_one.svg │ │ │ │ ├── iconRepeatOneOnLarge.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── repeat_large_one_on.svg │ │ │ │ ├── iconSubtitle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── subtitlesIcon-new.png │ │ │ │ │ ├── subtitlesIcon-new@2x.png │ │ │ │ │ └── subtitlesIcon-new@3x.png │ │ │ │ ├── interfaceLock.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── iconLock.png │ │ │ │ │ ├── iconLock@2x.png │ │ │ │ │ └── iconLock@3x.png │ │ │ │ └── sleepTimer.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── sleepTimer.pdf │ │ │ ├── brightnessHigh.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_brightness_high.pdf │ │ │ ├── brightnessLow.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_brightness_low.pdf │ │ │ ├── brightnessMedium.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_brightness_medium.pdf │ │ │ ├── highSound.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_volume_high.pdf │ │ │ ├── iconNoShuffle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconNoShuffle.pdf │ │ │ ├── iconShuffle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconShuffle.pdf │ │ │ ├── iconShuffleLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shuffle_large.svg │ │ │ ├── iconShuffleOnLarge.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── shuffle_large_on.svg │ │ │ ├── lowSound.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_volume_low.pdf │ │ │ ├── mediumSound.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_volume.pdf │ │ │ ├── noSound.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_volume_mute.pdf │ │ │ ├── pip.enter.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pip.enter.24x24.png │ │ │ │ ├── pip.enter.24x24@2x.png │ │ │ │ └── pip.enter.24x24@3x.png │ │ │ ├── pip.exit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pip.exit.24x24.png │ │ │ │ ├── pip.exit.24x24@2x.png │ │ │ │ └── pip.exit.24x24@3x.png │ │ │ ├── play-queue.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── play-queue.png │ │ │ │ ├── play-queue@2x.png │ │ │ │ └── play-queue@3x.png │ │ │ ├── play.fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── play.fill.png │ │ │ │ ├── play.fill@2x.png │ │ │ │ └── play.fill@3x.png │ │ │ ├── rectangle.landscape.rotate.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── rectangle.landscape.rotate.png │ │ │ │ ├── rectangle.landscape.rotate@2x.png │ │ │ │ └── rectangle.landscape.rotate@3x.png │ │ │ └── reset.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── iconPreset.pdf │ │ ├── OpenInActivityIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── OpenInActivityIcon.png │ │ │ └── OpenInActivityIcon@2x.png │ │ ├── PauseAnimation │ │ │ ├── Contents.json │ │ │ ├── pause-animation-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-1.svg │ │ │ ├── pause-animation-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-2.svg │ │ │ ├── pause-animation-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-3.svg │ │ │ ├── pause-animation-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-4.svg │ │ │ ├── pause-animation-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-5.svg │ │ │ ├── pause-animation-6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-6.svg │ │ │ ├── pause-animation-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-7.svg │ │ │ └── pause-animation-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pause-animation-8.svg │ │ ├── PlayingAnimation │ │ │ ├── Contents.json │ │ │ ├── playing-animation-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-1.svg │ │ │ ├── playing-animation-10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-10.svg │ │ │ ├── playing-animation-11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-11.svg │ │ │ ├── playing-animation-12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-12.svg │ │ │ ├── playing-animation-13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-13.svg │ │ │ ├── playing-animation-14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-14.svg │ │ │ ├── playing-animation-15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-15.svg │ │ │ ├── playing-animation-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-2.svg │ │ │ ├── playing-animation-3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-3.svg │ │ │ ├── playing-animation-4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-4.svg │ │ │ ├── playing-animation-5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-5.svg │ │ │ ├── playing-animation-6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-6.svg │ │ │ ├── playing-animation-7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-7.svg │ │ │ ├── playing-animation-8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-8.svg │ │ │ └── playing-animation-9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── playing-animation-9.svg │ │ ├── TVBroadcastIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── TVBroadcastIcon.png │ │ │ ├── TVBroadcastIcon@2x.png │ │ │ ├── TVBroadcastIcon@2x~ipad.png │ │ │ ├── TVBroadcastIcon@3x.png │ │ │ └── TVBroadcastIcon~ipad.png │ │ └── vlc-xmas.imageset │ │ │ ├── Contents.json │ │ │ ├── vlc-xmas.png │ │ │ ├── vlc-xmas@2x.png │ │ │ └── vlc-xmas@3x.png │ ├── Info.plist │ ├── Launch Screen.storyboard │ ├── Settings.bundle │ │ ├── Root.inApp.plist │ │ ├── Root.plist │ │ ├── af.lproj │ │ │ └── Root.strings │ │ ├── am.lproj │ │ │ └── Root.strings │ │ ├── ar.lproj │ │ │ └── Root.strings │ │ ├── be.lproj │ │ │ └── Root.strings │ │ ├── bg.lproj │ │ │ └── Root.strings │ │ ├── br.lproj │ │ │ └── Root.strings │ │ ├── bs.lproj │ │ │ └── Root.strings │ │ ├── ca.lproj │ │ │ └── Root.strings │ │ ├── co.lproj │ │ │ └── Root.strings │ │ ├── cs.lproj │ │ │ └── Root.strings │ │ ├── da.lproj │ │ │ └── Root.strings │ │ ├── de.lproj │ │ │ └── Root.strings │ │ ├── el.lproj │ │ │ └── Root.strings │ │ ├── en-GB.lproj │ │ │ └── Root.strings │ │ ├── en.lproj │ │ │ └── Root.strings │ │ ├── es-MX.lproj │ │ │ └── Root.strings │ │ ├── es.lproj │ │ │ └── Root.strings │ │ ├── eu.lproj │ │ │ └── Root.strings │ │ ├── fa.lproj │ │ │ └── Root.strings │ │ ├── fi.lproj │ │ │ └── Root.strings │ │ ├── fo.lproj │ │ │ └── Root.strings │ │ ├── fr.lproj │ │ │ └── Root.strings │ │ ├── gl.lproj │ │ │ └── Root.strings │ │ ├── he.lproj │ │ │ └── Root.strings │ │ ├── hu.lproj │ │ │ └── Root.strings │ │ ├── id.lproj │ │ │ └── Root.strings │ │ ├── is.lproj │ │ │ └── Root.strings │ │ ├── it.lproj │ │ │ └── Root.strings │ │ ├── ja.lproj │ │ │ └── Root.strings │ │ ├── ka.lproj │ │ │ └── Root.strings │ │ ├── kab.lproj │ │ │ └── Root.strings │ │ ├── km.lproj │ │ │ └── Root.strings │ │ ├── ko.lproj │ │ │ └── Root.strings │ │ ├── lo.lproj │ │ │ └── Root.strings │ │ ├── lt.lproj │ │ │ └── Root.strings │ │ ├── lv.lproj │ │ │ └── Root.strings │ │ ├── ml.lproj │ │ │ └── Root.strings │ │ ├── mr.lproj │ │ │ └── Root.strings │ │ ├── ms.lproj │ │ │ └── Root.strings │ │ ├── my.lproj │ │ │ └── Root.strings │ │ ├── nb.lproj │ │ │ └── Root.strings │ │ ├── ne.lproj │ │ │ └── Root.strings │ │ ├── nl.lproj │ │ │ └── Root.strings │ │ ├── nn.lproj │ │ │ └── Root.strings │ │ ├── pl.lproj │ │ │ └── Root.strings │ │ ├── pt-BR.lproj │ │ │ └── Root.strings │ │ ├── pt-PT.lproj │ │ │ └── Root.strings │ │ ├── ro.lproj │ │ │ └── Root.strings │ │ ├── ru.lproj │ │ │ └── Root.strings │ │ ├── sc.lproj │ │ │ └── Root.strings │ │ ├── si.lproj │ │ │ └── Root.strings │ │ ├── sk.lproj │ │ │ └── Root.strings │ │ ├── sl.lproj │ │ │ └── Root.strings │ │ ├── sr.lproj │ │ │ └── Root.strings │ │ ├── sv.lproj │ │ │ └── Root.strings │ │ ├── ta.lproj │ │ │ └── Root.strings │ │ ├── th.lproj │ │ │ └── Root.strings │ │ ├── tr.lproj │ │ │ └── Root.strings │ │ ├── tt.lproj │ │ │ └── Root.strings │ │ ├── uk.lproj │ │ │ └── Root.strings │ │ ├── zh-Hans.lproj │ │ │ └── Root.strings │ │ └── zh-Hant.lproj │ │ │ └── Root.strings │ ├── VLC.entitlements │ ├── VLCCone512x512.png │ ├── af.lproj │ │ └── AppIntentVocabulary.plist │ ├── ar.lproj │ │ └── AppIntentVocabulary.plist │ ├── be.lproj │ │ └── AppIntentVocabulary.plist │ ├── br.lproj │ │ └── AppIntentVocabulary.plist │ ├── bs.lproj │ │ └── AppIntentVocabulary.plist │ ├── ca.lproj │ │ └── AppIntentVocabulary.plist │ ├── co.lproj │ │ └── AppIntentVocabulary.plist │ ├── cs.lproj │ │ └── AppIntentVocabulary.plist │ ├── da.lproj │ │ └── AppIntentVocabulary.plist │ ├── de.lproj │ │ └── AppIntentVocabulary.plist │ ├── el.lproj │ │ └── AppIntentVocabulary.plist │ ├── en-GB.lproj │ │ └── AppIntentVocabulary.plist │ ├── en.lproj │ │ └── AppIntentVocabulary.plist │ ├── es-MX.lproj │ │ └── AppIntentVocabulary.plist │ ├── es.lproj │ │ └── AppIntentVocabulary.plist │ ├── eu.lproj │ │ └── AppIntentVocabulary.plist │ ├── fa.lproj │ │ └── AppIntentVocabulary.plist │ ├── fi.lproj │ │ └── AppIntentVocabulary.plist │ ├── fo.lproj │ │ └── AppIntentVocabulary.plist │ ├── fr.lproj │ │ └── AppIntentVocabulary.plist │ ├── gl.lproj │ │ └── AppIntentVocabulary.plist │ ├── he.lproj │ │ └── AppIntentVocabulary.plist │ ├── hu.lproj │ │ └── AppIntentVocabulary.plist │ ├── id.lproj │ │ └── AppIntentVocabulary.plist │ ├── is.lproj │ │ └── AppIntentVocabulary.plist │ ├── it.lproj │ │ └── AppIntentVocabulary.plist │ ├── ja.lproj │ │ └── AppIntentVocabulary.plist │ ├── ka.lproj │ │ └── AppIntentVocabulary.plist │ ├── km.lproj │ │ └── AppIntentVocabulary.plist │ ├── ko.lproj │ │ └── AppIntentVocabulary.plist │ ├── lv.lproj │ │ └── AppIntentVocabulary.plist │ ├── mr.lproj │ │ └── AppIntentVocabulary.plist │ ├── ms.lproj │ │ └── AppIntentVocabulary.plist │ ├── nb.lproj │ │ └── AppIntentVocabulary.plist │ ├── nl.lproj │ │ └── AppIntentVocabulary.plist │ ├── pl.lproj │ │ └── AppIntentVocabulary.plist │ ├── pt-BR.lproj │ │ └── AppIntentVocabulary.plist │ ├── pt-PT.lproj │ │ └── AppIntentVocabulary.plist │ ├── ro.lproj │ │ └── AppIntentVocabulary.plist │ ├── ru.lproj │ │ └── AppIntentVocabulary.plist │ ├── sc.lproj │ │ └── AppIntentVocabulary.plist │ ├── si.lproj │ │ └── AppIntentVocabulary.plist │ ├── sk.lproj │ │ └── AppIntentVocabulary.plist │ ├── sl.lproj │ │ └── AppIntentVocabulary.plist │ ├── sv.lproj │ │ └── AppIntentVocabulary.plist │ ├── ta.lproj │ │ └── AppIntentVocabulary.plist │ ├── th.lproj │ │ └── AppIntentVocabulary.plist │ ├── tr.lproj │ │ └── AppIntentVocabulary.plist │ ├── uk.lproj │ │ └── AppIntentVocabulary.plist │ ├── zh-Hans.lproj │ │ └── AppIntentVocabulary.plist │ └── zh-Hant.lproj │ │ └── AppIntentVocabulary.plist ├── id.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── is.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── it.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ja.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ka.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── kab.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── km.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ko.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── lo.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── lt.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── lv.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ml.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── mr.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ms.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── my.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── nb.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ne.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── nl.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── nn.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── pl.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── pt-BR.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── pt-PT.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ro.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ru.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── sc.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── si.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── sk.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── sl.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── sv.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── ta.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── th.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── tr.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── tt.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── tvOS │ ├── Images.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Icon-Background-large.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Icon-Foreground-large.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-Background.png │ │ │ │ │ │ └── Icon-Background@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-Foreground.png │ │ │ │ │ │ └── Icon-Foreground@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf Wide@2x.png │ │ │ │ └── TopShelf_wide.png │ │ │ └── Top Shelf Image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Top Shelf@2x.png │ │ │ │ └── TopShelf.png │ │ ├── Cloud Icons │ │ │ ├── Box.imageset │ │ │ │ ├── Box@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Dropbox.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Dropbox@3x.png │ │ │ └── OneDrive.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── OneDrive@3x.png │ │ ├── Contents.json │ │ ├── FavoriteController │ │ │ ├── Contents.json │ │ │ ├── heart.fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_heart_fill_big.svg │ │ │ └── heart.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_heart_big.svg │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── launch-screen.png │ │ │ └── launch-screen@2x.png │ │ ├── NetworkBrowsing │ │ │ ├── Contents.json │ │ │ ├── PlexServerIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PlexServerIcon.png │ │ │ │ └── PlexServerIcon@2x.png │ │ │ ├── WifiIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Wi-Fi.png │ │ │ │ └── Wi-Fi@2x.png │ │ │ ├── audioFile.imageset │ │ │ │ ├── Audio.png │ │ │ │ ├── Audio@2x.png │ │ │ │ └── Contents.json │ │ │ ├── blank.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Doc.png │ │ │ │ └── Doc@2x.png │ │ │ ├── cone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-Foreground.png │ │ │ │ └── Icon-Foreground@2x.png │ │ │ ├── folder.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Folder.png │ │ │ │ └── Folder@2x.png │ │ │ ├── movie.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Movie.png │ │ │ │ └── Movie@2x.png │ │ │ ├── serverIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_server_big.svg │ │ │ ├── vlc-sharing.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ic_server_add_big.svg │ │ │ └── xmas-cone.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── atv-xmas-cone.png │ │ │ │ └── atv-xmas-cone@2x.png │ │ ├── OSO.imageset │ │ │ ├── Contents.json │ │ │ └── logo-transparent.png │ │ ├── PlayPauseRemoteButton.imageset │ │ │ ├── Contents.json │ │ │ └── PlayPauseButton.pdf │ │ ├── TMDb.imageset │ │ │ ├── Contents.json │ │ │ ├── powered-by-rectangle-green.png │ │ │ └── powered-by-rectangle-green@2x.png │ │ ├── TransportBar │ │ │ ├── Contents.json │ │ │ ├── NowPlayingFastForward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NowPlayingFastForward.png │ │ │ ├── NowPlayingSkip10Backward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NowPlayingSkip10Backward.png │ │ │ └── NowPlayingSkip10Forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NowPlayingSkip10Forward.png │ │ ├── about-app-icon.imageset │ │ │ ├── About Icon.png │ │ │ └── Contents.json │ │ └── deleteImage.imageset │ │ │ ├── Contents.json │ │ │ ├── delete@2x.png │ │ │ └── delete@3x.png │ ├── Info.plist │ ├── Settings.bundle │ │ ├── Root.inApp.plist │ │ ├── Root.plist │ │ ├── af.lproj │ │ │ └── Root.strings │ │ ├── am.lproj │ │ │ └── Root.strings │ │ ├── ar.lproj │ │ │ └── Root.strings │ │ ├── be.lproj │ │ │ └── Root.strings │ │ ├── bg.lproj │ │ │ └── Root.strings │ │ ├── br.lproj │ │ │ └── Root.strings │ │ ├── bs.lproj │ │ │ └── Root.strings │ │ ├── ca.lproj │ │ │ └── Root.strings │ │ ├── co.lproj │ │ │ └── Root.strings │ │ ├── cs.lproj │ │ │ └── Root.strings │ │ ├── da.lproj │ │ │ └── Root.strings │ │ ├── de.lproj │ │ │ └── Root.strings │ │ ├── el.lproj │ │ │ └── Root.strings │ │ ├── en-GB.lproj │ │ │ └── Root.strings │ │ ├── en.lproj │ │ │ └── Root.strings │ │ ├── es-MX.lproj │ │ │ └── Root.strings │ │ ├── es.lproj │ │ │ └── Root.strings │ │ ├── eu.lproj │ │ │ └── Root.strings │ │ ├── fa.lproj │ │ │ └── Root.strings │ │ ├── fi.lproj │ │ │ └── Root.strings │ │ ├── fo.lproj │ │ │ └── Root.strings │ │ ├── fr.lproj │ │ │ └── Root.strings │ │ ├── gl.lproj │ │ │ └── Root.strings │ │ ├── he.lproj │ │ │ └── Root.strings │ │ ├── hu.lproj │ │ │ └── Root.strings │ │ ├── id.lproj │ │ │ └── Root.strings │ │ ├── is.lproj │ │ │ └── Root.strings │ │ ├── it.lproj │ │ │ └── Root.strings │ │ ├── ja.lproj │ │ │ └── Root.strings │ │ ├── ka.lproj │ │ │ └── Root.strings │ │ ├── kab.lproj │ │ │ └── Root.strings │ │ ├── km.lproj │ │ │ └── Root.strings │ │ ├── ko.lproj │ │ │ └── Root.strings │ │ ├── lo.lproj │ │ │ └── Root.strings │ │ ├── lt.lproj │ │ │ └── Root.strings │ │ ├── lv.lproj │ │ │ └── Root.strings │ │ ├── ml.lproj │ │ │ └── Root.strings │ │ ├── mr.lproj │ │ │ └── Root.strings │ │ ├── ms.lproj │ │ │ └── Root.strings │ │ ├── my.lproj │ │ │ └── Root.strings │ │ ├── nb.lproj │ │ │ └── Root.strings │ │ ├── ne.lproj │ │ │ └── Root.strings │ │ ├── nl.lproj │ │ │ └── Root.strings │ │ ├── nn.lproj │ │ │ └── Root.strings │ │ ├── pl.lproj │ │ │ └── Root.strings │ │ ├── pt-BR.lproj │ │ │ └── Root.strings │ │ ├── pt-PT.lproj │ │ │ └── Root.strings │ │ ├── ro.lproj │ │ │ └── Root.strings │ │ ├── ru.lproj │ │ │ └── Root.strings │ │ ├── sc.lproj │ │ │ └── Root.strings │ │ ├── si.lproj │ │ │ └── Root.strings │ │ ├── sk.lproj │ │ │ └── Root.strings │ │ ├── sl.lproj │ │ │ └── Root.strings │ │ ├── sr.lproj │ │ │ └── Root.strings │ │ ├── sv.lproj │ │ │ └── Root.strings │ │ ├── ta.lproj │ │ │ └── Root.strings │ │ ├── th.lproj │ │ │ └── Root.strings │ │ ├── tr.lproj │ │ │ └── Root.strings │ │ ├── tt.lproj │ │ │ └── Root.strings │ │ ├── uk.lproj │ │ │ └── Root.strings │ │ ├── zh-Hans.lproj │ │ │ └── Root.strings │ │ └── zh-Hant.lproj │ │ │ └── Root.strings │ └── VLC.entitlements ├── uk.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── watchOS │ └── Assets.xcassets │ │ ├── AccentColor.colorset │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ ├── AppIcon1024-1.png │ │ └── Contents.json │ │ ├── AppIconDev.appiconset │ │ ├── Contents.json │ │ └── icon1024.png │ │ └── Contents.json ├── web │ ├── favicon.ico │ ├── gradient-cell.png │ ├── iOS │ │ └── index.html │ ├── jquery.fileupload.js │ ├── jquery.iframe-transport.js │ ├── jquery.ui.widget.js │ ├── libMediaVLC.xml │ ├── main.js │ ├── public │ │ ├── Raleway.woff │ │ ├── auth.css │ │ ├── auth.html │ │ ├── auth.js │ │ ├── common.css │ │ ├── jquery-1.10.1.min.js │ │ ├── playerControl.css │ │ └── playerControl.js │ ├── style.css │ ├── tvOS │ │ └── index.html │ ├── web-download-fixed.png │ ├── web-download.png │ ├── web-open-fixed.png │ └── web-open.png ├── zh-Hans.lproj │ ├── InfoPlist.strings │ └── Localizable.strings └── zh-Hant.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── Sources ├── About │ ├── AboutController.swift │ ├── VLCAboutViewController.h │ ├── VLCAboutViewController.m │ ├── VLCAboutViewController.xib │ ├── iOS │ │ └── About Contents.html │ └── tvOS │ │ └── About Contents.html ├── App │ ├── iOS │ │ ├── PlayMediaIntent.swift │ │ ├── SirikitIntentCoordinator.swift │ │ ├── TabBarCoordinator.swift │ │ ├── VLCAppCoordinator.h │ │ ├── VLCAppCoordinator.m │ │ ├── VLCAppDelegate.h │ │ ├── VLCAppDelegate.m │ │ ├── VLCAppSceneDelegate.h │ │ ├── VLCAppSceneDelegate.m │ │ ├── VLCNonInteractiveWindowSceneDelegate.h │ │ ├── VLCNonInteractiveWindowSceneDelegate.m │ │ └── main.m │ ├── tvOS │ │ ├── AppleTVAppDelegate.h │ │ ├── AppleTVAppDelegate.m │ │ ├── VLCAppCoordinator.m │ │ └── main.m │ └── watchOS │ │ ├── ContentView.swift │ │ ├── CustomDialogProvider │ │ ├── CustomSwiftUIDialogBridge.swift │ │ ├── CustomSwiftUIDialogProvider.swift │ │ └── View+CustomDialog.swift │ │ ├── VLCAppCoordinator.m │ │ └── VLCWatchOSApp.swift ├── CarPlay │ ├── CPListTemplate+Genres.h │ ├── CPListTemplate+Genres.m │ ├── CPListTemplate+NetworkStreams.h │ ├── CPListTemplate+NetworkStreams.m │ ├── CarPlayMediaLibraryObserver.swift │ ├── VLCCarPlayArtistsController.h │ ├── VLCCarPlayArtistsController.m │ ├── VLCCarPlayPlaylistsController.h │ ├── VLCCarPlayPlaylistsController.m │ ├── VLCCarPlaySceneDelegate.h │ ├── VLCCarPlaySceneDelegate.m │ ├── VLCNowPlayingTemplateObserver.h │ └── VLCNowPlayingTemplateObserver.m ├── Cloud │ ├── Content List │ │ ├── Cells │ │ │ ├── VLCCloudStorageTableViewCell.h │ │ │ ├── VLCCloudStorageTableViewCell.m │ │ │ └── VLCCloudStorageTableViewCell.xib │ │ └── View Controller │ │ │ ├── VLCCloudStorageTableViewController.h │ │ │ ├── VLCCloudStorageTableViewController.m │ │ │ └── VLCCloudStorageTableViewController.xib │ ├── Document Picker │ │ ├── VLCDocumentPickerController.h │ │ └── VLCDocumentPickerController.m │ ├── Services List │ │ ├── VLCCloudServiceCell.h │ │ ├── VLCCloudServiceCell.m │ │ ├── VLCCloudServiceCell.xib │ │ ├── VLCCloudServicesTableViewController.h │ │ ├── VLCCloudServicesTableViewController.m │ │ └── VLCCloudServicesTableViewController.xib │ └── Services │ │ ├── Box │ │ ├── VLCBoxConstants.h │ │ ├── VLCBoxController.h │ │ ├── VLCBoxController.m │ │ ├── VLCBoxTableViewController.h │ │ └── VLCBoxTableViewController.m │ │ ├── Dropbox │ │ ├── VLCDropboxConstants.h │ │ ├── VLCDropboxController.h │ │ ├── VLCDropboxController.m │ │ ├── VLCDropboxTableViewController.h │ │ └── VLCDropboxTableViewController.m │ │ ├── Google Drive │ │ ├── GoogleSignInAuthenticator.swift │ │ ├── VLCGoogleDriveConstants.h │ │ ├── VLCGoogleDriveController.h │ │ ├── VLCGoogleDriveController.m │ │ ├── VLCGoogleDriveTableViewController.h │ │ └── VLCGoogleDriveTableViewController.m │ │ ├── OneDrive │ │ ├── VLCOneDriveConstants.h │ │ ├── VLCOneDriveController.h │ │ ├── VLCOneDriveController.m │ │ ├── VLCOneDriveTableViewController.h │ │ └── VLCOneDriveTableViewController.m │ │ ├── PCloud │ │ ├── VLCPCloudConstants.h │ │ ├── VLCPCloudContentWrapper.swift │ │ ├── VLCPCloudController.swift │ │ └── VLCPCloudViewController.swift │ │ ├── VLCCloudSortingSpecifierManager.swift │ │ ├── VLCCloudStorageController.h │ │ └── VLCCloudStorageController.m ├── Donation │ ├── Data Classes │ │ ├── VLCCharge.h │ │ ├── VLCCharge.m │ │ ├── VLCCurrency.h │ │ ├── VLCCurrency.m │ │ ├── VLCInvoice.h │ │ ├── VLCInvoice.m │ │ ├── VLCPrice.h │ │ ├── VLCPrice.m │ │ ├── VLCSubscription.h │ │ └── VLCSubscription.m │ ├── SEPA │ │ ├── VLCDonationSEPAViewController.h │ │ ├── VLCDonationSEPAViewController.m │ │ ├── VLCDonationSEPAViewController.xib │ │ ├── VLCSEPA.h │ │ ├── VLCSEPA.m │ │ ├── VLCSEPANotificationViewController.h │ │ ├── VLCSEPANotificationViewController.m │ │ └── VLCSEPANotificationViewController.xib │ ├── VLCDonationCreditCardViewController.h │ ├── VLCDonationCreditCardViewController.m │ ├── VLCDonationCreditCardViewController.xib │ ├── VLCDonationInvoicesViewController.h │ ├── VLCDonationInvoicesViewController.m │ ├── VLCDonationNagScreenViewController.h │ ├── VLCDonationNagScreenViewController.m │ ├── VLCDonationNagScreenViewController.xib │ ├── VLCDonationPayPalViewController.h │ ├── VLCDonationPayPalViewController.m │ ├── VLCDonationViewController.h │ ├── VLCDonationViewController.m │ ├── VLCDonationViewController.xib │ ├── VLCStripeController.h │ └── VLCStripeController.m ├── Extensions │ ├── Data Structures │ │ ├── Array+Safety.swift │ │ ├── GRKArrayDiff+UICollectionView.h │ │ ├── GRKArrayDiff+UICollectionView.m │ │ └── NSObject+SettingsReader.swift │ ├── Devices │ │ ├── FileManager+DeleteMediaFolder.swift │ │ └── UIDevice+VLC.swift │ ├── Foundation │ │ ├── APLog.swift │ │ └── Observable.swift │ ├── NSURLSession │ │ ├── NSURLSession+sharedMPTCPSession.h │ │ └── NSURLSession+sharedMPTCPSession.m │ ├── NSURLSessionConfiguration │ │ ├── NSURLSessionConfiguration+default.h │ │ └── NSURLSessionConfiguration+default.m │ ├── Strings │ │ ├── NSString+SupportedMedia.h │ │ └── NSString+SupportedMedia.m │ ├── UI Elements │ │ ├── UIAlertController+autoDismissable.swift │ │ ├── UIBarButtonItem+Theme.h │ │ ├── UIBarButtonItem+Theme.m │ │ ├── UIScrollView+flashScrollIndicatorsIfNeeded.swift │ │ ├── UISegmentedControl+CustomLabels.swift │ │ ├── UIViewController+VLCAlert.h │ │ └── UIViewController+VLCAlert.m │ ├── UIKit │ │ ├── CAAnimation+VLCWiggle.h │ │ ├── CAAnimation+VLCWiggle.m │ │ ├── LayoutAnchorContainer.swift │ │ ├── UIAccessibilityCustomAction+Util.swift │ │ ├── UIColor+Presets.h │ │ ├── UIColor+Presets.m │ │ ├── UIFont+Styling.swift │ │ ├── UIImage+AverageColor.h │ │ ├── UIImage+AverageColor.m │ │ ├── UIImage+Blur.h │ │ ├── UIImage+Blur.m │ │ ├── UIImage+Gradient.swift │ │ ├── UIImage+TintColor.swift │ │ ├── UIImage+Util.swift │ │ ├── UIScreen+Brightness.swift │ │ ├── UIScreen+DisplayCornerRadius.swift │ │ ├── UIStackView+Orientation.h │ │ ├── UIStackView+Orientation.m │ │ ├── UIView+Accessibility.swift │ │ └── UIViewController+findViewController.swift │ └── URLs │ │ ├── URL+isExcludedFromBackup.swift │ │ └── URL+isHidden.swift ├── Headers │ ├── VLC-iOS-Bridging-Header.h │ ├── VLC-iOS-Prefix-Header.pch │ ├── VLC-tvOS-Bridging-Header.h │ ├── VLC-tvOS-Prefix-Header.pch │ ├── VLC-watchOS-Bridging-Header.h │ ├── VLC-watchOS-Prefix-Header.pch │ ├── VLCConstants.h │ └── VLCTVConstants.h ├── Helpers │ ├── AppearanceManager.swift │ ├── ColorThemeExtension.swift │ ├── Document.swift │ ├── FeedbackGenerators.swift │ ├── KeychainCoordinator.swift │ ├── Network │ │ ├── Reachability.h │ │ ├── Reachability.m │ │ ├── URLHandler.swift │ │ ├── VLCActivityManager.h │ │ └── VLCActivityManager.m │ ├── PreferenceSetting.swift │ ├── Thumbnail Cache │ │ ├── VLCMediaThumbnailerCache.swift │ │ ├── VLCThumbnailsCache.h │ │ └── VLCThumbnailsCache.m │ └── VLCStringsForLocalization.m ├── Media Library │ ├── Activity View │ │ ├── VLCActivityViewControllerVendor.h │ │ ├── VLCActivityViewControllerVendor.m │ │ ├── VLCOpenInActivity.h │ │ └── VLCOpenInActivity.m │ ├── Discovery │ │ ├── VLCMediaFileDiscoverer.h │ │ └── VLCMediaFileDiscoverer.m │ ├── Editing │ │ ├── AddToCollectionView.xib │ │ ├── AddToCollectionViewController.swift │ │ ├── EditActions.swift │ │ ├── EditButtons.swift │ │ ├── EditController.swift │ │ └── EditToolbar.swift │ ├── Extensions │ │ ├── VLCMLMedia+App.h │ │ ├── VLCMLMedia+App.m │ │ ├── VLCMLMedia+Podcast.h │ │ ├── VLCMLMedia+Podcast.m │ │ ├── VLCMLMedia+isWatched.h │ │ └── VLCMLMedia+isWatched.m │ ├── LibrarySearchDataSource.swift │ ├── MediaCategories │ │ ├── AlbumHeader.swift │ │ ├── MediaCategory.swift │ │ ├── MediaCategoryViewController.swift │ │ └── PlaylistHeader.swift │ ├── MediaCategoryCells │ │ ├── BaseCollectionViewCell.swift │ │ ├── MediaCollectionViewCell.swift │ │ ├── MediaCollectionViewCell.xib │ │ ├── MediaGridCollectionCell.swift │ │ ├── MovieCollectionViewCell.swift │ │ └── MovieCollectionViewCell.xib │ ├── MediaLibraryModel │ │ ├── AlbumModel.swift │ │ ├── ArtistModel.swift │ │ ├── AudioCollectionModel.swift │ │ ├── CollectionModel.swift │ │ ├── GenreModel.swift │ │ ├── HistoryModel.swift │ │ ├── MediaGroupViewModel.swift │ │ ├── MediaLibraryBaseModel.swift │ │ ├── MediaModel.swift │ │ ├── PlaylistModel.swift │ │ ├── ShowEpisodeModel.swift │ │ ├── SortModel.swift │ │ ├── TrackModel.swift │ │ └── VideoModel.swift │ ├── MediaLibraryService.swift │ ├── MediaViewControllers │ │ ├── ArtistViewController.swift │ │ ├── AudioViewController.swift │ │ ├── CollectionViewCellPreviewController.swift │ │ ├── MediaViewController.swift │ │ ├── PlaylistViewController.swift │ │ └── VideoViewController.swift │ ├── PlaybackCacheHelper.swift │ ├── VLCEmptyLibraryView.h │ ├── VLCEmptyLibraryView.m │ ├── VLCEmptyLibraryView.xib │ └── tvOS │ │ ├── SortedMediaFiles.swift │ │ ├── VLCMicroMediaLibraryService.h │ │ └── VLCMicroMediaLibraryService.m ├── Network │ ├── Download │ │ ├── VLCDownloadController.h │ │ ├── VLCDownloadController.m │ │ ├── VLCDownloadViewController.h │ │ ├── VLCDownloadViewController.m │ │ ├── VLCDownloadViewController.xib │ │ ├── VLCHTTPFileDownloader.h │ │ ├── VLCHTTPFileDownloader.m │ │ ├── VLCMediaFileDownloader.h │ │ └── VLCMediaFileDownloader.m │ ├── Favorite │ │ ├── FavoriteHeaderContentView.swift │ │ ├── VLCFavoriteService.h │ │ ├── VLCFavoriteService.m │ │ ├── iOS │ │ │ ├── FavoriteListViewController.swift │ │ │ └── FavoriteSectionHeader.swift │ │ └── tvOS │ │ │ ├── FavoriteListViewController.swift │ │ │ └── FavoriteSectionHeader.swift │ ├── Login │ │ ├── Data Sources │ │ │ ├── VLCNetworkLoginDataSource.h │ │ │ ├── VLCNetworkLoginDataSource.m │ │ │ ├── VLCNetworkLoginDataSourceLogin.h │ │ │ ├── VLCNetworkLoginDataSourceLogin.m │ │ │ ├── VLCNetworkLoginDataSourceProtocol.h │ │ │ ├── VLCNetworkLoginDataSourceProtocol.m │ │ │ ├── VLCNetworkLoginDataSourceSavedLogins.h │ │ │ ├── VLCNetworkLoginDataSourceSavedLogins.m │ │ │ └── VLCNetworkLoginDataSourceSection.h │ │ ├── Specific UI Elements │ │ │ ├── VLCNetworkLoginViewButtonCell.h │ │ │ ├── VLCNetworkLoginViewButtonCell.m │ │ │ ├── VLCNetworkLoginViewFieldCell.h │ │ │ └── VLCNetworkLoginViewFieldCell.m │ │ ├── VLCNetworkLoginTVViewController.swift │ │ ├── VLCNetworkLoginTVViewController.xib │ │ ├── VLCNetworkLoginViewController.h │ │ ├── VLCNetworkLoginViewController.m │ │ └── VLCNetworkLoginViewController.xib │ ├── Managed Servers │ │ ├── VLCOpenManagedServersViewController.h │ │ ├── VLCOpenManagedServersViewController.m │ │ └── VLCOpenManagedServersViewController.xib │ ├── Open Network Stream │ │ ├── VLCOpenNetworkStreamTVViewController.h │ │ ├── VLCOpenNetworkStreamTVViewController.m │ │ ├── VLCOpenNetworkStreamTVViewController.xib │ │ ├── VLCOpenNetworkStreamViewController.h │ │ ├── VLCOpenNetworkStreamViewController.m │ │ ├── VLCOpenNetworkStreamViewController.xib │ │ ├── VLCOpenNetworkSubtitlesFinder.h │ │ ├── VLCOpenNetworkSubtitlesFinder.m │ │ ├── VLCStreamingHistoryCell.h │ │ ├── VLCStreamingHistoryCell.m │ │ └── VLCStreamingHistoryCell.xib │ ├── Server Browsing │ │ ├── Artwork Provider │ │ │ ├── VLCMDFBrowsingArtworkProvider.h │ │ │ └── VLCMDFBrowsingArtworkProvider.m │ │ ├── Data │ │ │ ├── Controller │ │ │ │ ├── VLCLocalServerDiscoveryController.h │ │ │ │ ├── VLCLocalServerDiscoveryController.m │ │ │ │ ├── VLCNetworkServerSearchBrowser.h │ │ │ │ ├── VLCNetworkServerSearchBrowser.m │ │ │ │ ├── VLCSearchController.h │ │ │ │ ├── VLCSearchController.m │ │ │ │ ├── VLCServerBrowsingController.h │ │ │ │ └── VLCServerBrowsingController.m │ │ │ ├── Protocols │ │ │ │ ├── Bonjour │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserBonjour.h │ │ │ │ │ └── VLCLocalNetworkServiceBrowserBonjour.m │ │ │ │ ├── FTP │ │ │ │ │ ├── VLCNetworkServerBrowserVLCMedia+FTP.h │ │ │ │ │ └── VLCNetworkServerBrowserVLCMedia+FTP.m │ │ │ │ ├── Favorites │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserFavorites.h │ │ │ │ │ └── VLCLocalNetworkServiceBrowserFavorites.m │ │ │ │ ├── General │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserMediaDiscoverer.h │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserMediaDiscoverer.m │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserNetService.h │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserNetService.m │ │ │ │ │ ├── VLCLocalNetworkServiceNetService.h │ │ │ │ │ ├── VLCLocalNetworkServiceNetService.m │ │ │ │ │ ├── VLCLocalNetworkServiceVLCMedia.h │ │ │ │ │ ├── VLCLocalNetworkServiceVLCMedia.m │ │ │ │ │ ├── VLCNetworkServerBrowserVLCMedia.h │ │ │ │ │ ├── VLCNetworkServerBrowserVLCMedia.m │ │ │ │ │ ├── VLCNetworkServerLoginInformation+Keychain.h │ │ │ │ │ ├── VLCNetworkServerLoginInformation+Keychain.m │ │ │ │ │ ├── VLCNetworkServerLoginInformation.h │ │ │ │ │ └── VLCNetworkServerLoginInformation.m │ │ │ │ ├── Manual Connection │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserManualConnect.h │ │ │ │ │ └── VLCLocalNetworkServiceBrowserManualConnect.m │ │ │ │ ├── NFS │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserNFS.h │ │ │ │ │ └── VLCLocalNetworkServiceBrowserNFS.m │ │ │ │ ├── PLEX │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserPlex.h │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserPlex.m │ │ │ │ │ ├── VLCNetworkServerBrowserPlex.h │ │ │ │ │ ├── VLCNetworkServerBrowserPlex.m │ │ │ │ │ ├── VLCPlexParser.h │ │ │ │ │ ├── VLCPlexParser.m │ │ │ │ │ ├── VLCPlexWebAPI.h │ │ │ │ │ └── VLCPlexWebAPI.m │ │ │ │ ├── SFTP │ │ │ │ │ ├── VLCNetworkServerBrowserVLCMedia+SFTP.h │ │ │ │ │ └── VLCNetworkServerBrowserVLCMedia+SFTP.m │ │ │ │ ├── SMB │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserDSM.h │ │ │ │ │ └── VLCLocalNetworkServiceBrowserDSM.m │ │ │ │ ├── Shared Library │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserHTTP.h │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserHTTP.m │ │ │ │ │ ├── VLCNetworkServerBrowserSharedLibrary.h │ │ │ │ │ ├── VLCNetworkServerBrowserSharedLibrary.m │ │ │ │ │ ├── VLCSharedLibraryParser.h │ │ │ │ │ └── VLCSharedLibraryParser.m │ │ │ │ └── UPnP │ │ │ │ │ ├── VLCLocalNetworkServiceBrowserUPnP.h │ │ │ │ │ └── VLCLocalNetworkServiceBrowserUPnP.m │ │ │ ├── VLCLocalNetworkService-Protocol.h │ │ │ ├── VLCLocalNetworkServiceBrowser-Protocol.h │ │ │ └── VLCNetworkServerBrowser-Protocol.h │ │ ├── UI Elements │ │ │ ├── VLCNetworkListCell.h │ │ │ ├── VLCNetworkListCell.m │ │ │ ├── VLCNetworkListCell.xib │ │ │ ├── VLCRemoteBrowsingTVCell.h │ │ │ ├── VLCRemoteBrowsingTVCell.m │ │ │ └── VLCRemoteBrowsingTVCell.xib │ │ └── View Controllers │ │ │ ├── VLCNetworkListViewController.h │ │ │ ├── VLCNetworkListViewController.m │ │ │ ├── VLCNetworkServerBrowserViewController.h │ │ │ ├── VLCNetworkServerBrowserViewController.m │ │ │ ├── VLCRemoteBrowsingCollectionViewController.h │ │ │ ├── VLCRemoteBrowsingCollectionViewController.m │ │ │ ├── VLCRemoteBrowsingCollectionViewController.xib │ │ │ ├── VLCSearchableServerBrowsingTVViewController.h │ │ │ ├── VLCSearchableServerBrowsingTVViewController.m │ │ │ ├── VLCServerBrowsingTVViewController.h │ │ │ └── VLCServerBrowsingTVViewController.m │ └── Server List │ │ ├── VLCServerListTVViewController.h │ │ ├── VLCServerListTVViewController.m │ │ ├── VLCServerListViewController.h │ │ ├── VLCServerListViewController.m │ │ └── iOS │ │ ├── ExternalMediaProviderCell.swift │ │ ├── FileServerView.swift │ │ ├── RemoteNetworkCell.swift │ │ └── RemoteNetworkDataSource.swift ├── Onboarding │ ├── VLCFirstStepsBaseViewController.h │ ├── VLCFirstStepsBaseViewController.m │ ├── VLCFirstStepsBaseViewController.xib │ ├── VLCFirstStepsCloudViewController.h │ ├── VLCFirstStepsCloudViewController.m │ ├── VLCFirstStepsDonateViewController.h │ ├── VLCFirstStepsDonateViewController.m │ ├── VLCFirstStepsViewController.h │ ├── VLCFirstStepsViewController.m │ ├── VLCFirstStepsWifiSharingViewController.h │ ├── VLCFirstStepsWifiSharingViewController.m │ ├── VLCFirstStepsiTunesSyncViewController.h │ └── VLCFirstStepsiTunesSyncViewController.m ├── Playback │ ├── Control │ │ ├── CustomDialogRendererHandler.swift │ │ ├── PictureInPictureMediaController.swift │ │ ├── PlaybackServiceAdjustFilter.swift │ │ ├── VLCExternalDisplayController.h │ │ ├── VLCExternalDisplayController.m │ │ ├── VLCPlaybackService+MediaLibrary.h │ │ ├── VLCPlaybackService+MediaLibrary.m │ │ ├── VLCPlaybackService.h │ │ ├── VLCPlaybackService.m │ │ ├── VLCPlayerDisplayController+MiniPlayerDraggingDelegate.swift │ │ ├── VLCPlayerDisplayController.h │ │ ├── VLCPlayerDisplayController.m │ │ └── VLCRendererDiscovererManager.swift │ ├── DeviceMotion.swift │ ├── OS Integration │ │ ├── VLCMetadata.h │ │ ├── VLCMetadata.m │ │ ├── VLCRemoteControlService.h │ │ └── VLCRemoteControlService.m │ ├── Player │ │ ├── AudioPlayer │ │ │ ├── AudioPlayerView.swift │ │ │ ├── AudioPlayerView.xib │ │ │ └── AudioPlayerViewController.swift │ │ ├── MiniPlayer-iOS │ │ │ ├── AudioMiniPlayer.swift │ │ │ ├── AudioMiniPlayer.xib │ │ │ └── MiniPlayer.swift │ │ ├── PlayerViewController.swift │ │ ├── VideoPlayer-iOS │ │ │ ├── AspectRatio.swift │ │ │ ├── MediaMoreOptionsActionSheet.swift │ │ │ ├── MediaScrubProgressBar.swift │ │ │ ├── PlayerController.swift │ │ │ ├── PlayerInfoView.swift │ │ │ ├── SliderInfoView.swift │ │ │ ├── Subviews │ │ │ │ ├── ABRepeatView.swift │ │ │ │ ├── AddBookmarksView.swift │ │ │ │ ├── BookmarksView.swift │ │ │ │ ├── ChapterView.swift │ │ │ │ ├── CustomEqualizerProfiles.swift │ │ │ │ ├── EqualizerPresetSelector.swift │ │ │ │ ├── EqualizerView.swift │ │ │ │ ├── LongPressPlaybackSpeedView.swift │ │ │ │ ├── MediaNavigationBar.swift │ │ │ │ ├── MediaPlayerActionSheet.swift │ │ │ │ ├── OptionsNavigationBar.swift │ │ │ │ ├── PlaybackSpeedCustomHelpers.swift │ │ │ │ ├── PlaybackSpeedView.swift │ │ │ │ ├── PlaybackSpeedView.xib │ │ │ │ ├── PlayingExternallyView.swift │ │ │ │ ├── PlayingExternallyView.xib │ │ │ │ ├── SleepTimerView.swift │ │ │ │ ├── SleepTimerView.xib │ │ │ │ ├── SpoilerButton.swift │ │ │ │ ├── VideoFiltersView.swift │ │ │ │ └── VideoFiltersView.xib │ │ │ ├── TitleSelectionView.swift │ │ │ ├── VideoPlayerControls.swift │ │ │ ├── VideoPlayerControls.xib │ │ │ ├── VideoPlayerViewController+ControlsDelegate.swift │ │ │ └── VideoPlayerViewController.swift │ │ └── VideoPlayer-tvOS │ │ │ ├── Playback Info │ │ │ ├── VLCPlaybackInfoAudioTVViewController.h │ │ │ ├── VLCPlaybackInfoAudioTVViewController.m │ │ │ ├── VLCPlaybackInfoChaptersTVViewController.h │ │ │ ├── VLCPlaybackInfoChaptersTVViewController.m │ │ │ ├── VLCPlaybackInfoChaptersTVViewController.xib │ │ │ ├── VLCPlaybackInfoCollectionViewDataSource.h │ │ │ ├── VLCPlaybackInfoCollectionViewDataSource.m │ │ │ ├── VLCPlaybackInfoMediaInfoTVViewController.h │ │ │ ├── VLCPlaybackInfoMediaInfoTVViewController.m │ │ │ ├── VLCPlaybackInfoMediaInfoTVViewController.xib │ │ │ ├── VLCPlaybackInfoPanelTVViewController.h │ │ │ ├── VLCPlaybackInfoPanelTVViewController.m │ │ │ ├── VLCPlaybackInfoPlaybackTVViewController.h │ │ │ ├── VLCPlaybackInfoPlaybackTVViewController.m │ │ │ ├── VLCPlaybackInfoPlaybackTVViewController.xib │ │ │ ├── VLCPlaybackInfoTVAnimators.h │ │ │ ├── VLCPlaybackInfoTVAnimators.m │ │ │ ├── VLCPlaybackInfoTVCollectionSectionTitleView.h │ │ │ ├── VLCPlaybackInfoTVCollectionSectionTitleView.m │ │ │ ├── VLCPlaybackInfoTVCollectionViewCell.h │ │ │ ├── VLCPlaybackInfoTVCollectionViewCell.m │ │ │ ├── VLCPlaybackInfoTVCollectionViewCell.xib │ │ │ ├── VLCPlaybackInfoTVViewController.h │ │ │ ├── VLCPlaybackInfoTVViewController.m │ │ │ ├── VLCPlaybackInfoTVViewController.xib │ │ │ ├── VLCPlaybackInfoTracksTVViewController.h │ │ │ ├── VLCPlaybackInfoTracksTVViewController.m │ │ │ └── VLCPlaybackInfoTracksTVViewController.xib │ │ │ ├── VLCFullscreenMovieTVViewController.h │ │ │ ├── VLCFullscreenMovieTVViewController.m │ │ │ ├── VLCFullscreenMovieTVViewController.xib │ │ │ ├── VLCIRTVTapGestureRecognizer.h │ │ │ ├── VLCIRTVTapGestureRecognizer.m │ │ │ ├── VLCPlaybackControlsFocusView.h │ │ │ ├── VLCPlaybackControlsFocusView.m │ │ │ ├── VLCSiriRemoteGestureRecognizer.h │ │ │ ├── VLCSiriRemoteGestureRecognizer.m │ │ │ ├── VLCTransportBar.h │ │ │ └── VLCTransportBar.m │ ├── Queue │ │ ├── QueueView.xib │ │ └── QueueViewController.swift │ └── Subtitles Downloading │ │ ├── VLCOSOFetcher.h │ │ ├── VLCOSOFetcher.m │ │ ├── VLCOpenSubtitlesDownloader.h │ │ ├── VLCOpenSubtitlesDownloader.m │ │ ├── VLCPlaybackInfoSubtitlesFetcherViewController.h │ │ ├── VLCPlaybackInfoSubtitlesFetcherViewController.m │ │ ├── VLCSubtitleItem.h │ │ ├── VLCSubtitleItem.m │ │ ├── iOS │ │ └── VLCPlaybackInfoSubtitlesFetcherViewController.xib │ │ └── tvOS │ │ └── VLCPlaybackInfoSubtitlesFetcherViewController.xib ├── Settings │ ├── Controller │ │ ├── PasscodeLockController.swift │ │ └── SettingsController.swift │ ├── Model │ │ ├── ActionSheetSpecifier.swift │ │ ├── SettingsSection.swift │ │ └── SettingsSpecifier.swift │ ├── View │ │ ├── PasscodeField.swift │ │ ├── SettingsCell.swift │ │ └── SettingsHeaderFooterView.swift │ └── tvOS │ │ ├── VLCSettingsViewController.h │ │ ├── VLCSettingsViewController.m │ │ └── VLCSettingsViewController.xib ├── UI Elements │ ├── ActionSheet │ │ ├── ActionSheet.swift │ │ ├── ActionSheetCell.swift │ │ ├── ActionSheetSectionHeader.swift │ │ └── ActionSheetSortSectionHeader.swift │ ├── Data Presentation │ │ ├── AlbumHeaderFlowLayout.swift │ │ ├── ButtonBarView.swift │ │ ├── VLCDeleteHintTVView.h │ │ ├── VLCDeleteHintTVView.m │ │ ├── VLCFullWidthCollectionViewFlowLayout.h │ │ └── VLCFullWidthCollectionViewFlowLayout.m │ ├── Labels │ │ ├── VLCMarqueeLabel.swift │ │ ├── VLCStatusLabel.h │ │ └── VLCStatusLabel.m │ ├── PopupView.swift │ ├── PresentationTheme.swift │ ├── Progress Indicators │ │ ├── VLCBufferingBar.h │ │ ├── VLCBufferingBar.m │ │ ├── VLCLinearProgressIndicator.h │ │ ├── VLCLinearProgressIndicator.m │ │ ├── VLCProgressView.h │ │ └── VLCProgressView.m │ ├── Sliders │ │ ├── VLCSlider.h │ │ ├── VLCSlider.m │ │ └── VerticalSliderControl.swift │ ├── VLCNetworkImageView.h │ ├── VLCNetworkImageView.m │ ├── VLCPlaybackNavigationController.h │ ├── VLCPlaybackNavigationController.m │ ├── View Controller │ │ ├── BottomTabBarController.swift │ │ ├── PagerStripViewController.swift │ │ ├── VLCAlertViewController.swift │ │ ├── VLCDeletionCapableViewController.h │ │ ├── VLCDeletionCapableViewController.m │ │ ├── VLCLabelCell.xib │ │ └── VLCPagingViewController.swift │ └── Visual Effects │ │ ├── VLCConfettiView.swift │ │ ├── VLCFrostedGlasView.h │ │ ├── VLCFrostedGlasView.m │ │ ├── VLCMaskView.h │ │ └── VLCMaskView.m └── WiFi Sharing │ ├── VLCHTTPConnection.h │ ├── VLCHTTPConnection.m │ ├── VLCHTTPUploaderController.h │ ├── VLCHTTPUploaderController.m │ ├── VLCPlayerControlWebSocket.h │ ├── VLCPlayerControlWebSocket.m │ ├── VLCWiFiUploadTableViewCell.h │ ├── VLCWiFiUploadTableViewCell.m │ └── tvOS │ ├── VLCRemotePlaybackViewController.h │ ├── VLCRemotePlaybackViewController.m │ └── VLCRemotePlaybackViewController.xib ├── VLC.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── VLC-iOS-Screenshots.xcscheme │ ├── VLC-iOS-Tests.xcscheme │ ├── VLC-iOS-UITests.xcscheme │ ├── VLC-iOS.xcscheme │ ├── VLC-tvOS.xcscheme │ ├── VLC-visionOS.xcscheme │ └── VLC-watchOS.xcscheme └── VLC.xcworkspace ├── contents.xcworkspacedata └── xcshareddata ├── IDEWorkspaceChecks.plist └── WorkspaceSettings.xcsettings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/.mailmap -------------------------------------------------------------------------------- /.periphery.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/.periphery.yml -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/AUTHORS -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Fastfile -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Gemfile -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Gemfile.lock -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Gymfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Gymfile -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Pluginfile -------------------------------------------------------------------------------- /Buildsystem/Fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/README.md -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Scanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Scanfile -------------------------------------------------------------------------------- /Buildsystem/Fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/Snapfile -------------------------------------------------------------------------------- /Buildsystem/Fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /Buildsystem/Fastlane/helpers/VLC.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/helpers/VLC.rb -------------------------------------------------------------------------------- /Buildsystem/Fastlane/helpers/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/helpers/version.rb -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/Framefile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/Framefile.json -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/af/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/af/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/af/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/af/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/am/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/am/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/am/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/am/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ar/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ar/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ar/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ar/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ast/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ast/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ast/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ast/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/az/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/az/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/az/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/az/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/background.png -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/be/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/be/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/be/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/be/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/bg/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/bg/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/bg/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/bg/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/bn/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/bn/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/bn/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/bn/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/br/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/br/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/br/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/br/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/bs/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/bs/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/bs/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/bs/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ca/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ca/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ca/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ca/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/co/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/co/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/co/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/co/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/cs/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/cs/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/cs/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/cs/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/da/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/da/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/da/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/da/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/de/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/de/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/de/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/de/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/el/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/el/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/el/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/el/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/en-GB/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/en-GB/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/en-GB/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/en-GB/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/en/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/en/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/en/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/en/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/es-MX/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/es-MX/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/es-MX/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/es-MX/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/es/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/es/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/es/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/es/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/eu/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/eu/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/eu/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/eu/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fa/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fa/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fa/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fa/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fi/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fi/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fi/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fi/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fo/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fo/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fo/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fo/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fr/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/fr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/fr/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/gl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/gl/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/gl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/gl/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/he/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/he/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/he/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/he/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/hi/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/hi/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/hi/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/hi/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/hr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/hr/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/hr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/hr/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/hu/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/hu/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/hu/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/hu/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/id/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/id/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/id/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/id/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/is/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/is/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/is/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/is/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/it/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/it/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/it/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/it/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ja/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ja/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ja/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ja/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ka/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ka/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ka/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ka/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/kab/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/kab/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/kab/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/kab/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/km/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/km/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/km/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/km/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/kn/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/kn/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/kn/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/kn/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ko/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ko/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ko/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ko/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ku/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ku/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ku/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ku/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/lo/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/lo/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/lo/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/lo/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/lt/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/lt/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/lt/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/lt/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/lv/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/lv/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/lv/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/lv/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ml/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ml/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ml/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ml/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/mr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/mr/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/mr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/mr/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ms/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ms/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ms/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ms/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/my/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/my/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/my/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/my/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/nb/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/nb/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/nb/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/nb/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ne/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ne/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ne/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ne/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/nl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/nl/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/nl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/nl/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/nn/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/nn/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/nn/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/nn/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/pl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/pl/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/pl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/pl/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/pt-BR/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/pt-BR/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/pt-BR/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/pt-BR/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/pt-PT/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/pt-PT/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/pt-PT/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/pt-PT/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ro/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ro/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ro/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ro/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ru/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ru/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ru/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ru/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sc/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sc/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sc/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sc/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/si/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/si/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/si/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/si/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sk/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sk/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sk/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sk/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sl/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sl/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sl/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sl/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sr-Latn/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sr-Latn/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sr-Latn/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sr-Latn/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sv/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sv/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/sv/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/sv/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ta/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ta/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/ta/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/ta/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/th/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/th/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/th/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/th/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/tr/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/tr/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/tr/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/tr/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/tt/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/tt/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/tt/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/tt/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/uk/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/uk/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/uk/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/uk/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/vi/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/vi/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/vi/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/vi/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/zh-Hans/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/zh-Hans/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/zh-Hans/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/zh-Hans/title.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/zh-Hant/keyword.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/zh-Hant/keyword.strings -------------------------------------------------------------------------------- /Buildsystem/Fastlane/screenshots/zh-Hant/title.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Fastlane/screenshots/zh-Hant/title.strings -------------------------------------------------------------------------------- /Buildsystem/SharedConfig.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/SharedConfig.xcconfig -------------------------------------------------------------------------------- /Buildsystem/Testing/Screenshots/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/Screenshots/Info.plist -------------------------------------------------------------------------------- /Buildsystem/Testing/Screenshots/Screenshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/Screenshots/Screenshot.swift -------------------------------------------------------------------------------- /Buildsystem/Testing/Screenshots/VLC-iOS-Screenshots-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "SDStatusBarManager.h" 2 | -------------------------------------------------------------------------------- /Buildsystem/Testing/UI/Helpers/TestHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/UI/Helpers/TestHelper.swift -------------------------------------------------------------------------------- /Buildsystem/Testing/UI/Helpers/XCUIElement+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/UI/Helpers/XCUIElement+Helpers.swift -------------------------------------------------------------------------------- /Buildsystem/Testing/UI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/UI/Info.plist -------------------------------------------------------------------------------- /Buildsystem/Testing/UI/VLCTestMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/UI/VLCTestMenu.swift -------------------------------------------------------------------------------- /Buildsystem/Testing/Unit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/Unit/Info.plist -------------------------------------------------------------------------------- /Buildsystem/Testing/Unit/PreferenceSettingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/Unit/PreferenceSettingTests.swift -------------------------------------------------------------------------------- /Buildsystem/Testing/Unit/URLHandlerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Testing/Unit/URLHandlerTests.swift -------------------------------------------------------------------------------- /Buildsystem/Tools/update_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Buildsystem/Tools/update_strings.py -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/COPYING -------------------------------------------------------------------------------- /Documentation/CodingStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Documentation/CodingStyle.md -------------------------------------------------------------------------------- /Documentation/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Documentation/NEWS.md -------------------------------------------------------------------------------- /Documentation/RELEASEHOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Documentation/RELEASEHOWTO.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/Apple TV Icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/Apple TV Icon.sketch -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/Apple TV LaunchImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/Apple TV LaunchImage.svg -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/Apple TV Top Shelf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/Apple TV Top Shelf.svg -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/FileAndFolders.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/FileAndFolders.sketch -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/PlayPauseButton.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/PlayPauseButton.sketch -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/ServerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/ServerIcon.png -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/ServerIcon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/ServerIcon.sketch -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/VLC-Server-Icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/VLC-Server-Icon.sketch -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/iTunes Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/iTunes Icon.png -------------------------------------------------------------------------------- /Resources/Artwork/AppleTV/iTunes Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/AppleTV/iTunes Icon.svg -------------------------------------------------------------------------------- /Resources/Artwork/readme_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Artwork/readme_banner.png -------------------------------------------------------------------------------- /Resources/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /Resources/af.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/af.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/af.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/af.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/am.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/am.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/am.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/am.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ar.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/be.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/be.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/be.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/be.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/bg.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/bg.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/bg.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/bg.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/br.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/br.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/br.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/br.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/bs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/bs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/bs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/bs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ca.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/co.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/co.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/co.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/co.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/cs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/da.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/el.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/en-GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/en-GB.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/es-MX.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/es-MX.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/es-MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/es-MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/eu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/eu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/eu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/eu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fa.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fa.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/fa.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fa.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fo.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fo.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/fo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fo.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/gl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/gl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/gl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/gl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/he.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/hu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/ActionSheet/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/ActionSheet/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/CarPlay/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/CarPlay/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/Donation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/Donation/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/FirstSteps/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/FirstSteps/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/LaunchScreen/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/LaunchScreen/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/MenuNavigation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/MenuNavigation/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/NewPlayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/NewPlayer/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Images.xcassets/PauseAnimation/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Images.xcassets/PauseAnimation/Contents.json -------------------------------------------------------------------------------- /Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Info.plist -------------------------------------------------------------------------------- /Resources/iOS/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Launch Screen.storyboard -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/Root.inApp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/Root.inApp.plist -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/af.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/af.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/am.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/am.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ar.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/be.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/be.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/bg.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/bg.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/br.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/br.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/bs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/bs.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ca.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ca.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/co.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/co.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/cs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/cs.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/da.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/da.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/de.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/el.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/el.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/en-GB.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/en-GB.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/es-MX.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/es-MX.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/es.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/eu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/eu.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/fa.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/fa.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/fi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/fi.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/fo.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/fo.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/fr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/gl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/gl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/he.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/he.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/hu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/hu.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/id.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/id.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/is.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/is.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/it.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ja.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ja.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ka.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ka.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/kab.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/kab.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/km.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/km.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ko.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ko.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/lo.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/lo.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/lt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/lt.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/lv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/lv.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ml.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ml.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/mr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/mr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ms.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ms.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/my.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/my.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/nb.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/nb.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ne.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ne.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/nl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/nl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/nn.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/nn.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/pl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/pl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/pt-BR.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/pt-BR.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/pt-PT.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/pt-PT.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ro.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ro.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ru.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/sc.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/sc.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/si.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/si.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/sk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/sk.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/sl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/sl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/sr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/sr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/sv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/sv.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/ta.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/ta.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/th.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/th.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/tr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/tt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/tt.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/uk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/uk.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/zh-Hans.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/zh-Hans.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/Settings.bundle/zh-Hant.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/Settings.bundle/zh-Hant.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/iOS/VLC.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/VLC.entitlements -------------------------------------------------------------------------------- /Resources/iOS/VLCCone512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/VLCCone512x512.png -------------------------------------------------------------------------------- /Resources/iOS/af.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/af.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ar.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ar.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/be.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/be.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/br.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/br.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/bs.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/bs.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ca.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ca.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/co.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/co.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/cs.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/cs.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/da.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/da.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/de.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/de.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/el.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/el.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/en-GB.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/en-GB.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/en.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/en.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/es-MX.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/es-MX.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/es.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/es.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/eu.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/eu.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/fa.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/fa.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/fi.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/fi.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/fo.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/fo.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/fr.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/fr.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/gl.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/gl.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/he.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/he.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/hu.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/hu.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/id.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/id.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/is.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/is.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/it.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/it.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ja.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ja.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ka.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ka.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/km.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/km.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ko.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ko.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/lv.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/lv.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/mr.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/mr.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ms.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ms.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/nb.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/nb.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/nl.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/nl.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/pl.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/pl.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/pt-BR.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/pt-BR.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/pt-PT.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/pt-PT.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ro.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ro.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ru.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ru.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/sc.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/sc.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/si.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/si.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/sk.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/sk.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/sl.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/sl.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/sv.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/sv.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/ta.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/ta.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/th.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/th.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/tr.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/tr.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/uk.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/uk.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/zh-Hans.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/zh-Hans.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/iOS/zh-Hant.lproj/AppIntentVocabulary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/iOS/zh-Hant.lproj/AppIntentVocabulary.plist -------------------------------------------------------------------------------- /Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/id.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/is.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/is.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/is.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/is.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ka.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ka.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ka.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ka.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/kab.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/kab.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/kab.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/kab.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/km.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/km.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/km.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/km.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/lo.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/lo.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/lo.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/lo.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/lt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/lt.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/lt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/lt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/lv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/lv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ml.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ml.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ml.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ml.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/mr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/mr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/mr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/mr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ms.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/my.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/my.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/my.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/my.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/nb.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/nb.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ne.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ne.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ne.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ne.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/nn.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/nn.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/nn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/nn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/pt-BR.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/pt-PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/pt-PT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/pt-PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/pt-PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ro.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/sc.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sc.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/sc.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sc.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/si.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/si.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/si.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/si.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/sl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/sl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/ta.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ta.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/ta.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/ta.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/th.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/tt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tt.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/tt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tt.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/tvOS/Images.xcassets/Cloud Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Images.xcassets/Cloud Icons/Contents.json -------------------------------------------------------------------------------- /Resources/tvOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/tvOS/Images.xcassets/OSO.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Images.xcassets/OSO.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/tvOS/Images.xcassets/TMDb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Images.xcassets/TMDb.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/tvOS/Images.xcassets/TransportBar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Images.xcassets/TransportBar/Contents.json -------------------------------------------------------------------------------- /Resources/tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Info.plist -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/Root.inApp.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/Root.inApp.plist -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/af.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/af.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/am.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/am.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ar.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/be.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/be.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/bg.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/bg.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/br.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/br.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/bs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/bs.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ca.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ca.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/co.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/co.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/cs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/cs.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/da.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/da.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/de.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/el.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/el.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/en-GB.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/en-GB.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/es-MX.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/es-MX.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/es.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/eu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/eu.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/fa.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/fa.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/fi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/fi.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/fo.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/fo.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/fr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/gl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/gl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/he.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/he.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/hu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/hu.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/id.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/id.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/is.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/is.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/it.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ja.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ja.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ka.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ka.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/kab.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/kab.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/km.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/km.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ko.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ko.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/lo.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/lo.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/lt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/lt.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/lv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/lv.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ml.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ml.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/mr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/mr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ms.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ms.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/my.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/my.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/nb.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/nb.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ne.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ne.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/nl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/nl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/nn.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/nn.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/pl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/pl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/pt-BR.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/pt-BR.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/pt-PT.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/pt-PT.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ro.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ro.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ru.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/sc.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/sc.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/si.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/si.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/sk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/sk.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/sl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/sl.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/sr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/sr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/sv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/sv.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/ta.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/ta.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/th.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/th.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/tr.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/tt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/tt.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/uk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/uk.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/zh-Hans.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/zh-Hans.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/Settings.bundle/zh-Hant.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/Settings.bundle/zh-Hant.lproj/Root.strings -------------------------------------------------------------------------------- /Resources/tvOS/VLC.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/tvOS/VLC.entitlements -------------------------------------------------------------------------------- /Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/uk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/watchOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/watchOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/favicon.ico -------------------------------------------------------------------------------- /Resources/web/gradient-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/gradient-cell.png -------------------------------------------------------------------------------- /Resources/web/iOS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/iOS/index.html -------------------------------------------------------------------------------- /Resources/web/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/jquery.fileupload.js -------------------------------------------------------------------------------- /Resources/web/jquery.iframe-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/jquery.iframe-transport.js -------------------------------------------------------------------------------- /Resources/web/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/jquery.ui.widget.js -------------------------------------------------------------------------------- /Resources/web/libMediaVLC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/libMediaVLC.xml -------------------------------------------------------------------------------- /Resources/web/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/main.js -------------------------------------------------------------------------------- /Resources/web/public/Raleway.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/Raleway.woff -------------------------------------------------------------------------------- /Resources/web/public/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/auth.css -------------------------------------------------------------------------------- /Resources/web/public/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/auth.html -------------------------------------------------------------------------------- /Resources/web/public/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/auth.js -------------------------------------------------------------------------------- /Resources/web/public/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/common.css -------------------------------------------------------------------------------- /Resources/web/public/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /Resources/web/public/playerControl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/playerControl.css -------------------------------------------------------------------------------- /Resources/web/public/playerControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/public/playerControl.js -------------------------------------------------------------------------------- /Resources/web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/style.css -------------------------------------------------------------------------------- /Resources/web/tvOS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/tvOS/index.html -------------------------------------------------------------------------------- /Resources/web/web-download-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/web-download-fixed.png -------------------------------------------------------------------------------- /Resources/web/web-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/web-download.png -------------------------------------------------------------------------------- /Resources/web/web-open-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/web-open-fixed.png -------------------------------------------------------------------------------- /Resources/web/web-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/web/web-open.png -------------------------------------------------------------------------------- /Resources/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Resources/zh-Hant.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/zh-Hant.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Resources/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Resources/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sources/About/AboutController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/About/AboutController.swift -------------------------------------------------------------------------------- /Sources/About/VLCAboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/About/VLCAboutViewController.h -------------------------------------------------------------------------------- /Sources/About/VLCAboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/About/VLCAboutViewController.m -------------------------------------------------------------------------------- /Sources/About/VLCAboutViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/About/VLCAboutViewController.xib -------------------------------------------------------------------------------- /Sources/About/iOS/About Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/About/iOS/About Contents.html -------------------------------------------------------------------------------- /Sources/About/tvOS/About Contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/About/tvOS/About Contents.html -------------------------------------------------------------------------------- /Sources/App/iOS/PlayMediaIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/PlayMediaIntent.swift -------------------------------------------------------------------------------- /Sources/App/iOS/SirikitIntentCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/SirikitIntentCoordinator.swift -------------------------------------------------------------------------------- /Sources/App/iOS/TabBarCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/TabBarCoordinator.swift -------------------------------------------------------------------------------- /Sources/App/iOS/VLCAppCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCAppCoordinator.h -------------------------------------------------------------------------------- /Sources/App/iOS/VLCAppCoordinator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCAppCoordinator.m -------------------------------------------------------------------------------- /Sources/App/iOS/VLCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCAppDelegate.h -------------------------------------------------------------------------------- /Sources/App/iOS/VLCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCAppDelegate.m -------------------------------------------------------------------------------- /Sources/App/iOS/VLCAppSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCAppSceneDelegate.h -------------------------------------------------------------------------------- /Sources/App/iOS/VLCAppSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCAppSceneDelegate.m -------------------------------------------------------------------------------- /Sources/App/iOS/VLCNonInteractiveWindowSceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCNonInteractiveWindowSceneDelegate.h -------------------------------------------------------------------------------- /Sources/App/iOS/VLCNonInteractiveWindowSceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/VLCNonInteractiveWindowSceneDelegate.m -------------------------------------------------------------------------------- /Sources/App/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/iOS/main.m -------------------------------------------------------------------------------- /Sources/App/tvOS/AppleTVAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/tvOS/AppleTVAppDelegate.h -------------------------------------------------------------------------------- /Sources/App/tvOS/AppleTVAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/tvOS/AppleTVAppDelegate.m -------------------------------------------------------------------------------- /Sources/App/tvOS/VLCAppCoordinator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/tvOS/VLCAppCoordinator.m -------------------------------------------------------------------------------- /Sources/App/tvOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/tvOS/main.m -------------------------------------------------------------------------------- /Sources/App/watchOS/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/watchOS/ContentView.swift -------------------------------------------------------------------------------- /Sources/App/watchOS/VLCAppCoordinator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/watchOS/VLCAppCoordinator.m -------------------------------------------------------------------------------- /Sources/App/watchOS/VLCWatchOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/App/watchOS/VLCWatchOSApp.swift -------------------------------------------------------------------------------- /Sources/CarPlay/CPListTemplate+Genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/CPListTemplate+Genres.h -------------------------------------------------------------------------------- /Sources/CarPlay/CPListTemplate+Genres.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/CPListTemplate+Genres.m -------------------------------------------------------------------------------- /Sources/CarPlay/CPListTemplate+NetworkStreams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/CPListTemplate+NetworkStreams.h -------------------------------------------------------------------------------- /Sources/CarPlay/CPListTemplate+NetworkStreams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/CPListTemplate+NetworkStreams.m -------------------------------------------------------------------------------- /Sources/CarPlay/CarPlayMediaLibraryObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/CarPlayMediaLibraryObserver.swift -------------------------------------------------------------------------------- /Sources/CarPlay/VLCCarPlayArtistsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCCarPlayArtistsController.h -------------------------------------------------------------------------------- /Sources/CarPlay/VLCCarPlayArtistsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCCarPlayArtistsController.m -------------------------------------------------------------------------------- /Sources/CarPlay/VLCCarPlayPlaylistsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCCarPlayPlaylistsController.h -------------------------------------------------------------------------------- /Sources/CarPlay/VLCCarPlayPlaylistsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCCarPlayPlaylistsController.m -------------------------------------------------------------------------------- /Sources/CarPlay/VLCCarPlaySceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCCarPlaySceneDelegate.h -------------------------------------------------------------------------------- /Sources/CarPlay/VLCCarPlaySceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCCarPlaySceneDelegate.m -------------------------------------------------------------------------------- /Sources/CarPlay/VLCNowPlayingTemplateObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCNowPlayingTemplateObserver.h -------------------------------------------------------------------------------- /Sources/CarPlay/VLCNowPlayingTemplateObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/CarPlay/VLCNowPlayingTemplateObserver.m -------------------------------------------------------------------------------- /Sources/Cloud/Services List/VLCCloudServiceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services List/VLCCloudServiceCell.h -------------------------------------------------------------------------------- /Sources/Cloud/Services List/VLCCloudServiceCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services List/VLCCloudServiceCell.m -------------------------------------------------------------------------------- /Sources/Cloud/Services List/VLCCloudServiceCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services List/VLCCloudServiceCell.xib -------------------------------------------------------------------------------- /Sources/Cloud/Services/Box/VLCBoxConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Box/VLCBoxConstants.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/Box/VLCBoxController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Box/VLCBoxController.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/Box/VLCBoxController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Box/VLCBoxController.m -------------------------------------------------------------------------------- /Sources/Cloud/Services/Box/VLCBoxTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Box/VLCBoxTableViewController.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/Box/VLCBoxTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Box/VLCBoxTableViewController.m -------------------------------------------------------------------------------- /Sources/Cloud/Services/Dropbox/VLCDropboxConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Dropbox/VLCDropboxConstants.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/Dropbox/VLCDropboxController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Dropbox/VLCDropboxController.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/Dropbox/VLCDropboxController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/Dropbox/VLCDropboxController.m -------------------------------------------------------------------------------- /Sources/Cloud/Services/OneDrive/VLCOneDriveConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/OneDrive/VLCOneDriveConstants.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/OneDrive/VLCOneDriveController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/OneDrive/VLCOneDriveController.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/OneDrive/VLCOneDriveController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/OneDrive/VLCOneDriveController.m -------------------------------------------------------------------------------- /Sources/Cloud/Services/PCloud/VLCPCloudConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/PCloud/VLCPCloudConstants.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/PCloud/VLCPCloudController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/PCloud/VLCPCloudController.swift -------------------------------------------------------------------------------- /Sources/Cloud/Services/VLCCloudStorageController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/VLCCloudStorageController.h -------------------------------------------------------------------------------- /Sources/Cloud/Services/VLCCloudStorageController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Cloud/Services/VLCCloudStorageController.m -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCCharge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCCharge.h -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCCharge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCCharge.m -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCCurrency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCCurrency.h -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCCurrency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCCurrency.m -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCInvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCInvoice.h -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCInvoice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCInvoice.m -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCPrice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCPrice.h -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCPrice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCPrice.m -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCSubscription.h -------------------------------------------------------------------------------- /Sources/Donation/Data Classes/VLCSubscription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/Data Classes/VLCSubscription.m -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCDonationSEPAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCDonationSEPAViewController.h -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCDonationSEPAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCDonationSEPAViewController.m -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCDonationSEPAViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCDonationSEPAViewController.xib -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCSEPA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCSEPA.h -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCSEPA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCSEPA.m -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCSEPANotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCSEPANotificationViewController.h -------------------------------------------------------------------------------- /Sources/Donation/SEPA/VLCSEPANotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/SEPA/VLCSEPANotificationViewController.m -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationCreditCardViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationCreditCardViewController.h -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationCreditCardViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationCreditCardViewController.m -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationCreditCardViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationCreditCardViewController.xib -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationInvoicesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationInvoicesViewController.h -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationInvoicesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationInvoicesViewController.m -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationNagScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationNagScreenViewController.h -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationNagScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationNagScreenViewController.m -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationNagScreenViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationNagScreenViewController.xib -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationPayPalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationPayPalViewController.h -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationPayPalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationPayPalViewController.m -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationViewController.h -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationViewController.m -------------------------------------------------------------------------------- /Sources/Donation/VLCDonationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCDonationViewController.xib -------------------------------------------------------------------------------- /Sources/Donation/VLCStripeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCStripeController.h -------------------------------------------------------------------------------- /Sources/Donation/VLCStripeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Donation/VLCStripeController.m -------------------------------------------------------------------------------- /Sources/Extensions/Data Structures/Array+Safety.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/Data Structures/Array+Safety.swift -------------------------------------------------------------------------------- /Sources/Extensions/Devices/UIDevice+VLC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/Devices/UIDevice+VLC.swift -------------------------------------------------------------------------------- /Sources/Extensions/Foundation/APLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/Foundation/APLog.swift -------------------------------------------------------------------------------- /Sources/Extensions/Foundation/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/Foundation/Observable.swift -------------------------------------------------------------------------------- /Sources/Extensions/Strings/NSString+SupportedMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/Strings/NSString+SupportedMedia.h -------------------------------------------------------------------------------- /Sources/Extensions/Strings/NSString+SupportedMedia.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/Strings/NSString+SupportedMedia.m -------------------------------------------------------------------------------- /Sources/Extensions/UI Elements/UIBarButtonItem+Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UI Elements/UIBarButtonItem+Theme.h -------------------------------------------------------------------------------- /Sources/Extensions/UI Elements/UIBarButtonItem+Theme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UI Elements/UIBarButtonItem+Theme.m -------------------------------------------------------------------------------- /Sources/Extensions/UI Elements/UIViewController+VLCAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UI Elements/UIViewController+VLCAlert.h -------------------------------------------------------------------------------- /Sources/Extensions/UI Elements/UIViewController+VLCAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UI Elements/UIViewController+VLCAlert.m -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/CAAnimation+VLCWiggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/CAAnimation+VLCWiggle.h -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/CAAnimation+VLCWiggle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/CAAnimation+VLCWiggle.m -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/LayoutAnchorContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/LayoutAnchorContainer.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIColor+Presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIColor+Presets.h -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIColor+Presets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIColor+Presets.m -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIFont+Styling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIFont+Styling.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+AverageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+AverageColor.h -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+AverageColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+AverageColor.m -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+Blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+Blur.h -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+Blur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+Blur.m -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+Gradient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+Gradient.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+TintColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+TintColor.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIImage+Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIImage+Util.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIScreen+Brightness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIScreen+Brightness.swift -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIStackView+Orientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIStackView+Orientation.h -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIStackView+Orientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIStackView+Orientation.m -------------------------------------------------------------------------------- /Sources/Extensions/UIKit/UIView+Accessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/UIKit/UIView+Accessibility.swift -------------------------------------------------------------------------------- /Sources/Extensions/URLs/URL+isExcludedFromBackup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/URLs/URL+isExcludedFromBackup.swift -------------------------------------------------------------------------------- /Sources/Extensions/URLs/URL+isHidden.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Extensions/URLs/URL+isHidden.swift -------------------------------------------------------------------------------- /Sources/Headers/VLC-iOS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLC-iOS-Bridging-Header.h -------------------------------------------------------------------------------- /Sources/Headers/VLC-iOS-Prefix-Header.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLC-iOS-Prefix-Header.pch -------------------------------------------------------------------------------- /Sources/Headers/VLC-tvOS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLC-tvOS-Bridging-Header.h -------------------------------------------------------------------------------- /Sources/Headers/VLC-tvOS-Prefix-Header.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLC-tvOS-Prefix-Header.pch -------------------------------------------------------------------------------- /Sources/Headers/VLC-watchOS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLC-watchOS-Bridging-Header.h -------------------------------------------------------------------------------- /Sources/Headers/VLC-watchOS-Prefix-Header.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLC-watchOS-Prefix-Header.pch -------------------------------------------------------------------------------- /Sources/Headers/VLCConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLCConstants.h -------------------------------------------------------------------------------- /Sources/Headers/VLCTVConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Headers/VLCTVConstants.h -------------------------------------------------------------------------------- /Sources/Helpers/AppearanceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/AppearanceManager.swift -------------------------------------------------------------------------------- /Sources/Helpers/ColorThemeExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/ColorThemeExtension.swift -------------------------------------------------------------------------------- /Sources/Helpers/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Document.swift -------------------------------------------------------------------------------- /Sources/Helpers/FeedbackGenerators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/FeedbackGenerators.swift -------------------------------------------------------------------------------- /Sources/Helpers/KeychainCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/KeychainCoordinator.swift -------------------------------------------------------------------------------- /Sources/Helpers/Network/Reachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Network/Reachability.h -------------------------------------------------------------------------------- /Sources/Helpers/Network/Reachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Network/Reachability.m -------------------------------------------------------------------------------- /Sources/Helpers/Network/URLHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Network/URLHandler.swift -------------------------------------------------------------------------------- /Sources/Helpers/Network/VLCActivityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Network/VLCActivityManager.h -------------------------------------------------------------------------------- /Sources/Helpers/Network/VLCActivityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Network/VLCActivityManager.m -------------------------------------------------------------------------------- /Sources/Helpers/PreferenceSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/PreferenceSetting.swift -------------------------------------------------------------------------------- /Sources/Helpers/Thumbnail Cache/VLCThumbnailsCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Thumbnail Cache/VLCThumbnailsCache.h -------------------------------------------------------------------------------- /Sources/Helpers/Thumbnail Cache/VLCThumbnailsCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/Thumbnail Cache/VLCThumbnailsCache.m -------------------------------------------------------------------------------- /Sources/Helpers/VLCStringsForLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Helpers/VLCStringsForLocalization.m -------------------------------------------------------------------------------- /Sources/Media Library/Activity View/VLCOpenInActivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Activity View/VLCOpenInActivity.h -------------------------------------------------------------------------------- /Sources/Media Library/Activity View/VLCOpenInActivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Activity View/VLCOpenInActivity.m -------------------------------------------------------------------------------- /Sources/Media Library/Discovery/VLCMediaFileDiscoverer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Discovery/VLCMediaFileDiscoverer.h -------------------------------------------------------------------------------- /Sources/Media Library/Discovery/VLCMediaFileDiscoverer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Discovery/VLCMediaFileDiscoverer.m -------------------------------------------------------------------------------- /Sources/Media Library/Editing/AddToCollectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Editing/AddToCollectionView.xib -------------------------------------------------------------------------------- /Sources/Media Library/Editing/EditActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Editing/EditActions.swift -------------------------------------------------------------------------------- /Sources/Media Library/Editing/EditButtons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Editing/EditButtons.swift -------------------------------------------------------------------------------- /Sources/Media Library/Editing/EditController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Editing/EditController.swift -------------------------------------------------------------------------------- /Sources/Media Library/Editing/EditToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Editing/EditToolbar.swift -------------------------------------------------------------------------------- /Sources/Media Library/Extensions/VLCMLMedia+App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Extensions/VLCMLMedia+App.h -------------------------------------------------------------------------------- /Sources/Media Library/Extensions/VLCMLMedia+App.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Extensions/VLCMLMedia+App.m -------------------------------------------------------------------------------- /Sources/Media Library/Extensions/VLCMLMedia+Podcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Extensions/VLCMLMedia+Podcast.h -------------------------------------------------------------------------------- /Sources/Media Library/Extensions/VLCMLMedia+Podcast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Extensions/VLCMLMedia+Podcast.m -------------------------------------------------------------------------------- /Sources/Media Library/Extensions/VLCMLMedia+isWatched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Extensions/VLCMLMedia+isWatched.h -------------------------------------------------------------------------------- /Sources/Media Library/Extensions/VLCMLMedia+isWatched.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/Extensions/VLCMLMedia+isWatched.m -------------------------------------------------------------------------------- /Sources/Media Library/LibrarySearchDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/LibrarySearchDataSource.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaCategories/AlbumHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaCategories/AlbumHeader.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaCategories/MediaCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaCategories/MediaCategory.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaCategories/PlaylistHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaCategories/PlaylistHeader.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaLibraryModel/AlbumModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaLibraryModel/AlbumModel.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaLibraryModel/ArtistModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaLibraryModel/ArtistModel.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaLibraryModel/GenreModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaLibraryModel/GenreModel.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaLibraryModel/HistoryModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaLibraryModel/HistoryModel.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaLibraryModel/SortModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaLibraryModel/SortModel.swift -------------------------------------------------------------------------------- /Sources/Media Library/MediaLibraryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/MediaLibraryService.swift -------------------------------------------------------------------------------- /Sources/Media Library/PlaybackCacheHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/PlaybackCacheHelper.swift -------------------------------------------------------------------------------- /Sources/Media Library/VLCEmptyLibraryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/VLCEmptyLibraryView.h -------------------------------------------------------------------------------- /Sources/Media Library/VLCEmptyLibraryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/VLCEmptyLibraryView.m -------------------------------------------------------------------------------- /Sources/Media Library/VLCEmptyLibraryView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/VLCEmptyLibraryView.xib -------------------------------------------------------------------------------- /Sources/Media Library/tvOS/SortedMediaFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Media Library/tvOS/SortedMediaFiles.swift -------------------------------------------------------------------------------- /Sources/Network/Download/VLCDownloadController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCDownloadController.h -------------------------------------------------------------------------------- /Sources/Network/Download/VLCDownloadController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCDownloadController.m -------------------------------------------------------------------------------- /Sources/Network/Download/VLCDownloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCDownloadViewController.h -------------------------------------------------------------------------------- /Sources/Network/Download/VLCDownloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCDownloadViewController.m -------------------------------------------------------------------------------- /Sources/Network/Download/VLCDownloadViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCDownloadViewController.xib -------------------------------------------------------------------------------- /Sources/Network/Download/VLCHTTPFileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCHTTPFileDownloader.h -------------------------------------------------------------------------------- /Sources/Network/Download/VLCHTTPFileDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCHTTPFileDownloader.m -------------------------------------------------------------------------------- /Sources/Network/Download/VLCMediaFileDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCMediaFileDownloader.h -------------------------------------------------------------------------------- /Sources/Network/Download/VLCMediaFileDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Download/VLCMediaFileDownloader.m -------------------------------------------------------------------------------- /Sources/Network/Favorite/VLCFavoriteService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Favorite/VLCFavoriteService.h -------------------------------------------------------------------------------- /Sources/Network/Favorite/VLCFavoriteService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Favorite/VLCFavoriteService.m -------------------------------------------------------------------------------- /Sources/Network/Login/VLCNetworkLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Login/VLCNetworkLoginViewController.h -------------------------------------------------------------------------------- /Sources/Network/Login/VLCNetworkLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Login/VLCNetworkLoginViewController.m -------------------------------------------------------------------------------- /Sources/Network/Login/VLCNetworkLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Login/VLCNetworkLoginViewController.xib -------------------------------------------------------------------------------- /Sources/Network/Server List/iOS/FileServerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Server List/iOS/FileServerView.swift -------------------------------------------------------------------------------- /Sources/Network/Server List/iOS/RemoteNetworkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Network/Server List/iOS/RemoteNetworkCell.swift -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsBaseViewController.h -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsBaseViewController.m -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsBaseViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsBaseViewController.xib -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsCloudViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsCloudViewController.h -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsCloudViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsCloudViewController.m -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsDonateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsDonateViewController.h -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsDonateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsDonateViewController.m -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsViewController.h -------------------------------------------------------------------------------- /Sources/Onboarding/VLCFirstStepsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Onboarding/VLCFirstStepsViewController.m -------------------------------------------------------------------------------- /Sources/Playback/Control/VLCExternalDisplayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Control/VLCExternalDisplayController.h -------------------------------------------------------------------------------- /Sources/Playback/Control/VLCExternalDisplayController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Control/VLCExternalDisplayController.m -------------------------------------------------------------------------------- /Sources/Playback/Control/VLCPlaybackService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Control/VLCPlaybackService.h -------------------------------------------------------------------------------- /Sources/Playback/Control/VLCPlaybackService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Control/VLCPlaybackService.m -------------------------------------------------------------------------------- /Sources/Playback/Control/VLCPlayerDisplayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Control/VLCPlayerDisplayController.h -------------------------------------------------------------------------------- /Sources/Playback/Control/VLCPlayerDisplayController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Control/VLCPlayerDisplayController.m -------------------------------------------------------------------------------- /Sources/Playback/DeviceMotion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/DeviceMotion.swift -------------------------------------------------------------------------------- /Sources/Playback/OS Integration/VLCMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/OS Integration/VLCMetadata.h -------------------------------------------------------------------------------- /Sources/Playback/OS Integration/VLCMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/OS Integration/VLCMetadata.m -------------------------------------------------------------------------------- /Sources/Playback/Player/AudioPlayer/AudioPlayerView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Player/AudioPlayer/AudioPlayerView.xib -------------------------------------------------------------------------------- /Sources/Playback/Player/MiniPlayer-iOS/MiniPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Player/MiniPlayer-iOS/MiniPlayer.swift -------------------------------------------------------------------------------- /Sources/Playback/Player/PlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Player/PlayerViewController.swift -------------------------------------------------------------------------------- /Sources/Playback/Queue/QueueView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Queue/QueueView.xib -------------------------------------------------------------------------------- /Sources/Playback/Queue/QueueViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Queue/QueueViewController.swift -------------------------------------------------------------------------------- /Sources/Playback/Subtitles Downloading/VLCOSOFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Subtitles Downloading/VLCOSOFetcher.h -------------------------------------------------------------------------------- /Sources/Playback/Subtitles Downloading/VLCOSOFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Playback/Subtitles Downloading/VLCOSOFetcher.m -------------------------------------------------------------------------------- /Sources/Settings/Controller/SettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/Controller/SettingsController.swift -------------------------------------------------------------------------------- /Sources/Settings/Model/ActionSheetSpecifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/Model/ActionSheetSpecifier.swift -------------------------------------------------------------------------------- /Sources/Settings/Model/SettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/Model/SettingsSection.swift -------------------------------------------------------------------------------- /Sources/Settings/Model/SettingsSpecifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/Model/SettingsSpecifier.swift -------------------------------------------------------------------------------- /Sources/Settings/View/PasscodeField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/View/PasscodeField.swift -------------------------------------------------------------------------------- /Sources/Settings/View/SettingsCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/View/SettingsCell.swift -------------------------------------------------------------------------------- /Sources/Settings/View/SettingsHeaderFooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/View/SettingsHeaderFooterView.swift -------------------------------------------------------------------------------- /Sources/Settings/tvOS/VLCSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/tvOS/VLCSettingsViewController.h -------------------------------------------------------------------------------- /Sources/Settings/tvOS/VLCSettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/tvOS/VLCSettingsViewController.m -------------------------------------------------------------------------------- /Sources/Settings/tvOS/VLCSettingsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/Settings/tvOS/VLCSettingsViewController.xib -------------------------------------------------------------------------------- /Sources/UI Elements/ActionSheet/ActionSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/ActionSheet/ActionSheet.swift -------------------------------------------------------------------------------- /Sources/UI Elements/ActionSheet/ActionSheetCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/ActionSheet/ActionSheetCell.swift -------------------------------------------------------------------------------- /Sources/UI Elements/Labels/VLCMarqueeLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Labels/VLCMarqueeLabel.swift -------------------------------------------------------------------------------- /Sources/UI Elements/Labels/VLCStatusLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Labels/VLCStatusLabel.h -------------------------------------------------------------------------------- /Sources/UI Elements/Labels/VLCStatusLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Labels/VLCStatusLabel.m -------------------------------------------------------------------------------- /Sources/UI Elements/PopupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/PopupView.swift -------------------------------------------------------------------------------- /Sources/UI Elements/PresentationTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/PresentationTheme.swift -------------------------------------------------------------------------------- /Sources/UI Elements/Sliders/VLCSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Sliders/VLCSlider.h -------------------------------------------------------------------------------- /Sources/UI Elements/Sliders/VLCSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Sliders/VLCSlider.m -------------------------------------------------------------------------------- /Sources/UI Elements/Sliders/VerticalSliderControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Sliders/VerticalSliderControl.swift -------------------------------------------------------------------------------- /Sources/UI Elements/VLCNetworkImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/VLCNetworkImageView.h -------------------------------------------------------------------------------- /Sources/UI Elements/VLCNetworkImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/VLCNetworkImageView.m -------------------------------------------------------------------------------- /Sources/UI Elements/VLCPlaybackNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/VLCPlaybackNavigationController.h -------------------------------------------------------------------------------- /Sources/UI Elements/VLCPlaybackNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/VLCPlaybackNavigationController.m -------------------------------------------------------------------------------- /Sources/UI Elements/View Controller/VLCLabelCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/View Controller/VLCLabelCell.xib -------------------------------------------------------------------------------- /Sources/UI Elements/Visual Effects/VLCFrostedGlasView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Visual Effects/VLCFrostedGlasView.h -------------------------------------------------------------------------------- /Sources/UI Elements/Visual Effects/VLCFrostedGlasView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Visual Effects/VLCFrostedGlasView.m -------------------------------------------------------------------------------- /Sources/UI Elements/Visual Effects/VLCMaskView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Visual Effects/VLCMaskView.h -------------------------------------------------------------------------------- /Sources/UI Elements/Visual Effects/VLCMaskView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/UI Elements/Visual Effects/VLCMaskView.m -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCHTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCHTTPConnection.h -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCHTTPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCHTTPConnection.m -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCHTTPUploaderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCHTTPUploaderController.h -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCHTTPUploaderController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCHTTPUploaderController.m -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCPlayerControlWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCPlayerControlWebSocket.h -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCPlayerControlWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCPlayerControlWebSocket.m -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCWiFiUploadTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCWiFiUploadTableViewCell.h -------------------------------------------------------------------------------- /Sources/WiFi Sharing/VLCWiFiUploadTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/Sources/WiFi Sharing/VLCWiFiUploadTableViewCell.m -------------------------------------------------------------------------------- /VLC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/VLC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VLC.xcodeproj/xcshareddata/xcschemes/VLC-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/VLC.xcodeproj/xcshareddata/xcschemes/VLC-iOS.xcscheme -------------------------------------------------------------------------------- /VLC.xcodeproj/xcshareddata/xcschemes/VLC-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/VLC.xcodeproj/xcshareddata/xcschemes/VLC-tvOS.xcscheme -------------------------------------------------------------------------------- /VLC.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/VLC.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VLC.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-ios/HEAD/VLC.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist --------------------------------------------------------------------------------