├── .gitignore ├── LICENSE ├── Localizations └── Base.lproj │ └── rezka-player--InfoPlist.strings ├── README.md ├── Raw └── icon.xcf ├── Shared ├── Api │ ├── ApiConstants.swift │ ├── DataFetchPhase.swift │ └── Rezka │ │ ├── ConstantsApi.swift │ │ ├── Responses │ │ ├── DetailedMediaRezkaAPIResponse.swift │ │ ├── MediaRezkaAPIResponse.swift │ │ ├── NavigationRezkaApiResponse.swift │ │ ├── SeriesMediaRezkaAPIResponse.swift │ │ └── StreamRezkaApiResponse.swift │ │ ├── RezkaMediaApi.swift │ │ └── RezkaNavigationApi.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── Categories │ │ ├── CategoryAnimationColor.colorset │ │ │ └── Contents.json │ │ ├── CategoryCartoonsColor.colorset │ │ │ └── Contents.json │ │ ├── CategoryFilmColor.colorset │ │ │ └── Contents.json │ │ ├── CategoryGeneralColor.colorset │ │ │ └── Contents.json │ │ ├── CategorySeriesColor.colorset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Contents.json │ ├── MediaTileBackgroundColor.colorset │ │ └── Contents.json │ └── MediaTileSeriesBackgroundColor.colorset │ │ └── Contents.json ├── ContentView.swift ├── ContentViewModel.swift ├── CustomView │ ├── CacheAsyncImage.swift │ ├── Navigation │ │ ├── CategoriesListItem.swift │ │ ├── CategoryList.swift │ │ ├── CategoryListView.swift │ │ ├── CategoryView.swift │ │ ├── ListItemView.swift │ │ ├── PreviewDetailView.swift │ │ └── SubcategoryListView.swift │ └── SizeClassAdaptiveView.swift ├── Extensions │ ├── CaseIterable+Index.swift │ ├── Dictionary+SwiftUI.swift │ ├── String+Base64.swift │ ├── String+Propaganda.swift │ ├── Strings+Filter.swift │ └── View+FirstAppear.swift ├── Media │ ├── DetailedMediaItem │ │ ├── DetailedHistoryMedia.swift │ │ ├── DetailedMedia.swift │ │ ├── DetailedMediaItemView.swift │ │ ├── DetailedMediaItemViewModel.swift │ │ └── Focusable.swift │ ├── General │ │ ├── EmptyPlaceholderView.swift │ │ └── RetryView.swift │ ├── ImagePreview │ │ └── ImagePreviewView.swift │ ├── MediaBookmarks │ │ └── MediaBookmarksViewModel.swift │ ├── MediaCategories │ │ ├── Category.swift │ │ ├── CategoryMedias.swift │ │ └── MediaCategoriesViewModel.swift │ ├── MediaContent │ │ ├── MediaContentView.swift │ │ └── MediaContentViewModel.swift │ ├── MediaHistory │ │ └── MediaHistoryView.swift │ ├── MediaItem │ │ ├── Media.swift │ │ └── MediaItemViewView.swift │ ├── MediaSearch │ │ ├── MediaSearchContentViewModel.swift │ │ └── MediaSearchView.swift │ └── MediaSettings.swift ├── Player │ ├── HLSURLRouter.swift │ └── PlayerViewController.swift ├── Stores │ ├── Cache │ │ ├── Cache.swift │ │ ├── CacheEntry.swift │ │ ├── CacheImplementation.swift │ │ └── KeysTracker.swift │ └── DataStore.swift └── rezka_playerApp.swift ├── iOS └── icon-ios.xcassets │ ├── AppIcon.appiconset │ ├── Contents.json │ └── icon.png │ └── Contents.json ├── macOS ├── icon-mac.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-128.png │ │ ├── icon-128@2x.png │ │ ├── icon-16.png │ │ ├── icon-16@2x.png │ │ ├── icon-256.png │ │ ├── icon-256@2x.png │ │ ├── icon-32.png │ │ ├── icon-32@2x.png │ │ ├── icon-512.png │ │ └── icon-512@2x.png │ └── Contents.json └── macOS.entitlements ├── rezka-player-Info.plist ├── rezka-player.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── rezka-player.xcscheme ├── screenshots └── tvos.png └── tvOS └── icon-tv.xcassets ├── Brand Assets.brandassets ├── App Icon - App Store.imagestack │ ├── Back.imagestacklayer │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ └── back.png │ │ └── Contents.json │ ├── Contents.json │ ├── Front.imagestacklayer │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Middle.imagestacklayer │ │ ├── Content.imageset │ │ ├── Contents.json │ │ └── midle.png │ │ └── Contents.json ├── App Icon.imagestack │ ├── Back.imagestacklayer │ │ ├── Content.imageset │ │ │ ├── Contents.json │ │ │ ├── back.png │ │ │ └── back@2x.png │ │ └── Contents.json │ ├── Contents.json │ ├── Front.imagestacklayer │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Middle.imagestacklayer │ │ ├── Content.imageset │ │ ├── Contents.json │ │ ├── midle.png │ │ └── midle@2x.png │ │ └── Contents.json ├── Contents.json ├── Top Shelf Image Wide.imageset │ ├── Contents.json │ └── shelf-wide.png └── Top Shelf Image.imageset │ ├── Contents.json │ └── shelf.png └── Contents.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/LICENSE -------------------------------------------------------------------------------- /Localizations/Base.lproj/rezka-player--InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Localizations/Base.lproj/rezka-player--InfoPlist.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/README.md -------------------------------------------------------------------------------- /Raw/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Raw/icon.xcf -------------------------------------------------------------------------------- /Shared/Api/ApiConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/ApiConstants.swift -------------------------------------------------------------------------------- /Shared/Api/DataFetchPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/DataFetchPhase.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/ConstantsApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/ConstantsApi.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/Responses/DetailedMediaRezkaAPIResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/Responses/DetailedMediaRezkaAPIResponse.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/Responses/MediaRezkaAPIResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/Responses/MediaRezkaAPIResponse.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/Responses/NavigationRezkaApiResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/Responses/NavigationRezkaApiResponse.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/Responses/SeriesMediaRezkaAPIResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/Responses/SeriesMediaRezkaAPIResponse.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/Responses/StreamRezkaApiResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/Responses/StreamRezkaApiResponse.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/RezkaMediaApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/RezkaMediaApi.swift -------------------------------------------------------------------------------- /Shared/Api/Rezka/RezkaNavigationApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Api/Rezka/RezkaNavigationApi.swift -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Categories/CategoryAnimationColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Categories/CategoryAnimationColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Categories/CategoryCartoonsColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Categories/CategoryCartoonsColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Categories/CategoryFilmColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Categories/CategoryFilmColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Categories/CategoryGeneralColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Categories/CategoryGeneralColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Categories/CategorySeriesColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Categories/CategorySeriesColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Categories/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Categories/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/MediaTileBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/MediaTileBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/MediaTileSeriesBackgroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Assets.xcassets/MediaTileSeriesBackgroundColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/ContentView.swift -------------------------------------------------------------------------------- /Shared/ContentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/ContentViewModel.swift -------------------------------------------------------------------------------- /Shared/CustomView/CacheAsyncImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/CacheAsyncImage.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/CategoriesListItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/CategoriesListItem.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/CategoryList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/CategoryList.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/CategoryListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/CategoryListView.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/CategoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/CategoryView.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/ListItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/ListItemView.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/PreviewDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/PreviewDetailView.swift -------------------------------------------------------------------------------- /Shared/CustomView/Navigation/SubcategoryListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/Navigation/SubcategoryListView.swift -------------------------------------------------------------------------------- /Shared/CustomView/SizeClassAdaptiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/CustomView/SizeClassAdaptiveView.swift -------------------------------------------------------------------------------- /Shared/Extensions/CaseIterable+Index.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Extensions/CaseIterable+Index.swift -------------------------------------------------------------------------------- /Shared/Extensions/Dictionary+SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Extensions/Dictionary+SwiftUI.swift -------------------------------------------------------------------------------- /Shared/Extensions/String+Base64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Extensions/String+Base64.swift -------------------------------------------------------------------------------- /Shared/Extensions/String+Propaganda.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Extensions/String+Propaganda.swift -------------------------------------------------------------------------------- /Shared/Extensions/Strings+Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Extensions/Strings+Filter.swift -------------------------------------------------------------------------------- /Shared/Extensions/View+FirstAppear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Extensions/View+FirstAppear.swift -------------------------------------------------------------------------------- /Shared/Media/DetailedMediaItem/DetailedHistoryMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/DetailedMediaItem/DetailedHistoryMedia.swift -------------------------------------------------------------------------------- /Shared/Media/DetailedMediaItem/DetailedMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/DetailedMediaItem/DetailedMedia.swift -------------------------------------------------------------------------------- /Shared/Media/DetailedMediaItem/DetailedMediaItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/DetailedMediaItem/DetailedMediaItemView.swift -------------------------------------------------------------------------------- /Shared/Media/DetailedMediaItem/DetailedMediaItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/DetailedMediaItem/DetailedMediaItemViewModel.swift -------------------------------------------------------------------------------- /Shared/Media/DetailedMediaItem/Focusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/DetailedMediaItem/Focusable.swift -------------------------------------------------------------------------------- /Shared/Media/General/EmptyPlaceholderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/General/EmptyPlaceholderView.swift -------------------------------------------------------------------------------- /Shared/Media/General/RetryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/General/RetryView.swift -------------------------------------------------------------------------------- /Shared/Media/ImagePreview/ImagePreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/ImagePreview/ImagePreviewView.swift -------------------------------------------------------------------------------- /Shared/Media/MediaBookmarks/MediaBookmarksViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaBookmarks/MediaBookmarksViewModel.swift -------------------------------------------------------------------------------- /Shared/Media/MediaCategories/Category.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaCategories/Category.swift -------------------------------------------------------------------------------- /Shared/Media/MediaCategories/CategoryMedias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaCategories/CategoryMedias.swift -------------------------------------------------------------------------------- /Shared/Media/MediaCategories/MediaCategoriesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaCategories/MediaCategoriesViewModel.swift -------------------------------------------------------------------------------- /Shared/Media/MediaContent/MediaContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaContent/MediaContentView.swift -------------------------------------------------------------------------------- /Shared/Media/MediaContent/MediaContentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaContent/MediaContentViewModel.swift -------------------------------------------------------------------------------- /Shared/Media/MediaHistory/MediaHistoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaHistory/MediaHistoryView.swift -------------------------------------------------------------------------------- /Shared/Media/MediaItem/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaItem/Media.swift -------------------------------------------------------------------------------- /Shared/Media/MediaItem/MediaItemViewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaItem/MediaItemViewView.swift -------------------------------------------------------------------------------- /Shared/Media/MediaSearch/MediaSearchContentViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaSearch/MediaSearchContentViewModel.swift -------------------------------------------------------------------------------- /Shared/Media/MediaSearch/MediaSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaSearch/MediaSearchView.swift -------------------------------------------------------------------------------- /Shared/Media/MediaSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Media/MediaSettings.swift -------------------------------------------------------------------------------- /Shared/Player/HLSURLRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Player/HLSURLRouter.swift -------------------------------------------------------------------------------- /Shared/Player/PlayerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Player/PlayerViewController.swift -------------------------------------------------------------------------------- /Shared/Stores/Cache/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Stores/Cache/Cache.swift -------------------------------------------------------------------------------- /Shared/Stores/Cache/CacheEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Stores/Cache/CacheEntry.swift -------------------------------------------------------------------------------- /Shared/Stores/Cache/CacheImplementation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Stores/Cache/CacheImplementation.swift -------------------------------------------------------------------------------- /Shared/Stores/Cache/KeysTracker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Stores/Cache/KeysTracker.swift -------------------------------------------------------------------------------- /Shared/Stores/DataStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/Stores/DataStore.swift -------------------------------------------------------------------------------- /Shared/rezka_playerApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/Shared/rezka_playerApp.swift -------------------------------------------------------------------------------- /iOS/icon-ios.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/iOS/icon-ios.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/icon-ios.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/iOS/icon-ios.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /iOS/icon-ios.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/iOS/icon-ios.xcassets/Contents.json -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-128.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-128@2x.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-16.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-16@2x.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-256.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-256@2x.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-32.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-32@2x.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-512.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/AppIcon.appiconset/icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/AppIcon.appiconset/icon-512@2x.png -------------------------------------------------------------------------------- /macOS/icon-mac.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/icon-mac.xcassets/Contents.json -------------------------------------------------------------------------------- /macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/macOS/macOS.entitlements -------------------------------------------------------------------------------- /rezka-player-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/rezka-player-Info.plist -------------------------------------------------------------------------------- /rezka-player.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/rezka-player.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /rezka-player.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/rezka-player.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /rezka-player.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/rezka-player.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /rezka-player.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/rezka-player.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /rezka-player.xcodeproj/xcshareddata/xcschemes/rezka-player.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/rezka-player.xcodeproj/xcshareddata/xcschemes/rezka-player.xcscheme -------------------------------------------------------------------------------- /screenshots/tvos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/screenshots/tvos.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/back.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/midle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/midle.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/back@2x.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/midle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/midle.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/midle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/midle@2x.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/shelf-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/shelf-wide.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/shelf.png -------------------------------------------------------------------------------- /tvOS/icon-tv.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/rezka-payer/HEAD/tvOS/icon-tv.xcassets/Contents.json --------------------------------------------------------------------------------