├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── NOTICE.md ├── Podfile ├── Podfile.lock ├── PopcornKit ├── Managers │ ├── AnimeManager.swift │ ├── MovieManager.swift │ ├── NetworkManager.swift │ ├── PopcornKit.swift │ ├── ShowManager.swift │ ├── SubtitlesManager.swift │ ├── TMDBManager.swift │ ├── ThemeSongManager.swift │ ├── TraktManager.swift │ ├── UpdateManager.swift │ ├── WatchedlistManager.swift │ └── WatchlistManager.swift ├── Models │ ├── Actor.swift │ ├── Crew.swift │ ├── Episode.swift │ ├── Media.swift │ ├── Movie.swift │ ├── Person.swift │ ├── Show.swift │ ├── Subtitle.swift │ └── Torrent.swift ├── Resources │ ├── HtmlDecoding.swift │ ├── MPAVRoute.h │ ├── MPAVRoutingController.h │ ├── MPAVRoutingControllerDelegate.h │ ├── MPAudioDeviceController.h │ ├── OAuthCredential.swift │ └── SubtitleHashGenerator.swift ├── Supporting Files │ ├── PopcornKit.h │ ├── PopcornKit.modulemap │ ├── ar.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── fr.lproj │ │ ├── Localizable.strings │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── iOS.plist │ ├── it.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── nl-NL.lproj │ │ ├── Localizable.strings │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── pt-BR.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ └── tvOS.plist └── Trakt │ └── TraktAuthenticationViewController.swift ├── PopcornTime.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── PopcornTimeiOS.xcscheme │ ├── PopcornTimetvOS.xcscheme │ └── TopShelf.xcscheme ├── PopcornTime ├── Base.lproj │ ├── LoadingView.xib │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.xib │ ├── iOS.storyboard │ └── tvOS.storyboard ├── Extensions │ ├── AVMetadataItem+Extension.swift │ ├── AppDelegate+Extension.swift │ ├── Array+Extension.swift │ ├── CGImage+IsDark.swift │ ├── CGSize+Min.swift │ ├── Dictionary+Extension.swift │ ├── DispatchQueue+Extension.swift │ ├── FileManager+Extension.swift │ ├── FloatRatingView+TintColor.swift │ ├── Locale+Langs.swift │ ├── MPMediaItemProperty+Extension.swift │ ├── Media+Extension.swift │ ├── NSMutableString+Extension.swift │ ├── NSNotificationName+Extension.swift │ ├── NSObject+Swift_Observer.h │ ├── NSObject+Swift_Observer.m │ ├── PCTPlayerViewController+MediaPlayer.swift │ ├── PCTPlayerViewController+ScreenNotifications.swift │ ├── Show+Extension.swift │ ├── String+Extension.swift │ ├── TimeInterval+Default.swift │ ├── UIAlertController+BlurStyle.swift │ ├── UIAlertController+Show.swift │ ├── UICollectionViewCell+CollectionView.swift │ ├── UICollectionViewController+Extension.swift │ ├── UIColor+Extension.swift │ ├── UIControlState+Hashable.swift │ ├── UIDevice+Extension.swift │ ├── UIFont+Style.swift │ ├── UIImage+Extension.swift │ ├── UINavigationController+Extension.swift │ ├── UIStoryboard+Main.swift │ ├── UITableView+FocusedCellIndexPath.swift │ ├── UITableViewCell+TableView.swift │ ├── UIView+Extension.swift │ ├── URL+MIME.swift │ └── VLCMediaPlayer+VLCFontAppearance.swift ├── Resources │ ├── AVAudioRoute.swift │ ├── AVSpeakerManager.swift │ ├── AutoPlayStoryboardSegue.swift │ ├── DummyStoryboardSegue.swift │ ├── Images.xcassets │ │ ├── Add.imageset │ │ │ ├── Contents.json │ │ │ └── button-add.png │ │ ├── Airplay TV.imageset │ │ │ ├── Airplay-TV_32x22_@1x.png │ │ │ └── Contents.json │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Middle 2.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Layer 2.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Front.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Layer 3.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Middle.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Layer 4.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Middle 3.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Layer 5.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Large - Back.png │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Contents.json │ │ │ │ ├── Layer 1.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Middle 2.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Layer 2.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Front.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Layer 3.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Middle.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Layer 4.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── Large - Middle 3.png │ │ │ │ │ └── Contents.json │ │ │ │ └── Layer 5.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Large - Back.png │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ ├── AppIcon@1x.png │ │ │ ├── AppIcon@2x-1.png │ │ │ ├── AppIcon@2x.png │ │ │ ├── AppIcon@3x.png │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x-1.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x-1.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-83.5@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x-1.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40.png │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.png │ │ ├── CC.imageset │ │ │ ├── Badge_CC.png │ │ │ ├── Badge_CC@2x-1.png │ │ │ ├── Badge_CC@2x.png │ │ │ ├── Badge_CC@3x.png │ │ │ └── Contents.json │ │ ├── Checkmark.imageset │ │ │ ├── Contents.json │ │ │ └── UniversalCheckmark.pdf │ │ ├── Contents.json │ │ ├── Episode Watched Indicator.imageset │ │ │ ├── Contents.json │ │ │ └── watched-checkmark.png │ │ ├── External Playback Indicator.imageset │ │ │ ├── Contents.json │ │ │ ├── ExternalPlaybackIndicatorLarge_131x90_@1x.png │ │ │ ├── ExternalPlaybackIndicatorLarge_131x90_@2x.png │ │ │ └── ExternalPlaybackIndicatorLarge_131x90_@3x.png │ │ ├── Filter.imageset │ │ │ ├── Contents.json │ │ │ └── Filter.pdf │ │ ├── Google Cast Assets │ │ │ ├── CastOff.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cast_off.pdf │ │ │ ├── CastOn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cast_on.pdf │ │ │ ├── CastOn0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cast_on0.pdf │ │ │ ├── CastOn1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cast_on1-1.pdf │ │ │ ├── CastOn2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cast_on2.pdf │ │ │ └── Contents.json │ │ ├── HD.imageset │ │ │ ├── Badge_HD.png │ │ │ ├── Badge_HD@2x-1.png │ │ │ ├── Badge_HD@2x.png │ │ │ ├── Badge_HD@3x.png │ │ │ └── Contents.json │ │ ├── Icon.imageset │ │ │ ├── Contents.json │ │ │ └── settings.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ └── Simulator Screen Shot 21 Oct 2016, 18.16.02.png │ │ ├── Movies Off.imageset │ │ │ ├── Contents.json │ │ │ └── Movies.pdf │ │ ├── Movies On.imageset │ │ │ ├── Contents.json │ │ │ └── Movies.pdf │ │ ├── OnePassword Assets │ │ │ ├── Contents.json │ │ │ ├── onepassword-button-light.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onepassword-button-light.pdf │ │ │ ├── onepassword-button.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onepassword-button.pdf │ │ │ ├── onepassword-navbar-light.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onepassword-navbar-light.pdf │ │ │ ├── onepassword-navbar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onepassword-navbar.pdf │ │ │ ├── onepassword-toolbar-light.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onepassword-toolbar-light.pdf │ │ │ └── onepassword-toolbar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── onepassword-toolbar.pdf │ │ ├── Placeholder Assets │ │ │ ├── Contents.json │ │ │ ├── Episode Placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PreloadAsset-Dark-TV_600x600_@1x.png │ │ │ ├── Movie Placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PreloadAsset-Dark-Movie_400x600_@1x.png │ │ │ └── Other Placeholder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── PreloadAsset-Dark-Generic16x9_820x460_@1x.png │ │ ├── Play Small.imageset │ │ │ ├── Contents.json │ │ │ └── play-button-arrow.pdf │ │ ├── Preview.imageset │ │ │ ├── Contents.json │ │ │ └── button-preview.png │ │ ├── Rating Badges │ │ │ ├── Contents.json │ │ │ ├── G.imageset │ │ │ │ ├── Badge_MPAA_G.png │ │ │ │ ├── Badge_MPAA_G@2x-1.png │ │ │ │ ├── Badge_MPAA_G@2x.png │ │ │ │ ├── Badge_MPAA_G@3x.png │ │ │ │ └── Contents.json │ │ │ ├── NC-17.imageset │ │ │ │ ├── Badge_MPAA_NC17.png │ │ │ │ ├── Badge_MPAA_NC17@2x-1.png │ │ │ │ ├── Badge_MPAA_NC17@2x.png │ │ │ │ ├── Badge_MPAA_NC17@3x.png │ │ │ │ └── Contents.json │ │ │ ├── NR.imageset │ │ │ │ ├── Badge_MPAA_NR.png │ │ │ │ ├── Badge_MPAA_NR@2x-1.png │ │ │ │ ├── Badge_MPAA_NR@2x.png │ │ │ │ ├── Badge_MPAA_NR@3x.png │ │ │ │ └── Contents.json │ │ │ ├── PG-13.imageset │ │ │ │ ├── Badge_MPAA_PG13.png │ │ │ │ ├── Badge_MPAA_PG13@2x-1.png │ │ │ │ ├── Badge_MPAA_PG13@2x.png │ │ │ │ ├── Badge_MPAA_PG13@3x.png │ │ │ │ └── Contents.json │ │ │ ├── PG.imageset │ │ │ │ ├── Badge_MPAA_PG.png │ │ │ │ ├── Badge_MPAA_PG@2x-1.png │ │ │ │ ├── Badge_MPAA_PG@2x.png │ │ │ │ ├── Badge_MPAA_PG@3x.png │ │ │ │ └── Contents.json │ │ │ └── R.imageset │ │ │ │ ├── Badge_MPAA_R.png │ │ │ │ ├── Badge_MPAA_R@2x-1.png │ │ │ │ ├── Badge_MPAA_R@2x.png │ │ │ │ ├── Badge_MPAA_R@3x.png │ │ │ │ └── Contents.json │ │ ├── Remove.imageset │ │ │ ├── Contents.json │ │ │ └── button-remove.png │ │ ├── SDH.imageset │ │ │ ├── Contents.json │ │ │ ├── metadata-sdh_20x12_@1x.png │ │ │ ├── metadata-sdh_20x12_@2x-1.png │ │ │ ├── metadata-sdh_20x12_@2x.png │ │ │ └── metadata-sdh_20x12_@3x.png │ │ ├── Scrubber Image.imageset │ │ │ ├── Contents.json │ │ │ ├── ScrubberThumb_15x15_@1x.png │ │ │ ├── ScrubberThumb_15x15_@2x.png │ │ │ └── ScrubberThumb_15x15_@3x.png │ │ ├── Seasons.imageset │ │ │ ├── Contents.json │ │ │ └── Seasons.png │ │ ├── Settings Off.imageset │ │ │ ├── Contents.json │ │ │ └── cog.pdf │ │ ├── Settings On.imageset │ │ │ ├── Contents.json │ │ │ └── cog.pdf │ │ ├── Shows Off.imageset │ │ │ ├── Contents.json │ │ │ └── TV.pdf │ │ ├── Shows On.imageset │ │ │ ├── Contents.json │ │ │ └── TV.pdf │ │ ├── Star Empty.imageset │ │ │ ├── Contents.json │ │ │ └── Star Empty.pdf │ │ ├── Star Full.imageset │ │ │ ├── Contents.json │ │ │ └── Star Full.pdf │ │ ├── Static Light Blur.imageset │ │ │ ├── Contents.json │ │ │ └── Static Light Blur.png │ │ ├── Stock Assets │ │ │ ├── AirPlay.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── UIButtonBarAirPlay.pdf │ │ │ ├── Close.imageset │ │ │ │ ├── Close.pdf │ │ │ │ └── Contents.json │ │ │ ├── CloseiOS.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ ├── Contents.json │ │ │ ├── Fast Forward.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Forward.png │ │ │ │ ├── Forward@2x.png │ │ │ │ └── Forward@3x.png │ │ │ ├── Image.imageset │ │ │ │ └── Contents.json │ │ │ ├── List.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── UIButtonBarListIcon.pdf │ │ │ ├── No Search Results.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── NoSearchResultsEmptyStateIcon.png │ │ │ │ ├── NoSearchResultsEmptyStateIcon@2x.png │ │ │ │ └── NoSearchResultsEmptyStateIcon@3x.png │ │ │ ├── Now Playing Info.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NowPlayingInfoIcon_251x85_@1x.png │ │ │ ├── Pause.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PauseButton_23x25_@1x.png │ │ │ │ ├── PauseButton_23x25_@2x.png │ │ │ │ └── PauseButton_23x25_@3x.png │ │ │ ├── Play.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── PlayButton_23x25_@1x.png │ │ │ │ ├── PlayButton_23x25_@2x.png │ │ │ │ ├── PlayButton_23x25_@3x.png │ │ │ │ └── button-play.png │ │ │ ├── Progress Indicator.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ProgressIndicator.pdf │ │ │ ├── Rewind.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Rewind.png │ │ │ │ ├── Rewind@2x.png │ │ │ │ └── Rewind@3x.png │ │ │ ├── Scale To Fill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Fill.png │ │ │ │ ├── Fill@2x.png │ │ │ │ └── Fill@3x.png │ │ │ ├── Scale To Fit.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Fit.png │ │ │ │ ├── Fit@2x.png │ │ │ │ └── Fit@3x.png │ │ │ ├── ScanBackward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ScanBack.png │ │ │ ├── ScanForward.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NowPlayingFastForward_32x32_@1x.png │ │ │ ├── SkipBack.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SystemMediaControl-RewindInterval_25x27_@1x.png │ │ │ │ ├── SystemMediaControl-RewindInterval_25x27_@2x.png │ │ │ │ └── SystemMediaControl-RewindInterval_25x27_@3x.png │ │ │ ├── SkipBack30.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SkipBackward30.pdf │ │ │ ├── SkipForward.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SystemMediaControl-ForwardInterval_25x27_@1x.png │ │ │ │ ├── SystemMediaControl-ForwardInterval_25x27_@2x.png │ │ │ │ └── SystemMediaControl-ForwardInterval_25x27_@3x.png │ │ │ ├── SkipForward30.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SkipForward30.pdf │ │ │ ├── Subtitles.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MediaSelectionButton_23x18_@2x.png │ │ │ │ ├── MediaSelectionButton_23x18_@3x.png │ │ │ │ └── MediaSelectionButton_24x19_@1x.png │ │ │ ├── Trash.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Trash.pdf │ │ │ │ └── UIButtonBarTrash.pdf │ │ │ ├── Volume Maximum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ │ └── Volume Minimum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon.png │ │ │ │ ├── Icon@2x.png │ │ │ │ └── Icon@3x.png │ │ ├── UIDownloadProgress │ │ │ ├── Contents.json │ │ │ ├── Download Progress Finished.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Download Progress Finished.pdf │ │ │ │ └── UniversalAddControlDownloaded.pdf │ │ │ ├── Download Progress Indeterminate.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Download Progress Indeterminate-1.pdf │ │ │ │ └── Download Progress Indeterminate.pdf │ │ │ ├── Download Progress Pause.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Download Progress Pause.pdf │ │ │ │ └── DownloadsPauseIcon.pdf │ │ │ ├── Download Progress Resume.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DownloadsResumeIcon.pdf │ │ │ └── Download Progress Start.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Download Progress Start.pdf │ │ ├── Watched Indicator.imageset │ │ │ ├── Contents.json │ │ │ └── indicator-watched.png │ │ ├── Watched Off.imageset │ │ │ ├── Contents.json │ │ │ ├── watchedOff.png │ │ │ ├── watchedOff@2x-1.png │ │ │ ├── watchedOff@2x.png │ │ │ └── watchedOff@3x.png │ │ ├── Watched On.imageset │ │ │ ├── Contents.json │ │ │ ├── watchedOn.png │ │ │ ├── watchedOn@2x-1.png │ │ │ ├── watchedOn@2x.png │ │ │ └── watchedOn@3x.png │ │ ├── Watchlist Off.imageset │ │ │ ├── Contents.json │ │ │ └── WatchlistOff.pdf │ │ └── Watchlist On.imageset │ │ │ ├── Contents.json │ │ │ └── WatchlistOn.pdf │ ├── Object.swift │ └── SubtitleSettings.swift ├── Startup │ ├── AppDelegate.swift │ └── Launch Screen.storyboard ├── Supporting Files │ ├── Base.xliff │ ├── PopcornTime.entitlements │ ├── PopcornTimeiOS-Bridging-Header.h │ ├── PopcornTimetvOS-Bridging-Header.h │ ├── ar.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── es.lproj │ │ ├── InfoPlist.strings │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── fr.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── iOS.plist │ ├── it.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── nl-NL.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── pt-BR.lproj │ │ ├── iOSPlist.strings │ │ └── tvOSPlist.strings │ ├── torrent_upload │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── font-awesome.min.css │ │ ├── favicon.png │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── img │ │ │ ├── lazyload-ph.png │ │ │ ├── logo.png │ │ │ └── pageload-spinner.gif │ │ ├── includes │ │ │ └── form_48595.php │ │ ├── index.html │ │ ├── js │ │ │ ├── blocs.min.js │ │ │ ├── bootstrap.min.js │ │ │ ├── formHandler.js │ │ │ ├── jqBootstrapValidation.js │ │ │ ├── jquery-2.1.0.min.js │ │ │ └── lazysizes.min.js │ │ └── style.css │ └── tvOS.plist ├── UI │ ├── Shared │ │ ├── Collection View Cells │ │ │ ├── BaseCollectionViewCell.swift │ │ │ ├── CoverCollectionViewCell.swift │ │ │ ├── DescriptionCollectionViewCell.swift │ │ │ ├── EpisodeCollectionViewCell.swift │ │ │ └── MonogramCollectionViewCell.swift │ │ ├── Collection View Controllers │ │ │ ├── CollectionViewController.swift │ │ │ ├── DescriptionCollectionViewController.swift │ │ │ └── ResponsiveCollectionViewController.swift │ │ ├── Detail View Controllers │ │ │ ├── DetailViewController.swift │ │ │ ├── DownloadDetailViewController.swift │ │ │ ├── MovieDetailViewController.swift │ │ │ └── ShowDetailViewController.swift │ │ ├── Main View Controllers │ │ │ ├── MainViewController.swift │ │ │ ├── MediaViewController.swift │ │ │ ├── MoviesViewController.swift │ │ │ ├── PersonViewController.swift │ │ │ ├── SearchViewController.swift │ │ │ ├── SettingsTableViewController.swift │ │ │ ├── ShowsViewController.swift │ │ │ └── WatchlistViewController.swift │ │ ├── View Controllers │ │ │ ├── DownloadViewController.swift │ │ │ ├── ItemViewController.swift │ │ │ ├── PCTPlayerViewController.swift │ │ │ ├── PreloadTorrentViewController.swift │ │ │ ├── TermsOfServiceViewController.swift │ │ │ └── UpNextViewController.swift │ │ └── Views │ │ │ ├── ContinueWatchingCollectionReusableView.swift │ │ │ ├── DownloadButton.swift │ │ │ ├── ErrorBackgroundView.swift │ │ │ ├── GradientView.swift │ │ │ ├── LoadingView.swift │ │ │ └── UIDownloadProgressView.swift │ ├── iOS │ │ ├── Buttons │ │ │ ├── BlurButton.swift │ │ │ ├── BorderButton.swift │ │ │ ├── CastIconButton.swift │ │ │ ├── CircularButton.swift │ │ │ └── WhiteHighlightButton.swift │ │ ├── Collection View Cells │ │ │ ├── ContinueWatchingCollectionViewCell.swift │ │ │ ├── ContinueWatchingCollectionViewCell.xib │ │ │ └── DescriptionCollectionViewCell.xib │ │ ├── Collection View Controllers │ │ │ └── EpisodesCollectionViewController.swift │ │ ├── Collection View Layouts │ │ │ ├── SeparatorCollectionViewLayout.swift │ │ │ └── SnappingCollectionViewLayout.swift │ │ ├── Detail View Controllers │ │ │ └── EpisodeDetailViewController.swift │ │ ├── Extensions │ │ │ ├── CollectionViewController+iOS.swift │ │ │ ├── DetailViewController+iOS.swift │ │ │ ├── DownloadDetailViewController+iOS.swift │ │ │ ├── DownloadViewController+iOS.swift │ │ │ ├── GCKDevice+Equatable.swift │ │ │ ├── GCKMediaTextTrackStyle+Default.swift │ │ │ ├── GCKRequest+CustomData.swift │ │ │ ├── ItemViewController+iOS.swift │ │ │ ├── MPMediaType+Episode.swift │ │ │ ├── MovieDetailViewController+iOS.swift │ │ │ ├── MoviesViewController+iOS.swift │ │ │ ├── Number+Extension.swift │ │ │ ├── PCTPlayerViewController+iOS.swift │ │ │ ├── SearchViewController+iOS.swift │ │ │ ├── ShowDetailViewController+iOS.swift │ │ │ ├── ShowsViewController+iOS.swift │ │ │ ├── String+Emoji.swift │ │ │ ├── String+Truncation.swift │ │ │ ├── UIAlertAction+Extension.swift │ │ │ ├── UICollectionViewLayoutAttributes+Color.swift │ │ │ ├── UINavigationBar+Extension.swift │ │ │ ├── UIScreen+AspectRatio.swift │ │ │ └── UIViewController+StatusBar.swift │ │ ├── Presentation Controllers │ │ │ ├── EpisodeDetailPresentationDelegate.swift │ │ │ └── PreloadTorrentViewControllerAnimatedTransitioning.swift │ │ ├── Table View Cells │ │ │ ├── AirPlayTableViewCell.swift │ │ │ ├── DownloadDetailTableViewCell.swift │ │ │ ├── DownloadTableViewCell.swift │ │ │ └── StepperTableViewCell.swift │ │ ├── Table View Controllers │ │ │ ├── ExtendedSubtitleTableViewController.swift │ │ │ ├── GoogleCastTableViewController.swift │ │ │ ├── OptionsTableViewController.swift │ │ │ └── StreamToDevicesTableViewController.swift │ │ ├── View Controllers │ │ │ └── CastPlayerViewController.swift │ │ └── Views │ │ │ ├── BarSlider.swift │ │ │ ├── ContinueWatchingCollectionReusableView.xib │ │ │ ├── DownloadTableViewHeader.xib │ │ │ ├── ErrorBackgroundView.xib │ │ │ ├── ProgressBar.swift │ │ │ ├── ProgressSlider.swift │ │ │ └── UIExpandableTextView.swift │ └── tvOS │ │ ├── Collection View Cells │ │ ├── ContinueWatchingCollectionViewCell.swift │ │ ├── ContinueWatchingCollectionViewCell.xib │ │ ├── DescriptionCollectionViewCell.xib │ │ └── DownloadDetailCollectionViewCell.swift │ │ ├── Collection View Controllers │ │ └── EpisodesViewController.swift │ │ ├── Extensions │ │ ├── CollectionViewController+tvOS.swift │ │ ├── DetailViewController+tvOS.swift │ │ ├── ItemViewController+tvOS.swift │ │ ├── MPMediaType.swift │ │ ├── MarqueeLabel+ContentMode.swift │ │ ├── PCTPlayerViewController+tvOS.swift │ │ ├── SearchViewController+tvOS.swift │ │ ├── ShowDetailViewController+tvOS.swift │ │ ├── UIActivityIndicatorViewStyle+Grey.swift │ │ ├── UICollectionViewCell+ReactiveCell.swift │ │ └── UIViewController+Extension.swift │ │ ├── Gesture Recognisers │ │ ├── SiriRemoteGestureRecogniser.swift │ │ └── TapGestureRecogniser.swift │ │ ├── Option View Controllers │ │ ├── AudioViewController.swift │ │ ├── InfoViewController.swift │ │ ├── OptionsStackViewController.swift │ │ ├── OptionsViewController.swift │ │ └── SubtitlesViewController.swift │ │ ├── Presentation Controllers │ │ ├── OptionsPresentationController.swift │ │ ├── TVAppDocumentControllerAnimatedTransitioning.swift │ │ ├── TVBlurOverCurrentContextAnimatedTransitioning.swift │ │ └── TVFadeToBlackAnimatedTransitioning.swift │ │ ├── Table View Cells │ │ └── DownloadDetailTableViewCell.swift │ │ ├── View Controllers │ │ ├── DownloadDetailViewController+tvOS.swift │ │ ├── DownloadViewController+tvOS.swift │ │ ├── ExtendedSubtitleSelectionTableViewController.swift │ │ ├── ExtendedSubtitleViewController.swift │ │ ├── SeasonPickerViewController.swift │ │ ├── TVDescriptionViewController.swift │ │ ├── TVLoadingViewController.swift │ │ ├── TVNavigationController.swift │ │ └── TVTabBarController.swift │ │ └── Views │ │ ├── BufferingBar.swift │ │ ├── ContinueWatchingCollectionReusableView.xib │ │ ├── ErrorBackgroundView.xib │ │ ├── ExtendedSubtitleSelectionViewController.xib │ │ ├── LoadExternalTorrentViewController.swift │ │ ├── LoadingView.xib │ │ ├── ProgressBar.swift │ │ ├── TVButton.swift │ │ ├── TVButton.xib │ │ ├── TVExpandableTextView.swift │ │ ├── TVFadedTextView.swift │ │ └── TVVisualEffectView.swift ├── ar.lproj │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings ├── en.lproj │ ├── Launch Screen.strings │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings ├── es.lproj │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings ├── fr.lproj │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings ├── it.lproj │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings ├── nl-NL.lproj │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings └── pt-BR.lproj │ ├── LoadingView.strings │ ├── Localizable.strings │ ├── TraktAuthenticationViewController.strings │ ├── iOS.strings │ └── tvOS.strings ├── README.md ├── Tests ├── Popcorn TimeUITests │ ├── Info.plist │ └── Popcorn_TimeUITests.swift ├── Popcorn TimeiOSTests │ ├── Info.plist │ └── Popcorn_TimeiOSTests.swift ├── Popcorn TimeiOSUITests │ ├── Info.plist │ └── Popcorn_TimeiOSUITests.swift └── Popcorn TimetvOSTests │ ├── Info.plist │ └── Popcorn_TimetvOSTests.swift └── TopShelf ├── Info.plist ├── ServiceProvider.swift ├── TopShelf.entitlements ├── ar.lproj └── InfoPlist.strings ├── es.lproj └── InfoPlist.strings ├── fr.lproj └── InfoPlist.strings ├── it.lproj └── InfoPlist.strings ├── nl-NL.lproj └── InfoPlist.strings └── pt-BR.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/NOTICE.md -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Podfile.lock -------------------------------------------------------------------------------- /PopcornKit/Managers/AnimeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/AnimeManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/MovieManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/MovieManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/NetworkManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/NetworkManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/PopcornKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/PopcornKit.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/ShowManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/ShowManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/SubtitlesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/SubtitlesManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/TMDBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/TMDBManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/ThemeSongManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/ThemeSongManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/TraktManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/TraktManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/UpdateManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/UpdateManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/WatchedlistManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/WatchedlistManager.swift -------------------------------------------------------------------------------- /PopcornKit/Managers/WatchlistManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Managers/WatchlistManager.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Actor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Actor.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Crew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Crew.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Episode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Episode.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Media.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Movie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Movie.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Person.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Show.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Show.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Subtitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Subtitle.swift -------------------------------------------------------------------------------- /PopcornKit/Models/Torrent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Models/Torrent.swift -------------------------------------------------------------------------------- /PopcornKit/Resources/HtmlDecoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/HtmlDecoding.swift -------------------------------------------------------------------------------- /PopcornKit/Resources/MPAVRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/MPAVRoute.h -------------------------------------------------------------------------------- /PopcornKit/Resources/MPAVRoutingController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/MPAVRoutingController.h -------------------------------------------------------------------------------- /PopcornKit/Resources/MPAVRoutingControllerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/MPAVRoutingControllerDelegate.h -------------------------------------------------------------------------------- /PopcornKit/Resources/MPAudioDeviceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/MPAudioDeviceController.h -------------------------------------------------------------------------------- /PopcornKit/Resources/OAuthCredential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/OAuthCredential.swift -------------------------------------------------------------------------------- /PopcornKit/Resources/SubtitleHashGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Resources/SubtitleHashGenerator.swift -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/PopcornKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Supporting Files/PopcornKit.h -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/PopcornKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Supporting Files/PopcornKit.modulemap -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/ar.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/ar.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/es.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/es.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/fr.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/fr.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Supporting Files/iOS.plist -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/it.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/it.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/nl-NL.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/nl-NL.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/nl-NL.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/pt-BR.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/pt-BR.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornKit/Supporting Files/tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Supporting Files/tvOS.plist -------------------------------------------------------------------------------- /PopcornKit/Trakt/TraktAuthenticationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornKit/Trakt/TraktAuthenticationViewController.swift -------------------------------------------------------------------------------- /PopcornTime.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PopcornTime.xcodeproj/xcshareddata/xcschemes/PopcornTimeiOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime.xcodeproj/xcshareddata/xcschemes/PopcornTimeiOS.xcscheme -------------------------------------------------------------------------------- /PopcornTime.xcodeproj/xcshareddata/xcschemes/PopcornTimetvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime.xcodeproj/xcshareddata/xcschemes/PopcornTimetvOS.xcscheme -------------------------------------------------------------------------------- /PopcornTime.xcodeproj/xcshareddata/xcschemes/TopShelf.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime.xcodeproj/xcshareddata/xcschemes/TopShelf.xcscheme -------------------------------------------------------------------------------- /PopcornTime/Base.lproj/LoadingView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Base.lproj/LoadingView.xib -------------------------------------------------------------------------------- /PopcornTime/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Base.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/Base.lproj/TraktAuthenticationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Base.lproj/TraktAuthenticationViewController.xib -------------------------------------------------------------------------------- /PopcornTime/Base.lproj/iOS.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Base.lproj/iOS.storyboard -------------------------------------------------------------------------------- /PopcornTime/Base.lproj/tvOS.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Base.lproj/tvOS.storyboard -------------------------------------------------------------------------------- /PopcornTime/Extensions/AVMetadataItem+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/AVMetadataItem+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/AppDelegate+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/AppDelegate+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/Array+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/Array+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/CGImage+IsDark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/CGImage+IsDark.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/CGSize+Min.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/CGSize+Min.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/Dictionary+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/Dictionary+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/DispatchQueue+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/DispatchQueue+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/FileManager+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/FileManager+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/FloatRatingView+TintColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/FloatRatingView+TintColor.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/Locale+Langs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/Locale+Langs.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/MPMediaItemProperty+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/MPMediaItemProperty+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/Media+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/Media+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/NSMutableString+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/NSMutableString+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/NSNotificationName+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/NSNotificationName+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/NSObject+Swift_Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/NSObject+Swift_Observer.h -------------------------------------------------------------------------------- /PopcornTime/Extensions/NSObject+Swift_Observer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/NSObject+Swift_Observer.m -------------------------------------------------------------------------------- /PopcornTime/Extensions/PCTPlayerViewController+MediaPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/PCTPlayerViewController+MediaPlayer.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/PCTPlayerViewController+ScreenNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/PCTPlayerViewController+ScreenNotifications.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/Show+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/Show+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/String+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/String+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/TimeInterval+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/TimeInterval+Default.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIAlertController+BlurStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIAlertController+BlurStyle.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIAlertController+Show.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIAlertController+Show.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UICollectionViewCell+CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UICollectionViewCell+CollectionView.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UICollectionViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UICollectionViewController+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIColor+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIColor+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIControlState+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIControlState+Hashable.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIDevice+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIDevice+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIFont+Style.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIFont+Style.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIImage+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UINavigationController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UINavigationController+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIStoryboard+Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIStoryboard+Main.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UITableView+FocusedCellIndexPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UITableView+FocusedCellIndexPath.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UITableViewCell+TableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UITableViewCell+TableView.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/UIView+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/URL+MIME.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/URL+MIME.swift -------------------------------------------------------------------------------- /PopcornTime/Extensions/VLCMediaPlayer+VLCFontAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Extensions/VLCMediaPlayer+VLCFontAppearance.swift -------------------------------------------------------------------------------- /PopcornTime/Resources/AVAudioRoute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/AVAudioRoute.swift -------------------------------------------------------------------------------- /PopcornTime/Resources/AVSpeakerManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/AVSpeakerManager.swift -------------------------------------------------------------------------------- /PopcornTime/Resources/AutoPlayStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/AutoPlayStoryboardSegue.swift -------------------------------------------------------------------------------- /PopcornTime/Resources/DummyStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/DummyStoryboardSegue.swift -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Add.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Add.imageset/button-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Add.imageset/button-add.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Airplay TV.imageset/Airplay-TV_32x22_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Airplay TV.imageset/Airplay-TV_32x22_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Airplay TV.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Airplay TV.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 1.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 1.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 1.imagestacklayer/Content.imageset/Large - Middle 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 1.imagestacklayer/Content.imageset/Large - Middle 2.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 1.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 1.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 2.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 2.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 2.imagestacklayer/Content.imageset/Large - Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 2.imagestacklayer/Content.imageset/Large - Front.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 2.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 2.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 3.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 3.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 3.imagestacklayer/Content.imageset/Large - Middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 3.imagestacklayer/Content.imageset/Large - Middle.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 3.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 3.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 4.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 4.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 4.imagestacklayer/Content.imageset/Large - Middle 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 4.imagestacklayer/Content.imageset/Large - Middle 3.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 4.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 4.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 5.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 5.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 5.imagestacklayer/Content.imageset/Large - Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 5.imagestacklayer/Content.imageset/Large - Back.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 5.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Layer 5.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 1.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 1.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 1.imagestacklayer/Content.imageset/Large - Middle 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 1.imagestacklayer/Content.imageset/Large - Middle 2.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 1.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 1.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 2.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 2.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 2.imagestacklayer/Content.imageset/Large - Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 2.imagestacklayer/Content.imageset/Large - Front.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 2.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 2.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 3.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 3.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 3.imagestacklayer/Content.imageset/Large - Middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 3.imagestacklayer/Content.imageset/Large - Middle.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 3.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 3.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 4.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 4.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 4.imagestacklayer/Content.imageset/Large - Middle 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 4.imagestacklayer/Content.imageset/Large - Middle 3.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 4.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 4.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 5.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 5.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 5.imagestacklayer/Content.imageset/Large - Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 5.imagestacklayer/Content.imageset/Large - Back.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 5.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Layer 5.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/CC.imageset/Badge_CC@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/CC.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/CC.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Checkmark.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Checkmark.imageset/UniversalCheckmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Checkmark.imageset/UniversalCheckmark.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Episode Watched Indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Episode Watched Indicator.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Episode Watched Indicator.imageset/watched-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Episode Watched Indicator.imageset/watched-checkmark.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/ExternalPlaybackIndicatorLarge_131x90_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/ExternalPlaybackIndicatorLarge_131x90_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/ExternalPlaybackIndicatorLarge_131x90_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/ExternalPlaybackIndicatorLarge_131x90_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/ExternalPlaybackIndicatorLarge_131x90_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/External Playback Indicator.imageset/ExternalPlaybackIndicatorLarge_131x90_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Filter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Filter.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Filter.imageset/Filter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Filter.imageset/Filter.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOff.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOff.imageset/cast_off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOff.imageset/cast_off.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn.imageset/cast_on.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn.imageset/cast_on.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn0.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn0.imageset/cast_on0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn0.imageset/cast_on0.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn1.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn1.imageset/cast_on1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn1.imageset/cast_on1-1.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn2.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn2.imageset/cast_on2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/CastOn2.imageset/cast_on2.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Google Cast Assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Google Cast Assets/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/HD.imageset/Badge_HD@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/HD.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/HD.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Icon.imageset/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Icon.imageset/settings.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/LaunchImage.launchimage/Simulator Screen Shot 21 Oct 2016, 18.16.02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/LaunchImage.launchimage/Simulator Screen Shot 21 Oct 2016, 18.16.02.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Movies Off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Movies Off.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Movies Off.imageset/Movies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Movies Off.imageset/Movies.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Movies On.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Movies On.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Movies On.imageset/Movies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Movies On.imageset/Movies.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button-light.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button-light.imageset/onepassword-button-light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button-light.imageset/onepassword-button-light.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button.imageset/onepassword-button.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-button.imageset/onepassword-button.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar-light.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar-light.imageset/onepassword-navbar-light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar-light.imageset/onepassword-navbar-light.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar.imageset/onepassword-navbar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-navbar.imageset/onepassword-navbar.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar-light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar-light.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar-light.imageset/onepassword-toolbar-light.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar-light.imageset/onepassword-toolbar-light.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar.imageset/onepassword-toolbar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/OnePassword Assets/onepassword-toolbar.imageset/onepassword-toolbar.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Episode Placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Episode Placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Episode Placeholder.imageset/PreloadAsset-Dark-TV_600x600_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Episode Placeholder.imageset/PreloadAsset-Dark-TV_600x600_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Movie Placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Movie Placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Movie Placeholder.imageset/PreloadAsset-Dark-Movie_400x600_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Movie Placeholder.imageset/PreloadAsset-Dark-Movie_400x600_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Other Placeholder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Other Placeholder.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Placeholder Assets/Other Placeholder.imageset/PreloadAsset-Dark-Generic16x9_820x460_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Placeholder Assets/Other Placeholder.imageset/PreloadAsset-Dark-Generic16x9_820x460_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Play Small.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Play Small.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Play Small.imageset/play-button-arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Play Small.imageset/play-button-arrow.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Preview.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Preview.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Preview.imageset/button-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Preview.imageset/button-preview.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Badge_MPAA_G@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/G.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Badge_MPAA_NC17@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NC-17.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Badge_MPAA_NR@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/NR.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Badge_MPAA_PG13@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG-13.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Badge_MPAA_PG@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/PG.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Badge_MPAA_R@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Rating Badges/R.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Remove.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Remove.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Remove.imageset/button-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Remove.imageset/button-remove.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/SDH.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/SDH.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/SDH.imageset/metadata-sdh_20x12_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/ScrubberThumb_15x15_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/ScrubberThumb_15x15_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/ScrubberThumb_15x15_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/ScrubberThumb_15x15_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/ScrubberThumb_15x15_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Scrubber Image.imageset/ScrubberThumb_15x15_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Seasons.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Seasons.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Seasons.imageset/Seasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Seasons.imageset/Seasons.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Settings Off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Settings Off.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Settings Off.imageset/cog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Settings Off.imageset/cog.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Settings On.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Settings On.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Settings On.imageset/cog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Settings On.imageset/cog.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Shows Off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Shows Off.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Shows Off.imageset/TV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Shows Off.imageset/TV.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Shows On.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Shows On.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Shows On.imageset/TV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Shows On.imageset/TV.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Star Empty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Star Empty.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Star Empty.imageset/Star Empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Star Empty.imageset/Star Empty.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Star Full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Star Full.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Star Full.imageset/Star Full.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Star Full.imageset/Star Full.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Static Light Blur.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Static Light Blur.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Static Light Blur.imageset/Static Light Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Static Light Blur.imageset/Static Light Blur.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/AirPlay.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/AirPlay.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/AirPlay.imageset/UIButtonBarAirPlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/AirPlay.imageset/UIButtonBarAirPlay.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Close.imageset/Close.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Close.imageset/Close.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Close.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Icon.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Icon@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/CloseiOS.imageset/Icon@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Forward.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Forward@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Fast Forward.imageset/Forward@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/List.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/List.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/List.imageset/UIButtonBarListIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/List.imageset/UIButtonBarListIcon.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/NoSearchResultsEmptyStateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/NoSearchResultsEmptyStateIcon.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/NoSearchResultsEmptyStateIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/NoSearchResultsEmptyStateIcon@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/NoSearchResultsEmptyStateIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/No Search Results.imageset/NoSearchResultsEmptyStateIcon@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Now Playing Info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Now Playing Info.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Now Playing Info.imageset/NowPlayingInfoIcon_251x85_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Now Playing Info.imageset/NowPlayingInfoIcon_251x85_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/PauseButton_23x25_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/PauseButton_23x25_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/PauseButton_23x25_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/PauseButton_23x25_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/PauseButton_23x25_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Pause.imageset/PauseButton_23x25_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/PlayButton_23x25_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/PlayButton_23x25_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/PlayButton_23x25_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/PlayButton_23x25_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/PlayButton_23x25_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/PlayButton_23x25_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/button-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Play.imageset/button-play.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Progress Indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Progress Indicator.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Progress Indicator.imageset/ProgressIndicator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Progress Indicator.imageset/ProgressIndicator.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Rewind.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Rewind@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Rewind@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Rewind@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Rewind.imageset/Rewind@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Fill.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Fill@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Fill@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fill.imageset/Fill@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Fit.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Fit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Fit@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Fit@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Scale To Fit.imageset/Fit@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/ScanBackward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/ScanBackward.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/ScanBackward.imageset/ScanBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/ScanBackward.imageset/ScanBack.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/ScanForward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/ScanForward.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/ScanForward.imageset/NowPlayingFastForward_32x32_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/ScanForward.imageset/NowPlayingFastForward_32x32_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/SystemMediaControl-RewindInterval_25x27_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/SystemMediaControl-RewindInterval_25x27_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/SystemMediaControl-RewindInterval_25x27_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/SystemMediaControl-RewindInterval_25x27_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/SystemMediaControl-RewindInterval_25x27_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack.imageset/SystemMediaControl-RewindInterval_25x27_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack30.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack30.imageset/SkipBackward30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipBack30.imageset/SkipBackward30.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/SystemMediaControl-ForwardInterval_25x27_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/SystemMediaControl-ForwardInterval_25x27_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/SystemMediaControl-ForwardInterval_25x27_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/SystemMediaControl-ForwardInterval_25x27_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/SystemMediaControl-ForwardInterval_25x27_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward.imageset/SystemMediaControl-ForwardInterval_25x27_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward30.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward30.imageset/SkipForward30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/SkipForward30.imageset/SkipForward30.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/MediaSelectionButton_23x18_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/MediaSelectionButton_23x18_@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/MediaSelectionButton_23x18_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/MediaSelectionButton_23x18_@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/MediaSelectionButton_24x19_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Subtitles.imageset/MediaSelectionButton_24x19_@1x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Trash.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Trash.imageset/Trash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Trash.imageset/Trash.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Trash.imageset/UIButtonBarTrash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Trash.imageset/UIButtonBarTrash.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Icon.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Icon@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Maximum.imageset/Icon@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Icon.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Icon@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Stock Assets/Volume Minimum.imageset/Icon@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Finished.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Finished.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Finished.imageset/Download Progress Finished.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Finished.imageset/Download Progress Finished.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Finished.imageset/UniversalAddControlDownloaded.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Finished.imageset/UniversalAddControlDownloaded.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Indeterminate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Indeterminate.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Indeterminate.imageset/Download Progress Indeterminate-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Indeterminate.imageset/Download Progress Indeterminate-1.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Indeterminate.imageset/Download Progress Indeterminate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Indeterminate.imageset/Download Progress Indeterminate.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Pause.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Pause.imageset/Download Progress Pause.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Pause.imageset/Download Progress Pause.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Pause.imageset/DownloadsPauseIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Pause.imageset/DownloadsPauseIcon.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Resume.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Resume.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Resume.imageset/DownloadsResumeIcon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Resume.imageset/DownloadsResumeIcon.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Start.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Start.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Start.imageset/Download Progress Start.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/UIDownloadProgress/Download Progress Start.imageset/Download Progress Start.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Indicator.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Indicator.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Indicator.imageset/indicator-watched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Indicator.imageset/indicator-watched.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Off.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched Off.imageset/watchedOff@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched On.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched On.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn@2x-1.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn@2x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watched On.imageset/watchedOn@3x.png -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watchlist Off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watchlist Off.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watchlist Off.imageset/WatchlistOff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watchlist Off.imageset/WatchlistOff.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watchlist On.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watchlist On.imageset/Contents.json -------------------------------------------------------------------------------- /PopcornTime/Resources/Images.xcassets/Watchlist On.imageset/WatchlistOn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Images.xcassets/Watchlist On.imageset/WatchlistOn.pdf -------------------------------------------------------------------------------- /PopcornTime/Resources/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/Object.swift -------------------------------------------------------------------------------- /PopcornTime/Resources/SubtitleSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Resources/SubtitleSettings.swift -------------------------------------------------------------------------------- /PopcornTime/Startup/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Startup/AppDelegate.swift -------------------------------------------------------------------------------- /PopcornTime/Startup/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Startup/Launch Screen.storyboard -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/Base.xliff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/Base.xliff -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/PopcornTime.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/PopcornTime.entitlements -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/PopcornTimeiOS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/PopcornTimeiOS-Bridging-Header.h -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/PopcornTimetvOS-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/PopcornTimetvOS-Bridging-Header.h -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/ar.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/ar.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/es.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/es.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/fr.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/fr.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/iOS.plist -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/it.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/it.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/nl-NL.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/nl-NL.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/pt-BR.lproj/iOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/pt-BR.lproj/tvOSPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/css/bootstrap.min.css -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/css/font-awesome.min.css -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/favicon.png -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/img/lazyload-ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/img/lazyload-ph.png -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/img/logo.png -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/img/pageload-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/img/pageload-spinner.gif -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/includes/form_48595.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/includes/form_48595.php -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/index.html -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/js/blocs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/js/blocs.min.js -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/js/bootstrap.min.js -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/js/formHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/js/formHandler.js -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/js/jqBootstrapValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/js/jqBootstrapValidation.js -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/js/jquery-2.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/js/jquery-2.1.0.min.js -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/js/lazysizes.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/js/lazysizes.min.js -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/torrent_upload/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/torrent_upload/style.css -------------------------------------------------------------------------------- /PopcornTime/Supporting Files/tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/Supporting Files/tvOS.plist -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Cells/BaseCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Cells/BaseCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Cells/CoverCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Cells/CoverCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Cells/DescriptionCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Cells/DescriptionCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Cells/EpisodeCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Cells/EpisodeCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Cells/MonogramCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Cells/MonogramCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Controllers/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Controllers/CollectionViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Controllers/DescriptionCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Controllers/DescriptionCollectionViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Collection View Controllers/ResponsiveCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Collection View Controllers/ResponsiveCollectionViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Detail View Controllers/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Detail View Controllers/DetailViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Detail View Controllers/DownloadDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Detail View Controllers/DownloadDetailViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Detail View Controllers/MovieDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Detail View Controllers/MovieDetailViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Detail View Controllers/ShowDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Detail View Controllers/ShowDetailViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/MainViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/MediaViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/MediaViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/MoviesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/MoviesViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/PersonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/PersonViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/SearchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/SearchViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/SettingsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/SettingsTableViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/ShowsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/ShowsViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Main View Controllers/WatchlistViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Main View Controllers/WatchlistViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/View Controllers/DownloadViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/View Controllers/DownloadViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/View Controllers/ItemViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/View Controllers/ItemViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/View Controllers/PCTPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/View Controllers/PCTPlayerViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/View Controllers/PreloadTorrentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/View Controllers/PreloadTorrentViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/View Controllers/TermsOfServiceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/View Controllers/TermsOfServiceViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/View Controllers/UpNextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/View Controllers/UpNextViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Views/ContinueWatchingCollectionReusableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Views/ContinueWatchingCollectionReusableView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Views/DownloadButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Views/DownloadButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Views/ErrorBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Views/ErrorBackgroundView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Views/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Views/GradientView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Views/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Views/LoadingView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/Shared/Views/UIDownloadProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/Shared/Views/UIDownloadProgressView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Buttons/BlurButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Buttons/BlurButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Buttons/BorderButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Buttons/BorderButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Buttons/CastIconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Buttons/CastIconButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Buttons/CircularButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Buttons/CircularButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Buttons/WhiteHighlightButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Buttons/WhiteHighlightButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Collection View Cells/ContinueWatchingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Collection View Cells/ContinueWatchingCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Collection View Cells/ContinueWatchingCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Collection View Cells/ContinueWatchingCollectionViewCell.xib -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Collection View Cells/DescriptionCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Collection View Cells/DescriptionCollectionViewCell.xib -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Collection View Controllers/EpisodesCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Collection View Controllers/EpisodesCollectionViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Collection View Layouts/SeparatorCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Collection View Layouts/SeparatorCollectionViewLayout.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Collection View Layouts/SnappingCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Collection View Layouts/SnappingCollectionViewLayout.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Detail View Controllers/EpisodeDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Detail View Controllers/EpisodeDetailViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/CollectionViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/CollectionViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/DetailViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/DetailViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/DownloadDetailViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/DownloadDetailViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/DownloadViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/DownloadViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/GCKDevice+Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/GCKDevice+Equatable.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/GCKMediaTextTrackStyle+Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/GCKMediaTextTrackStyle+Default.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/GCKRequest+CustomData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/GCKRequest+CustomData.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/ItemViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/ItemViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/MPMediaType+Episode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/MPMediaType+Episode.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/MovieDetailViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/MovieDetailViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/MoviesViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/MoviesViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/Number+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/Number+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/PCTPlayerViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/PCTPlayerViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/SearchViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/SearchViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/ShowDetailViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/ShowDetailViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/ShowsViewController+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/ShowsViewController+iOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/String+Emoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/String+Emoji.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/String+Truncation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/String+Truncation.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/UIAlertAction+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/UIAlertAction+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/UICollectionViewLayoutAttributes+Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/UICollectionViewLayoutAttributes+Color.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/UINavigationBar+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/UINavigationBar+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/UIScreen+AspectRatio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/UIScreen+AspectRatio.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Extensions/UIViewController+StatusBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Extensions/UIViewController+StatusBar.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Presentation Controllers/EpisodeDetailPresentationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Presentation Controllers/EpisodeDetailPresentationDelegate.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Presentation Controllers/PreloadTorrentViewControllerAnimatedTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Presentation Controllers/PreloadTorrentViewControllerAnimatedTransitioning.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Cells/AirPlayTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Cells/AirPlayTableViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Cells/DownloadDetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Cells/DownloadDetailTableViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Cells/DownloadTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Cells/DownloadTableViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Cells/StepperTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Cells/StepperTableViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Controllers/ExtendedSubtitleTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Controllers/ExtendedSubtitleTableViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Controllers/GoogleCastTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Controllers/GoogleCastTableViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Controllers/OptionsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Controllers/OptionsTableViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Table View Controllers/StreamToDevicesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Table View Controllers/StreamToDevicesTableViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/View Controllers/CastPlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/View Controllers/CastPlayerViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/BarSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/BarSlider.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/ContinueWatchingCollectionReusableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/ContinueWatchingCollectionReusableView.xib -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/DownloadTableViewHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/DownloadTableViewHeader.xib -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/ErrorBackgroundView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/ErrorBackgroundView.xib -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/ProgressBar.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/ProgressSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/ProgressSlider.swift -------------------------------------------------------------------------------- /PopcornTime/UI/iOS/Views/UIExpandableTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/iOS/Views/UIExpandableTextView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Collection View Cells/ContinueWatchingCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Collection View Cells/ContinueWatchingCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Collection View Cells/ContinueWatchingCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Collection View Cells/ContinueWatchingCollectionViewCell.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Collection View Cells/DescriptionCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Collection View Cells/DescriptionCollectionViewCell.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Collection View Cells/DownloadDetailCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Collection View Cells/DownloadDetailCollectionViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Collection View Controllers/EpisodesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Collection View Controllers/EpisodesViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/CollectionViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/CollectionViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/DetailViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/DetailViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/ItemViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/ItemViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/MPMediaType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/MPMediaType.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/MarqueeLabel+ContentMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/MarqueeLabel+ContentMode.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/PCTPlayerViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/PCTPlayerViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/SearchViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/SearchViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/ShowDetailViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/ShowDetailViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/UIActivityIndicatorViewStyle+Grey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/UIActivityIndicatorViewStyle+Grey.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/UICollectionViewCell+ReactiveCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/UICollectionViewCell+ReactiveCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Extensions/UIViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Extensions/UIViewController+Extension.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Gesture Recognisers/SiriRemoteGestureRecogniser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Gesture Recognisers/SiriRemoteGestureRecogniser.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Gesture Recognisers/TapGestureRecogniser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Gesture Recognisers/TapGestureRecogniser.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Option View Controllers/AudioViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Option View Controllers/AudioViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Option View Controllers/InfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Option View Controllers/InfoViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Option View Controllers/OptionsStackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Option View Controllers/OptionsStackViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Option View Controllers/OptionsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Option View Controllers/OptionsViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Option View Controllers/SubtitlesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Option View Controllers/SubtitlesViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Presentation Controllers/OptionsPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Presentation Controllers/OptionsPresentationController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Presentation Controllers/TVAppDocumentControllerAnimatedTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Presentation Controllers/TVAppDocumentControllerAnimatedTransitioning.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Presentation Controllers/TVBlurOverCurrentContextAnimatedTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Presentation Controllers/TVBlurOverCurrentContextAnimatedTransitioning.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Presentation Controllers/TVFadeToBlackAnimatedTransitioning.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Presentation Controllers/TVFadeToBlackAnimatedTransitioning.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Table View Cells/DownloadDetailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Table View Cells/DownloadDetailTableViewCell.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/DownloadDetailViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/DownloadDetailViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/DownloadViewController+tvOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/DownloadViewController+tvOS.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/ExtendedSubtitleSelectionTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/ExtendedSubtitleSelectionTableViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/ExtendedSubtitleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/ExtendedSubtitleViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/SeasonPickerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/SeasonPickerViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/TVDescriptionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/TVDescriptionViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/TVLoadingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/TVLoadingViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/TVNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/TVNavigationController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/View Controllers/TVTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/View Controllers/TVTabBarController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/BufferingBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/BufferingBar.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/ContinueWatchingCollectionReusableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/ContinueWatchingCollectionReusableView.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/ErrorBackgroundView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/ErrorBackgroundView.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/ExtendedSubtitleSelectionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/ExtendedSubtitleSelectionViewController.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/LoadExternalTorrentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/LoadExternalTorrentViewController.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/LoadingView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/LoadingView.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/ProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/ProgressBar.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/TVButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/TVButton.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/TVButton.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/TVButton.xib -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/TVExpandableTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/TVExpandableTextView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/TVFadedTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/TVFadedTextView.swift -------------------------------------------------------------------------------- /PopcornTime/UI/tvOS/Views/TVVisualEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/UI/tvOS/Views/TVVisualEffectView.swift -------------------------------------------------------------------------------- /PopcornTime/ar.lproj/LoadingView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/ar.lproj/LoadingView.strings -------------------------------------------------------------------------------- /PopcornTime/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/ar.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/ar.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/ar.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/ar.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/ar.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/ar.lproj/tvOS.strings -------------------------------------------------------------------------------- /PopcornTime/en.lproj/Launch Screen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PopcornTime/en.lproj/LoadingView.strings: -------------------------------------------------------------------------------- 1 | 2 | "9zp-GC-F8p.text" = "LOADING"; 3 | -------------------------------------------------------------------------------- /PopcornTime/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/en.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/en.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/en.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/en.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/en.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/en.lproj/tvOS.strings -------------------------------------------------------------------------------- /PopcornTime/es.lproj/LoadingView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/es.lproj/LoadingView.strings -------------------------------------------------------------------------------- /PopcornTime/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/es.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/es.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/es.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/es.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/es.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/es.lproj/tvOS.strings -------------------------------------------------------------------------------- /PopcornTime/fr.lproj/LoadingView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/fr.lproj/LoadingView.strings -------------------------------------------------------------------------------- /PopcornTime/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/fr.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/fr.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/fr.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/fr.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/fr.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/fr.lproj/tvOS.strings -------------------------------------------------------------------------------- /PopcornTime/it.lproj/LoadingView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/it.lproj/LoadingView.strings -------------------------------------------------------------------------------- /PopcornTime/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/it.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/it.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/it.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/it.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/it.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/it.lproj/tvOS.strings -------------------------------------------------------------------------------- /PopcornTime/nl-NL.lproj/LoadingView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/nl-NL.lproj/LoadingView.strings -------------------------------------------------------------------------------- /PopcornTime/nl-NL.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/nl-NL.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/nl-NL.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/nl-NL.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/nl-NL.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/nl-NL.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/nl-NL.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/nl-NL.lproj/tvOS.strings -------------------------------------------------------------------------------- /PopcornTime/pt-BR.lproj/LoadingView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/pt-BR.lproj/LoadingView.strings -------------------------------------------------------------------------------- /PopcornTime/pt-BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/pt-BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /PopcornTime/pt-BR.lproj/TraktAuthenticationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/pt-BR.lproj/TraktAuthenticationViewController.strings -------------------------------------------------------------------------------- /PopcornTime/pt-BR.lproj/iOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/pt-BR.lproj/iOS.strings -------------------------------------------------------------------------------- /PopcornTime/pt-BR.lproj/tvOS.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/PopcornTime/pt-BR.lproj/tvOS.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Popcorn TimeUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimeUITests/Info.plist -------------------------------------------------------------------------------- /Tests/Popcorn TimeUITests/Popcorn_TimeUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimeUITests/Popcorn_TimeUITests.swift -------------------------------------------------------------------------------- /Tests/Popcorn TimeiOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimeiOSTests/Info.plist -------------------------------------------------------------------------------- /Tests/Popcorn TimeiOSTests/Popcorn_TimeiOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimeiOSTests/Popcorn_TimeiOSTests.swift -------------------------------------------------------------------------------- /Tests/Popcorn TimeiOSUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimeiOSUITests/Info.plist -------------------------------------------------------------------------------- /Tests/Popcorn TimeiOSUITests/Popcorn_TimeiOSUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimeiOSUITests/Popcorn_TimeiOSUITests.swift -------------------------------------------------------------------------------- /Tests/Popcorn TimetvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimetvOSTests/Info.plist -------------------------------------------------------------------------------- /Tests/Popcorn TimetvOSTests/Popcorn_TimetvOSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/Tests/Popcorn TimetvOSTests/Popcorn_TimetvOSTests.swift -------------------------------------------------------------------------------- /TopShelf/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/TopShelf/Info.plist -------------------------------------------------------------------------------- /TopShelf/ServiceProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/TopShelf/ServiceProvider.swift -------------------------------------------------------------------------------- /TopShelf/TopShelf.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popcorn-official/PopcornTimeTV/HEAD/TopShelf/TopShelf.entitlements -------------------------------------------------------------------------------- /TopShelf/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /TopShelf/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TopShelf/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /TopShelf/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /TopShelf/nl-NL.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ 2 | -------------------------------------------------------------------------------- /TopShelf/pt-BR.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ --------------------------------------------------------------------------------