├── .github └── workflows │ └── build.yml ├── .gitignore ├── .metadata ├── .vscode └── settings.json ├── LICENSE ├── Privacy Statement.md ├── README.md ├── README_en.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── playboy │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── devtools_options.yaml ├── l10n ├── en_us.json └── manifest.json ├── lib ├── backend │ ├── actions.dart │ ├── app.dart │ ├── constants.dart │ ├── keymap_helper.dart │ ├── library_helper.dart │ ├── ml │ │ ├── subtitle_generator.dart │ │ └── whisper_model_list.dart │ ├── models │ │ ├── contributor.dart │ │ ├── playitem.dart │ │ ├── playitem.g.dart │ │ ├── playlist_item.dart │ │ ├── playlist_item.g.dart │ │ ├── settings.dart │ │ └── settings.g.dart │ ├── player_ex.dart │ └── utils │ │ ├── l10n_utils.dart │ │ ├── media_utils.dart │ │ ├── route_utils.dart │ │ ├── sliver_utils.dart │ │ ├── string_utils.dart │ │ ├── theme_utils.dart │ │ └── time_utils.dart ├── main.dart ├── pages │ ├── file │ │ ├── file_card.dart │ │ ├── file_explorer.dart │ │ └── folder_listtile.dart │ ├── home.dart │ ├── home │ │ └── titlebar.dart │ ├── library │ │ ├── common_media_menu.dart │ │ ├── library_page.dart │ │ └── media_menu.dart │ ├── media │ │ ├── player_menu.dart │ │ ├── player_page.dart │ │ └── seekbar_builder.dart │ ├── playlist │ │ ├── common_playlist_menu.dart │ │ ├── playlist_card.dart │ │ ├── playlist_detail.dart │ │ ├── playlist_listtile.dart │ │ ├── playlist_loader.dart │ │ ├── playlist_menu.dart │ │ └── playlist_page.dart │ └── settings │ │ ├── categories │ │ ├── about_app_settings.dart │ │ ├── appearance_settings.dart │ │ ├── developer_settings.dart │ │ ├── keymap_settings.dart │ │ ├── language_settings.dart │ │ ├── player_settings.dart │ │ ├── storage_settings.dart │ │ └── whisper_settings.dart │ │ └── settings_page.dart └── widgets │ ├── animated_cross_slide.dart │ ├── basic_video.dart │ ├── cover.dart │ ├── cover_card.dart │ ├── cover_listtile.dart │ ├── empty_holder.dart │ ├── error_holder.dart │ ├── folding_holder.dart │ ├── icon_switch_listtile.dart │ ├── image.dart │ ├── interactive_wrapper.dart │ ├── library │ ├── library_header.dart │ ├── library_header_old.dart │ ├── library_listtile.dart │ ├── library_title.dart │ └── library_title_old.dart │ ├── loading_holder.dart │ ├── menu │ ├── menu_button.dart │ └── menu_item.dart │ ├── path_setting_card.dart │ ├── player_list.dart │ ├── playlist_picker.dart │ ├── readme.md │ └── settings_message_box.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 ├── res ├── contributors │ ├── KernelInterrupt.jpg │ ├── rubbrt.jpg │ └── yui.jpg └── images │ ├── icon512.png │ ├── icon_bg.png │ ├── icon_fg.png │ └── icon_mono.png ├── screenshots ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png └── screenshot4.png ├── versions.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/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/LICENSE -------------------------------------------------------------------------------- /Privacy Statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/Privacy Statement.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/README_en.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/playboy/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/kotlin/com/example/playboy/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/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/Playboy-Player/Playboy/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /l10n/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/l10n/en_us.json -------------------------------------------------------------------------------- /l10n/manifest.json: -------------------------------------------------------------------------------- 1 | [ 2 | "en_us" 3 | ] -------------------------------------------------------------------------------- /lib/backend/actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/actions.dart -------------------------------------------------------------------------------- /lib/backend/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/app.dart -------------------------------------------------------------------------------- /lib/backend/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/constants.dart -------------------------------------------------------------------------------- /lib/backend/keymap_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/keymap_helper.dart -------------------------------------------------------------------------------- /lib/backend/library_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/library_helper.dart -------------------------------------------------------------------------------- /lib/backend/ml/subtitle_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/ml/subtitle_generator.dart -------------------------------------------------------------------------------- /lib/backend/ml/whisper_model_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/ml/whisper_model_list.dart -------------------------------------------------------------------------------- /lib/backend/models/contributor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/contributor.dart -------------------------------------------------------------------------------- /lib/backend/models/playitem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/playitem.dart -------------------------------------------------------------------------------- /lib/backend/models/playitem.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/playitem.g.dart -------------------------------------------------------------------------------- /lib/backend/models/playlist_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/playlist_item.dart -------------------------------------------------------------------------------- /lib/backend/models/playlist_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/playlist_item.g.dart -------------------------------------------------------------------------------- /lib/backend/models/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/settings.dart -------------------------------------------------------------------------------- /lib/backend/models/settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/models/settings.g.dart -------------------------------------------------------------------------------- /lib/backend/player_ex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/player_ex.dart -------------------------------------------------------------------------------- /lib/backend/utils/l10n_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/l10n_utils.dart -------------------------------------------------------------------------------- /lib/backend/utils/media_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/media_utils.dart -------------------------------------------------------------------------------- /lib/backend/utils/route_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/route_utils.dart -------------------------------------------------------------------------------- /lib/backend/utils/sliver_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/sliver_utils.dart -------------------------------------------------------------------------------- /lib/backend/utils/string_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/string_utils.dart -------------------------------------------------------------------------------- /lib/backend/utils/theme_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/theme_utils.dart -------------------------------------------------------------------------------- /lib/backend/utils/time_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/backend/utils/time_utils.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/file/file_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/file/file_card.dart -------------------------------------------------------------------------------- /lib/pages/file/file_explorer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/file/file_explorer.dart -------------------------------------------------------------------------------- /lib/pages/file/folder_listtile.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pages/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/home.dart -------------------------------------------------------------------------------- /lib/pages/home/titlebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/home/titlebar.dart -------------------------------------------------------------------------------- /lib/pages/library/common_media_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/library/common_media_menu.dart -------------------------------------------------------------------------------- /lib/pages/library/library_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/library/library_page.dart -------------------------------------------------------------------------------- /lib/pages/library/media_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/library/media_menu.dart -------------------------------------------------------------------------------- /lib/pages/media/player_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/media/player_menu.dart -------------------------------------------------------------------------------- /lib/pages/media/player_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/media/player_page.dart -------------------------------------------------------------------------------- /lib/pages/media/seekbar_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/media/seekbar_builder.dart -------------------------------------------------------------------------------- /lib/pages/playlist/common_playlist_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/common_playlist_menu.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/playlist_card.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/playlist_detail.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist_listtile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/playlist_listtile.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/playlist_loader.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/playlist_menu.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/playlist/playlist_page.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/about_app_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/about_app_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/appearance_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/appearance_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/developer_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/developer_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/keymap_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/keymap_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/language_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/language_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/player_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/player_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/storage_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/storage_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/categories/whisper_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/categories/whisper_settings.dart -------------------------------------------------------------------------------- /lib/pages/settings/settings_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/pages/settings/settings_page.dart -------------------------------------------------------------------------------- /lib/widgets/animated_cross_slide.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/animated_cross_slide.dart -------------------------------------------------------------------------------- /lib/widgets/basic_video.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/basic_video.dart -------------------------------------------------------------------------------- /lib/widgets/cover.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/cover.dart -------------------------------------------------------------------------------- /lib/widgets/cover_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/cover_card.dart -------------------------------------------------------------------------------- /lib/widgets/cover_listtile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/cover_listtile.dart -------------------------------------------------------------------------------- /lib/widgets/empty_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/empty_holder.dart -------------------------------------------------------------------------------- /lib/widgets/error_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/error_holder.dart -------------------------------------------------------------------------------- /lib/widgets/folding_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/folding_holder.dart -------------------------------------------------------------------------------- /lib/widgets/icon_switch_listtile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/icon_switch_listtile.dart -------------------------------------------------------------------------------- /lib/widgets/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/image.dart -------------------------------------------------------------------------------- /lib/widgets/interactive_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/interactive_wrapper.dart -------------------------------------------------------------------------------- /lib/widgets/library/library_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/library/library_header.dart -------------------------------------------------------------------------------- /lib/widgets/library/library_header_old.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/library/library_header_old.dart -------------------------------------------------------------------------------- /lib/widgets/library/library_listtile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/library/library_listtile.dart -------------------------------------------------------------------------------- /lib/widgets/library/library_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/library/library_title.dart -------------------------------------------------------------------------------- /lib/widgets/library/library_title_old.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/library/library_title_old.dart -------------------------------------------------------------------------------- /lib/widgets/loading_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/loading_holder.dart -------------------------------------------------------------------------------- /lib/widgets/menu/menu_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/menu/menu_button.dart -------------------------------------------------------------------------------- /lib/widgets/menu/menu_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/menu/menu_item.dart -------------------------------------------------------------------------------- /lib/widgets/path_setting_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/path_setting_card.dart -------------------------------------------------------------------------------- /lib/widgets/player_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/player_list.dart -------------------------------------------------------------------------------- /lib/widgets/playlist_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/playlist_picker.dart -------------------------------------------------------------------------------- /lib/widgets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/readme.md -------------------------------------------------------------------------------- /lib/widgets/settings_message_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/lib/widgets/settings_message_box.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/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/Playboy-Player/Playboy/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/Playboy-Player/Playboy/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/Playboy-Player/Playboy/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/Playboy-Player/Playboy/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/Playboy-Player/Playboy/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/Playboy-Player/Playboy/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /res/contributors/KernelInterrupt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/contributors/KernelInterrupt.jpg -------------------------------------------------------------------------------- /res/contributors/rubbrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/contributors/rubbrt.jpg -------------------------------------------------------------------------------- /res/contributors/yui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/contributors/yui.jpg -------------------------------------------------------------------------------- /res/images/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/images/icon512.png -------------------------------------------------------------------------------- /res/images/icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/images/icon_bg.png -------------------------------------------------------------------------------- /res/images/icon_fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/images/icon_fg.png -------------------------------------------------------------------------------- /res/images/icon_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/res/images/icon_mono.png -------------------------------------------------------------------------------- /screenshots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/screenshots/screenshot1.png -------------------------------------------------------------------------------- /screenshots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/screenshots/screenshot2.png -------------------------------------------------------------------------------- /screenshots/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/screenshots/screenshot3.png -------------------------------------------------------------------------------- /screenshots/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/screenshots/screenshot4.png -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "latest": "Beta 2025.4" 3 | } -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Playboy-Player/Playboy/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------