├── .github ├── ISSUE_TEMPLATE │ ├── feature request.yml │ └── issue report.yml └── workflows │ ├── ci.yml │ └── deploy.yml ├── .gitignore ├── .metadata ├── .vscode └── launch.json ├── CNAME ├── GitVersion.yml ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── ambark │ │ │ │ └── jellyflix │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable │ │ │ ├── banner.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── appstore │ ├── banner.png │ ├── desktop │ │ ├── desktop1.png │ │ ├── desktop2.png │ │ ├── desktop3.png │ │ ├── desktop4.png │ │ └── desktop5.png │ ├── ios │ │ ├── ios1.png │ │ ├── ios2.png │ │ ├── ios3.png │ │ ├── ios4.png │ │ └── ios5.png │ ├── mobile │ │ ├── mobile1.png │ │ ├── mobile2.png │ │ ├── mobile3.png │ │ ├── mobile4.png │ │ └── mobile5.png │ └── tablet │ │ ├── ipad1.png │ │ ├── ipad2.png │ │ ├── ipad3.png │ │ ├── ipad4.png │ │ ├── ipad5.png │ │ ├── tablet1.png │ │ ├── tablet2.png │ │ ├── tablet3.png │ │ ├── tablet4.png │ │ └── tablet5.png ├── fonts │ └── droid-sans.ttf └── icon │ ├── app_icon.png │ ├── icon.png │ ├── icon_bw.png │ └── macOS_icon.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ExportOptions.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── RunnerTests │ └── RunnerTests.swift ├── build │ └── .last_build_id └── fastlane │ ├── Appfile │ ├── Fastfile │ ├── Matchfile │ ├── README.md │ └── report.xml ├── l10n.yaml ├── lib ├── components │ ├── description_text.dart │ ├── download_icon.dart │ ├── download_item_tile.dart │ ├── download_settings_dialog.dart │ ├── episode_list.dart │ ├── episode_list_tile.dart │ ├── filter_button.dart │ ├── future_item_carousel.dart │ ├── genre_banner.dart │ ├── image_banner.dart │ ├── image_banner_inner_landscape.dart │ ├── image_banner_inner_portrait.dart │ ├── item_carousel.dart │ ├── item_carousel_label.dart │ ├── item_information_details.dart │ ├── item_list_tile.dart │ ├── jellyfin_image.dart │ ├── jfx_button_row.dart │ ├── jfx_filter_list_dialog.dart │ ├── jfx_layout.dart │ ├── jfx_text_theme.dart │ ├── jfx_tile.dart │ ├── login_messages.dart │ ├── navigation_drawer_tile.dart │ ├── paginated_item_carousel.dart │ ├── playback_progress_overlay.dart │ ├── player_settings_dialog.dart │ ├── profile_card.dart │ ├── profile_image.dart │ ├── profile_placeholder_image.dart │ ├── quick_connect_dialog.dart │ ├── recommendation_carousels.dart │ ├── responsive_navigation_bar.dart │ ├── rounded_download_button.dart │ ├── set_download_bitrate_dialog.dart │ └── switch_settings_tile.dart ├── l10n │ ├── app_ca.arb │ ├── app_de.arb │ ├── app_en.arb │ ├── app_es.arb │ ├── app_fr.arb │ ├── app_he.arb │ ├── app_it.arb │ ├── app_ko.arb │ ├── app_mn.arb │ ├── app_nl.arb │ ├── app_pl.arb │ ├── app_sv.arb │ ├── app_tr.arb │ └── app_zh.arb ├── main.dart ├── models │ ├── auth_state.dart │ ├── bitrates.dart │ ├── download_metadata.dart │ ├── filter_type.dart │ ├── gradients.dart │ ├── playback_info_response_serializer.dart │ ├── poster_type.dart │ ├── screen_paths.dart │ ├── skeleton_item.dart │ ├── user.dart │ └── user.g.dart ├── navigation │ └── app_router.dart ├── providers │ ├── api_provider.dart │ ├── auth_provider.dart │ ├── connectivity_provider.dart │ ├── database_provider.dart │ ├── device_info_provider.dart │ ├── download_provider.dart │ ├── logger_provider.dart │ ├── player_helper_provider.dart │ ├── router_provider.dart │ ├── scaffold_key.dart │ └── secure_storage_provider.dart ├── screens │ ├── detail_screen.dart │ ├── download_screen.dart │ ├── home_screen.dart │ ├── library_screen.dart │ ├── loading_screen.dart │ ├── login_password_screen.dart │ ├── login_quickconnect_screen.dart │ ├── login_screen.dart │ ├── login_wrapper_screen.dart │ ├── player_screen.dart │ ├── profile_screen.dart │ ├── profile_selection_screen.dart │ └── search_screen.dart └── services │ ├── api_service.dart │ ├── auth_service.dart │ ├── connectivity_service.dart │ ├── database_service.dart │ ├── device_info_service.dart │ ├── download_service.dart │ ├── jfx_logger.dart │ ├── offline_player_helper.dart │ ├── player_helper.dart │ ├── secure_storage_service.dart │ └── stream_player_helper.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/ISSUE_TEMPLATE/feature request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.github/ISSUE_TEMPLATE/feature request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.github/ISSUE_TEMPLATE/issue report.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | jellyflix.kiejon.com -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/ambark/jellyflix/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/kotlin/com/ambark/jellyflix/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/drawable/banner.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/appstore/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/banner.png -------------------------------------------------------------------------------- /assets/appstore/desktop/desktop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/desktop/desktop1.png -------------------------------------------------------------------------------- /assets/appstore/desktop/desktop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/desktop/desktop2.png -------------------------------------------------------------------------------- /assets/appstore/desktop/desktop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/desktop/desktop3.png -------------------------------------------------------------------------------- /assets/appstore/desktop/desktop4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/desktop/desktop4.png -------------------------------------------------------------------------------- /assets/appstore/desktop/desktop5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/desktop/desktop5.png -------------------------------------------------------------------------------- /assets/appstore/ios/ios1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/ios/ios1.png -------------------------------------------------------------------------------- /assets/appstore/ios/ios2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/ios/ios2.png -------------------------------------------------------------------------------- /assets/appstore/ios/ios3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/ios/ios3.png -------------------------------------------------------------------------------- /assets/appstore/ios/ios4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/ios/ios4.png -------------------------------------------------------------------------------- /assets/appstore/ios/ios5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/ios/ios5.png -------------------------------------------------------------------------------- /assets/appstore/mobile/mobile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/mobile/mobile1.png -------------------------------------------------------------------------------- /assets/appstore/mobile/mobile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/mobile/mobile2.png -------------------------------------------------------------------------------- /assets/appstore/mobile/mobile3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/mobile/mobile3.png -------------------------------------------------------------------------------- /assets/appstore/mobile/mobile4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/mobile/mobile4.png -------------------------------------------------------------------------------- /assets/appstore/mobile/mobile5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/mobile/mobile5.png -------------------------------------------------------------------------------- /assets/appstore/tablet/ipad1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/ipad1.png -------------------------------------------------------------------------------- /assets/appstore/tablet/ipad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/ipad2.png -------------------------------------------------------------------------------- /assets/appstore/tablet/ipad3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/ipad3.png -------------------------------------------------------------------------------- /assets/appstore/tablet/ipad4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/ipad4.png -------------------------------------------------------------------------------- /assets/appstore/tablet/ipad5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/ipad5.png -------------------------------------------------------------------------------- /assets/appstore/tablet/tablet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/tablet1.png -------------------------------------------------------------------------------- /assets/appstore/tablet/tablet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/tablet2.png -------------------------------------------------------------------------------- /assets/appstore/tablet/tablet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/tablet3.png -------------------------------------------------------------------------------- /assets/appstore/tablet/tablet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/tablet4.png -------------------------------------------------------------------------------- /assets/appstore/tablet/tablet5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/appstore/tablet/tablet5.png -------------------------------------------------------------------------------- /assets/fonts/droid-sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/fonts/droid-sans.ttf -------------------------------------------------------------------------------- /assets/icon/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/icon/app_icon.png -------------------------------------------------------------------------------- /assets/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/icon/icon.png -------------------------------------------------------------------------------- /assets/icon/icon_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/icon/icon_bw.png -------------------------------------------------------------------------------- /assets/icon/macOS_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/assets/icon/macOS_icon.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" -------------------------------------------------------------------------------- /ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Gemfile.lock -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/ExportOptions.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /ios/build/.last_build_id: -------------------------------------------------------------------------------- 1 | 429f3cc30da3753cf181ad291d557290 -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/fastlane/Appfile -------------------------------------------------------------------------------- /ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /ios/fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/fastlane/Matchfile -------------------------------------------------------------------------------- /ios/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/fastlane/README.md -------------------------------------------------------------------------------- /ios/fastlane/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/ios/fastlane/report.xml -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/components/description_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/description_text.dart -------------------------------------------------------------------------------- /lib/components/download_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/download_icon.dart -------------------------------------------------------------------------------- /lib/components/download_item_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/download_item_tile.dart -------------------------------------------------------------------------------- /lib/components/download_settings_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/download_settings_dialog.dart -------------------------------------------------------------------------------- /lib/components/episode_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/episode_list.dart -------------------------------------------------------------------------------- /lib/components/episode_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/episode_list_tile.dart -------------------------------------------------------------------------------- /lib/components/filter_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/filter_button.dart -------------------------------------------------------------------------------- /lib/components/future_item_carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/future_item_carousel.dart -------------------------------------------------------------------------------- /lib/components/genre_banner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/genre_banner.dart -------------------------------------------------------------------------------- /lib/components/image_banner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/image_banner.dart -------------------------------------------------------------------------------- /lib/components/image_banner_inner_landscape.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/image_banner_inner_landscape.dart -------------------------------------------------------------------------------- /lib/components/image_banner_inner_portrait.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/image_banner_inner_portrait.dart -------------------------------------------------------------------------------- /lib/components/item_carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/item_carousel.dart -------------------------------------------------------------------------------- /lib/components/item_carousel_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/item_carousel_label.dart -------------------------------------------------------------------------------- /lib/components/item_information_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/item_information_details.dart -------------------------------------------------------------------------------- /lib/components/item_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/item_list_tile.dart -------------------------------------------------------------------------------- /lib/components/jellyfin_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/jellyfin_image.dart -------------------------------------------------------------------------------- /lib/components/jfx_button_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/jfx_button_row.dart -------------------------------------------------------------------------------- /lib/components/jfx_filter_list_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/jfx_filter_list_dialog.dart -------------------------------------------------------------------------------- /lib/components/jfx_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/jfx_layout.dart -------------------------------------------------------------------------------- /lib/components/jfx_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/jfx_text_theme.dart -------------------------------------------------------------------------------- /lib/components/jfx_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/jfx_tile.dart -------------------------------------------------------------------------------- /lib/components/login_messages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/login_messages.dart -------------------------------------------------------------------------------- /lib/components/navigation_drawer_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/navigation_drawer_tile.dart -------------------------------------------------------------------------------- /lib/components/paginated_item_carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/paginated_item_carousel.dart -------------------------------------------------------------------------------- /lib/components/playback_progress_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/playback_progress_overlay.dart -------------------------------------------------------------------------------- /lib/components/player_settings_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/player_settings_dialog.dart -------------------------------------------------------------------------------- /lib/components/profile_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/profile_card.dart -------------------------------------------------------------------------------- /lib/components/profile_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/profile_image.dart -------------------------------------------------------------------------------- /lib/components/profile_placeholder_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/profile_placeholder_image.dart -------------------------------------------------------------------------------- /lib/components/quick_connect_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/quick_connect_dialog.dart -------------------------------------------------------------------------------- /lib/components/recommendation_carousels.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/recommendation_carousels.dart -------------------------------------------------------------------------------- /lib/components/responsive_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/responsive_navigation_bar.dart -------------------------------------------------------------------------------- /lib/components/rounded_download_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/rounded_download_button.dart -------------------------------------------------------------------------------- /lib/components/set_download_bitrate_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/set_download_bitrate_dialog.dart -------------------------------------------------------------------------------- /lib/components/switch_settings_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/components/switch_settings_tile.dart -------------------------------------------------------------------------------- /lib/l10n/app_ca.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_ca.arb -------------------------------------------------------------------------------- /lib/l10n/app_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_de.arb -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_fr.arb -------------------------------------------------------------------------------- /lib/l10n/app_he.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_he.arb -------------------------------------------------------------------------------- /lib/l10n/app_it.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_it.arb -------------------------------------------------------------------------------- /lib/l10n/app_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_ko.arb -------------------------------------------------------------------------------- /lib/l10n/app_mn.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_mn.arb -------------------------------------------------------------------------------- /lib/l10n/app_nl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_nl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_pl.arb -------------------------------------------------------------------------------- /lib/l10n/app_sv.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_sv.arb -------------------------------------------------------------------------------- /lib/l10n/app_tr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_tr.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/auth_state.dart -------------------------------------------------------------------------------- /lib/models/bitrates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/bitrates.dart -------------------------------------------------------------------------------- /lib/models/download_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/download_metadata.dart -------------------------------------------------------------------------------- /lib/models/filter_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/filter_type.dart -------------------------------------------------------------------------------- /lib/models/gradients.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/gradients.dart -------------------------------------------------------------------------------- /lib/models/playback_info_response_serializer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/playback_info_response_serializer.dart -------------------------------------------------------------------------------- /lib/models/poster_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/poster_type.dart -------------------------------------------------------------------------------- /lib/models/screen_paths.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/screen_paths.dart -------------------------------------------------------------------------------- /lib/models/skeleton_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/skeleton_item.dart -------------------------------------------------------------------------------- /lib/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/user.dart -------------------------------------------------------------------------------- /lib/models/user.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/models/user.g.dart -------------------------------------------------------------------------------- /lib/navigation/app_router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/navigation/app_router.dart -------------------------------------------------------------------------------- /lib/providers/api_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/api_provider.dart -------------------------------------------------------------------------------- /lib/providers/auth_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/auth_provider.dart -------------------------------------------------------------------------------- /lib/providers/connectivity_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/connectivity_provider.dart -------------------------------------------------------------------------------- /lib/providers/database_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/database_provider.dart -------------------------------------------------------------------------------- /lib/providers/device_info_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/device_info_provider.dart -------------------------------------------------------------------------------- /lib/providers/download_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/download_provider.dart -------------------------------------------------------------------------------- /lib/providers/logger_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/logger_provider.dart -------------------------------------------------------------------------------- /lib/providers/player_helper_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/player_helper_provider.dart -------------------------------------------------------------------------------- /lib/providers/router_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/router_provider.dart -------------------------------------------------------------------------------- /lib/providers/scaffold_key.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/scaffold_key.dart -------------------------------------------------------------------------------- /lib/providers/secure_storage_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/providers/secure_storage_provider.dart -------------------------------------------------------------------------------- /lib/screens/detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/detail_screen.dart -------------------------------------------------------------------------------- /lib/screens/download_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/download_screen.dart -------------------------------------------------------------------------------- /lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/library_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/library_screen.dart -------------------------------------------------------------------------------- /lib/screens/loading_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/loading_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/login_password_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_quickconnect_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/login_quickconnect_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/screens/login_wrapper_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/login_wrapper_screen.dart -------------------------------------------------------------------------------- /lib/screens/player_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/player_screen.dart -------------------------------------------------------------------------------- /lib/screens/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/profile_screen.dart -------------------------------------------------------------------------------- /lib/screens/profile_selection_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/profile_selection_screen.dart -------------------------------------------------------------------------------- /lib/screens/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/screens/search_screen.dart -------------------------------------------------------------------------------- /lib/services/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/api_service.dart -------------------------------------------------------------------------------- /lib/services/auth_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/auth_service.dart -------------------------------------------------------------------------------- /lib/services/connectivity_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/connectivity_service.dart -------------------------------------------------------------------------------- /lib/services/database_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/database_service.dart -------------------------------------------------------------------------------- /lib/services/device_info_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/device_info_service.dart -------------------------------------------------------------------------------- /lib/services/download_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/download_service.dart -------------------------------------------------------------------------------- /lib/services/jfx_logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/jfx_logger.dart -------------------------------------------------------------------------------- /lib/services/offline_player_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/offline_player_helper.dart -------------------------------------------------------------------------------- /lib/services/player_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/player_helper.dart -------------------------------------------------------------------------------- /lib/services/secure_storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/secure_storage_service.dart -------------------------------------------------------------------------------- /lib/services/stream_player_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/lib/services/stream_player_helper.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jellyflix-app/jellyflix/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------