├── .dockerignore ├── .env.example ├── .fvm └── fvm_config.json ├── .fvmrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── new_feature.yml ├── dependabot.yml └── workflows │ ├── potential-duplicates.yml │ ├── pr-lint.yml │ ├── spotube-publish-binary.yml │ └── spotube-release-binary.yml ├── .gitignore ├── .metadata ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json ├── snippets.code-snippets └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTION.md ├── LICENSE ├── Makefile ├── PRIVACY_POLICY.md ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── app │ │ │ │ └── FlutterMultiDexApplication.java │ │ ├── kotlin │ │ │ └── oss │ │ │ │ └── krtirtho │ │ │ │ └── spotube │ │ │ │ ├── MainActivity.kt │ │ │ │ └── glance │ │ │ │ ├── HomePlayerWidget.kt │ │ │ │ ├── HomePlayerWidgetReceiver.kt │ │ │ │ ├── models │ │ │ │ ├── AlbumSimple.kt │ │ │ │ ├── Artist.kt │ │ │ │ ├── Image.kt │ │ │ │ └── Track.kt │ │ │ │ └── widgets │ │ │ │ ├── Base64ImageProvider.kt │ │ │ │ ├── FlutterAssetImageProvider.kt │ │ │ │ ├── TrackDetailsView.kt │ │ │ │ └── TrackProgress.kt │ │ └── res │ │ │ ├── drawable-hdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-hdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-mdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-mdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-night-hdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-hdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-mdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-mdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xxxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ ├── ic_launcher_monochrome.xml │ │ │ └── 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-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── automotive_app_desc.xml │ │ │ └── home_player_widget_config.xml │ │ ├── nightly │ │ └── res │ │ │ ├── drawable-hdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-hdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-mdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-mdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-night-hdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-hdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-mdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-mdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-night-xxxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi-v31 │ │ │ └── android12branding.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── android12splash.png │ │ │ ├── branding.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ ├── ic_launcher_monochrome.xml │ │ │ └── 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-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── appdmg.json ├── assets ├── branding │ ├── branding.png │ ├── mobile-screenshots │ │ ├── android-1.jpg │ │ ├── android-2.jpg │ │ ├── android-3.jpg │ │ ├── android-4.jpg │ │ ├── android-5.jpg │ │ └── combined.jpg │ ├── spotube-hero-banner.png │ ├── spotube-logo-foreground.png │ ├── spotube-logo-item.png │ ├── spotube-logo-light.png │ ├── spotube-logo-macos.png │ ├── spotube-logo.bmp │ ├── spotube-logo.ico │ ├── spotube-logo.png │ ├── spotube-logo_android12.png │ ├── spotube-nightly-item.png │ ├── spotube-nightly-logo-foreground.png │ ├── spotube-nightly-logo-foreground.svg │ ├── spotube-nightly-logo.png │ ├── spotube-nightly-logo_android12.png │ ├── spotube-screenshot.png │ ├── spotube-tall-capsule.png │ ├── spotube-wide-capsule-large.png │ ├── spotube-wide-capsule-small.png │ └── spotube_banner.png ├── fonts │ ├── Cookie-Regular.ttf │ └── Ubuntu_Mono │ │ ├── UFL.txt │ │ ├── UbuntuMono-Bold.ttf │ │ ├── UbuntuMono-BoldItalic.ttf │ │ ├── UbuntuMono-Italic.ttf │ │ └── UbuntuMono-Regular.ttf ├── images │ ├── album-placeholder.png │ ├── bengali-patterns-bg.jpg │ ├── liked-tracks.jpg │ ├── logos │ │ ├── dab-music.png │ │ ├── invidious.jpg │ │ └── jiosaavn.png │ ├── placeholder.png │ └── user-placeholder.png └── plugins │ ├── spotube-plugin-musicbrainz-listenbrainz │ └── plugin.smplug │ └── spotube-plugin-youtube-audio │ └── plugin.smplug ├── aur-struct ├── .SRCINFO └── PKGBUILD ├── choco-struct ├── spotube.nuspec └── tools │ ├── LICENSE.txt │ ├── VERIFICATION.txt │ ├── chocolateyinstall.ps1 │ └── chocolateyuninstall.ps1 ├── cli ├── README.md ├── cli.dart ├── commands │ ├── build.dart │ ├── build │ │ ├── android.dart │ │ ├── common.dart │ │ ├── ios.dart │ │ ├── linux.dart │ │ ├── macos.dart │ │ └── windows.dart │ ├── credits.dart │ ├── install-dependencies.dart │ ├── translated.dart │ └── untranslated.dart └── core │ └── env.dart ├── cliff.toml ├── devtools_options.yaml ├── distribute_options.yaml ├── drift_schemas └── app_db │ ├── drift_schema_v1.json │ ├── drift_schema_v10.json │ ├── drift_schema_v2.json │ ├── drift_schema_v3.json │ ├── drift_schema_v4.json │ ├── drift_schema_v5.json │ ├── drift_schema_v6.json │ ├── drift_schema_v7.json │ ├── drift_schema_v8.json │ └── drift_schema_v9.json ├── flutter_launcher_icons-nightly.yaml ├── flutter_launcher_icons.yaml ├── flutter_native_splash-nightly.yaml ├── integration_test └── app_test.dart ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── HomePlayerWidget │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── WidgetBackground.colorset │ │ │ └── Contents.json │ ├── HomePlayerWidget.swift │ ├── HomePlayerWidgetBundle.swift │ └── Info.plist ├── HomePlayerWidgetExtension.entitlements ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ ├── Runner.xcscheme │ │ ├── dev.xcscheme │ │ ├── nightly.xcscheme │ │ └── stable.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon-nightly.appiconset │ │ │ ├── AppIcon-nightly-1024x1024@1x.png │ │ │ ├── AppIcon-nightly-20x20@1x.png │ │ │ ├── AppIcon-nightly-20x20@2x.png │ │ │ ├── AppIcon-nightly-20x20@3x.png │ │ │ ├── AppIcon-nightly-29x29@1x.png │ │ │ ├── AppIcon-nightly-29x29@2x.png │ │ │ ├── AppIcon-nightly-29x29@3x.png │ │ │ ├── AppIcon-nightly-40x40@1x.png │ │ │ ├── AppIcon-nightly-40x40@2x.png │ │ │ ├── AppIcon-nightly-40x40@3x.png │ │ │ ├── AppIcon-nightly-50x50@1x.png │ │ │ ├── AppIcon-nightly-50x50@2x.png │ │ │ ├── AppIcon-nightly-57x57@1x.png │ │ │ ├── AppIcon-nightly-57x57@2x.png │ │ │ ├── AppIcon-nightly-60x60@2x.png │ │ │ ├── AppIcon-nightly-60x60@3x.png │ │ │ ├── AppIcon-nightly-72x72@1x.png │ │ │ ├── AppIcon-nightly-72x72@2x.png │ │ │ ├── AppIcon-nightly-76x76@1x.png │ │ │ ├── AppIcon-nightly-76x76@2x.png │ │ │ ├── AppIcon-nightly-83.5x83.5@2x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-1024x1024@1x.png │ │ │ ├── AppIcon-20x20@1x.png │ │ │ ├── AppIcon-20x20@2x.png │ │ │ ├── AppIcon-20x20@3x.png │ │ │ ├── AppIcon-29x29@1x.png │ │ │ ├── AppIcon-29x29@2x.png │ │ │ ├── AppIcon-29x29@3x.png │ │ │ ├── AppIcon-40x40@1x.png │ │ │ ├── AppIcon-40x40@2x.png │ │ │ ├── AppIcon-40x40@3x.png │ │ │ ├── AppIcon-50x50@1x.png │ │ │ ├── AppIcon-50x50@2x.png │ │ │ ├── AppIcon-57x57@1x.png │ │ │ ├── AppIcon-57x57@2x.png │ │ │ ├── AppIcon-60x60@2x.png │ │ │ ├── AppIcon-60x60@3x.png │ │ │ ├── AppIcon-72x72@1x.png │ │ │ ├── AppIcon-72x72@2x.png │ │ │ ├── AppIcon-76x76@1x.png │ │ │ ├── AppIcon-76x76@2x.png │ │ │ ├── AppIcon-83.5x83.5@2x.png │ │ │ ├── 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 │ │ ├── BrandingImage.imageset │ │ │ ├── BrandingImage.png │ │ │ ├── BrandingImage@2x.png │ │ │ ├── BrandingImage@3x.png │ │ │ └── Contents.json │ │ ├── BrandingImageNightly.imageset │ │ │ ├── BrandingImage.png │ │ │ ├── BrandingImage@2x.png │ │ │ ├── BrandingImage@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchBackground.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ │ ├── LaunchBackgroundNightly.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ │ ├── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ └── LaunchImageNightly.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ └── LaunchImage@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ ├── LaunchScreenNightly.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements ├── build │ └── .last_build_id ├── dev-Info.plist ├── dev.entitlements ├── nightly-Info.plist ├── nightly.entitlements ├── stable-Info.plist └── stable.entitlements ├── l10n.yaml ├── lib ├── collections │ ├── assets.gen.dart │ ├── env.dart │ ├── fake.dart │ ├── fonts.gen.dart │ ├── formatters.dart │ ├── gradients.dart │ ├── http-override.dart │ ├── initializers.dart │ ├── intents.dart │ ├── language_codes.dart │ ├── markets.dart │ ├── routes.dart │ ├── routes.gr.dart │ ├── side_bar_tiles.dart │ └── spotube_icons.dart ├── components │ ├── adaptive │ │ ├── adaptive_list_tile.dart │ │ ├── adaptive_pop_sheet_list.dart │ │ └── adaptive_select_tile.dart │ ├── button │ │ └── back_button.dart │ ├── dialogs │ │ ├── confirm_download_dialog.dart │ │ ├── link_open_permission_dialog.dart │ │ ├── playlist_add_track_dialog.dart │ │ ├── prompt_dialog.dart │ │ ├── replace_downloaded_dialog.dart │ │ ├── select_device_dialog.dart │ │ └── track_details_dialog.dart │ ├── expandable_search │ │ └── expandable_search.dart │ ├── fallbacks │ │ ├── anonymous_fallback.dart │ │ ├── error_box.dart │ │ ├── no_default_metadata_plugin.dart │ │ └── not_found.dart │ ├── form │ │ ├── checkbox_form_field.dart │ │ └── text_form_field.dart │ ├── framework │ │ └── app_pop_scope.dart │ ├── heart_button │ │ ├── heart_button.dart │ │ └── use_track_toggle_like.dart │ ├── horizontal_playbutton_card_view │ │ └── horizontal_playbutton_card_view.dart │ ├── hover_builder.dart │ ├── image │ │ └── universal_image.dart │ ├── inter_scrollbar │ │ └── inter_scrollbar.dart │ ├── links │ │ ├── anchor_button.dart │ │ ├── artist_link.dart │ │ ├── hyper_link.dart │ │ └── link_text.dart │ ├── markdown │ │ └── markdown.dart │ ├── playbutton_view │ │ ├── playbutton_card.dart │ │ ├── playbutton_tile.dart │ │ └── playbutton_view.dart │ ├── shimmers │ │ └── shimmer_lyrics.dart │ ├── titlebar │ │ ├── titlebar.dart │ │ ├── titlebar_buttons.dart │ │ └── titlebar_icon_buttons.dart │ ├── track_presentation │ │ ├── presentation_actions.dart │ │ ├── presentation_list.dart │ │ ├── presentation_modifiers.dart │ │ ├── presentation_props.dart │ │ ├── presentation_state.dart │ │ ├── presentation_top.dart │ │ ├── sort_tracks_dropdown.dart │ │ ├── track_presentation.dart │ │ ├── use_action_callbacks.dart │ │ ├── use_is_user_playlist.dart │ │ └── use_track_tile_play_callback.dart │ ├── track_tile │ │ ├── track_options.dart │ │ ├── track_options_button.dart │ │ └── track_tile.dart │ ├── ui │ │ └── button_tile.dart │ └── waypoint.dart ├── extensions │ ├── button_variance.dart │ ├── color.dart │ ├── constrains.dart │ ├── context.dart │ ├── dio.dart │ ├── duration.dart │ ├── list.dart │ ├── map.dart │ └── string.dart ├── generated_plugin_registrant.dart ├── hooks │ ├── configurators │ │ ├── use_check_yt_dlp_installed.dart │ │ ├── use_close_behavior.dart │ │ ├── use_deep_linking.dart │ │ ├── use_disable_battery_optimizations.dart │ │ ├── use_endless_playback.dart │ │ ├── use_fix_window_stretching.dart │ │ ├── use_get_storage_perms.dart │ │ ├── use_has_touch.dart │ │ └── use_window_listener.dart │ ├── controllers │ │ ├── use_auto_scroll_controller.dart │ │ ├── use_package_info.dart │ │ └── use_shadcn_text_editing_controller.dart │ └── utils │ │ ├── use_async_effect.dart │ │ ├── use_breakpoint_value.dart │ │ ├── use_brightness_value.dart │ │ ├── use_custom_status_bar_color.dart │ │ ├── use_debounce.dart │ │ ├── use_force_update.dart │ │ └── use_palette_color.dart ├── l10n │ ├── app_ar.arb │ ├── app_bn.arb │ ├── app_ca.arb │ ├── app_cs.arb │ ├── app_de.arb │ ├── app_en.arb │ ├── app_es.arb │ ├── app_eu.arb │ ├── app_fa.arb │ ├── app_fi.arb │ ├── app_fr.arb │ ├── app_hi.arb │ ├── app_id.arb │ ├── app_it.arb │ ├── app_ja.arb │ ├── app_ka.arb │ ├── app_ko.arb │ ├── app_ne.arb │ ├── app_nl.arb │ ├── app_pl.arb │ ├── app_pt.arb │ ├── app_ru.arb │ ├── app_ta.arb │ ├── app_th.arb │ ├── app_tl.arb │ ├── app_tr.arb │ ├── app_uk.arb │ ├── app_vi.arb │ ├── app_zh.arb │ ├── app_zh_TW.arb │ ├── generated │ │ ├── app_localizations.dart │ │ ├── app_localizations_ar.dart │ │ ├── app_localizations_bn.dart │ │ ├── app_localizations_ca.dart │ │ ├── app_localizations_cs.dart │ │ ├── app_localizations_de.dart │ │ ├── app_localizations_en.dart │ │ ├── app_localizations_es.dart │ │ ├── app_localizations_eu.dart │ │ ├── app_localizations_fa.dart │ │ ├── app_localizations_fi.dart │ │ ├── app_localizations_fr.dart │ │ ├── app_localizations_hi.dart │ │ ├── app_localizations_id.dart │ │ ├── app_localizations_it.dart │ │ ├── app_localizations_ja.dart │ │ ├── app_localizations_ka.dart │ │ ├── app_localizations_ko.dart │ │ ├── app_localizations_ne.dart │ │ ├── app_localizations_nl.dart │ │ ├── app_localizations_pl.dart │ │ ├── app_localizations_pt.dart │ │ ├── app_localizations_ru.dart │ │ ├── app_localizations_ta.dart │ │ ├── app_localizations_th.dart │ │ ├── app_localizations_tl.dart │ │ ├── app_localizations_tr.dart │ │ ├── app_localizations_uk.dart │ │ ├── app_localizations_vi.dart │ │ └── app_localizations_zh.dart │ └── l10n.dart ├── main.dart ├── models │ ├── connect │ │ ├── connect.dart │ │ ├── connect.freezed.dart │ │ ├── connect.g.dart │ │ ├── load.dart │ │ └── ws_event.dart │ ├── database │ │ ├── database.dart │ │ ├── database.g.dart │ │ ├── database.steps.dart │ │ ├── tables │ │ │ ├── audio_player_state.dart │ │ │ ├── authentication.dart │ │ │ ├── blacklist.dart │ │ │ ├── history.dart │ │ │ ├── lyrics.dart │ │ │ ├── metadata_plugins.dart │ │ │ ├── preferences.dart │ │ │ ├── scrobbler.dart │ │ │ ├── skip_segment.dart │ │ │ └── source_match.dart │ │ └── typeconverters │ │ │ ├── color.dart │ │ │ ├── encrypted_text.dart │ │ │ ├── locale.dart │ │ │ ├── map.dart │ │ │ ├── map_list.dart │ │ │ ├── string_list.dart │ │ │ └── subtitle.dart │ ├── lyrics.dart │ ├── metadata │ │ ├── album.dart │ │ ├── artist.dart │ │ ├── audio_source.dart │ │ ├── browse.dart │ │ ├── fields.dart │ │ ├── image.dart │ │ ├── market.dart │ │ ├── metadata.dart │ │ ├── metadata.freezed.dart │ │ ├── metadata.g.dart │ │ ├── pagination.dart │ │ ├── playlist.dart │ │ ├── plugin.dart │ │ ├── repository.dart │ │ ├── search.dart │ │ ├── track.dart │ │ └── user.dart │ ├── parser │ │ └── range_headers.dart │ └── playback │ │ ├── track_sources.dart │ │ └── track_sources.g.dart ├── modules │ ├── album │ │ └── album_card.dart │ ├── artist │ │ ├── artist_album_list.dart │ │ └── artist_card.dart │ ├── connect │ │ ├── connect_device.dart │ │ └── local_devices.dart │ ├── getting_started │ │ └── blur_card.dart │ ├── home │ │ └── sections │ │ │ ├── featured.dart │ │ │ ├── new_releases.dart │ │ │ ├── recent.dart │ │ │ └── sections.dart │ ├── library │ │ ├── local_folder │ │ │ ├── cache_export_dialog.dart │ │ │ └── local_folder_item.dart │ │ └── user_downloads │ │ │ └── download_item.dart │ ├── lyrics │ │ ├── use_synced_lyrics.dart │ │ └── zoom_controls.dart │ ├── metadata_plugins │ │ ├── installed_plugin.dart │ │ ├── plugin_repository.dart │ │ └── plugin_update_available_dialog.dart │ ├── player │ │ ├── player.dart │ │ ├── player_actions.dart │ │ ├── player_controls.dart │ │ ├── player_overlay.dart │ │ ├── player_overlay_collapsed.dart │ │ ├── player_queue.dart │ │ ├── player_queue_actions.dart │ │ ├── player_track_details.dart │ │ ├── sibling_tracks_sheet.dart │ │ ├── use_progress.dart │ │ └── volume_slider.dart │ ├── playlist │ │ ├── playlist_card.dart │ │ └── playlist_create_dialog.dart │ ├── root │ │ ├── bottom_player.dart │ │ ├── sidebar │ │ │ ├── sidebar.dart │ │ │ └── sidebar_footer.dart │ │ ├── spotube_navigation_bar.dart │ │ ├── update_dialog.dart │ │ └── use_global_subscriptions.dart │ ├── search │ │ ├── loading.dart │ │ └── sections │ │ │ ├── albums.dart │ │ │ ├── artists.dart │ │ │ ├── playlists.dart │ │ │ └── tracks.dart │ ├── settings │ │ ├── color_scheme_picker_dialog.dart │ │ ├── playback │ │ │ ├── edit_connect_port_dialog.dart │ │ │ └── edit_instance_url_dialog.dart │ │ ├── section_card_with_heading.dart │ │ └── youtube_engine_not_installed_dialog.dart │ └── stats │ │ ├── common │ │ ├── album_item.dart │ │ ├── artist_item.dart │ │ ├── playlist_item.dart │ │ └── track_item.dart │ │ ├── summary │ │ ├── summary.dart │ │ └── summary_card.dart │ │ └── top │ │ ├── albums.dart │ │ ├── artists.dart │ │ ├── top.dart │ │ └── tracks.dart ├── pages │ ├── album │ │ └── album.dart │ ├── artist │ │ ├── artist.dart │ │ └── section │ │ │ ├── footer.dart │ │ │ ├── header.dart │ │ │ ├── related_artists.dart │ │ │ └── top_tracks.dart │ ├── connect │ │ ├── connect.dart │ │ └── control │ │ │ └── control.dart │ ├── getting_started │ │ ├── getting_started.dart │ │ └── sections │ │ │ ├── greeting.dart │ │ │ ├── playback.dart │ │ │ ├── region.dart │ │ │ └── support.dart │ ├── home │ │ ├── home.dart │ │ └── sections │ │ │ └── section_items.dart │ ├── lastfm_login │ │ └── lastfm_login.dart │ ├── library │ │ ├── library.dart │ │ ├── user_albums.dart │ │ ├── user_artists.dart │ │ ├── user_downloads.dart │ │ ├── user_local_tracks │ │ │ ├── local_folder.dart │ │ │ └── user_local_tracks.dart │ │ └── user_playlists.dart │ ├── lyrics │ │ ├── lyrics.dart │ │ ├── mini_lyrics.dart │ │ ├── plain_lyrics.dart │ │ └── synced_lyrics.dart │ ├── player │ │ ├── lyrics.dart │ │ ├── queue.dart │ │ └── sources.dart │ ├── playlist │ │ ├── liked_playlist.dart │ │ └── playlist.dart │ ├── profile │ │ └── profile.dart │ ├── root │ │ └── root_app.dart │ ├── search │ │ ├── search.dart │ │ └── tabs │ │ │ ├── albums.dart │ │ │ ├── all.dart │ │ │ ├── artists.dart │ │ │ ├── playlists.dart │ │ │ └── tracks.dart │ ├── settings │ │ ├── about.dart │ │ ├── blacklist.dart │ │ ├── logs.dart │ │ ├── metadata │ │ │ └── metadata_form.dart │ │ ├── metadata_plugins.dart │ │ ├── scrobbling │ │ │ └── scrobbling.dart │ │ ├── sections │ │ │ ├── about.dart │ │ │ ├── accounts.dart │ │ │ ├── appearance.dart │ │ │ ├── desktop.dart │ │ │ ├── developers.dart │ │ │ ├── downloads.dart │ │ │ ├── language_region.dart │ │ │ └── playback.dart │ │ └── settings.dart │ ├── stats │ │ ├── albums │ │ │ └── albums.dart │ │ ├── artists │ │ │ └── artists.dart │ │ ├── fees │ │ │ └── fees.dart │ │ ├── minutes │ │ │ └── minutes.dart │ │ ├── playlists │ │ │ └── playlists.dart │ │ ├── stats.dart │ │ └── streams │ │ │ └── streams.dart │ └── track │ │ └── track.dart ├── provider │ ├── audio_player │ │ ├── audio_player.dart │ │ ├── audio_player_streams.dart │ │ ├── querying_track_info.dart │ │ ├── state.dart │ │ ├── state.freezed.dart │ │ └── state.g.dart │ ├── blacklist_provider.dart │ ├── connect │ │ ├── clients.dart │ │ └── connect.dart │ ├── database │ │ └── database.dart │ ├── discord_provider.dart │ ├── download_manager_provider.dart │ ├── glance │ │ └── glance.dart │ ├── history │ │ ├── history.dart │ │ ├── recent.dart │ │ ├── summary.dart │ │ ├── top.dart │ │ └── top │ │ │ ├── albums.dart │ │ │ ├── playlists.dart │ │ │ └── tracks.dart │ ├── local_tracks │ │ └── local_tracks_provider.dart │ ├── logs │ │ └── logs_provider.dart │ ├── lyrics │ │ └── synced.dart │ ├── metadata_plugin │ │ ├── album │ │ │ ├── album.dart │ │ │ └── releases.dart │ │ ├── artist │ │ │ ├── albums.dart │ │ │ ├── artist.dart │ │ │ ├── related.dart │ │ │ ├── top_tracks.dart │ │ │ └── wikipedia.dart │ │ ├── audio_source │ │ │ ├── quality_label.dart │ │ │ ├── quality_presets.dart │ │ │ ├── quality_presets.freezed.dart │ │ │ └── quality_presets.g.dart │ │ ├── browse │ │ │ ├── section_items.dart │ │ │ └── sections.dart │ │ ├── core │ │ │ ├── auth.dart │ │ │ ├── repositories.dart │ │ │ ├── scrobble.dart │ │ │ ├── support.dart │ │ │ └── user.dart │ │ ├── library │ │ │ ├── albums.dart │ │ │ ├── artists.dart │ │ │ ├── playlists.dart │ │ │ └── tracks.dart │ │ ├── metadata_plugin_provider.dart │ │ ├── playlist │ │ │ └── playlist.dart │ │ ├── search │ │ │ ├── albums.dart │ │ │ ├── all.dart │ │ │ ├── artists.dart │ │ │ ├── playlists.dart │ │ │ └── tracks.dart │ │ ├── tracks │ │ │ ├── album.dart │ │ │ ├── playlist.dart │ │ │ └── track.dart │ │ ├── updater │ │ │ └── update_checker.dart │ │ └── utils │ │ │ ├── common.dart │ │ │ ├── family_paginated.dart │ │ │ └── paginated.dart │ ├── scrobbler │ │ └── scrobbler.dart │ ├── server │ │ ├── active_track_sources.dart │ │ ├── bonsoir.dart │ │ ├── pipeline.dart │ │ ├── router.dart │ │ ├── routes │ │ │ ├── connect.dart │ │ │ └── playback.dart │ │ ├── server.dart │ │ └── sourced_track_provider.dart │ ├── skip_segments │ │ └── skip_segments.dart │ ├── sleep_timer_provider.dart │ ├── track_options │ │ └── track_options_provider.dart │ ├── tray_manager │ │ ├── tray_manager.dart │ │ └── tray_menu.dart │ ├── user_preferences │ │ └── user_preferences_provider.dart │ ├── volume_provider.dart │ └── youtube_engine │ │ └── youtube_engine.dart ├── services │ ├── audio_player │ │ ├── audio_player.dart │ │ ├── audio_player_impl.dart │ │ ├── audio_players_streams_mixin.dart │ │ ├── custom_player.dart │ │ └── playback_state.dart │ ├── audio_services │ │ ├── audio_services.dart │ │ ├── mobile_audio_service.dart │ │ └── windows_audio_service.dart │ ├── cli │ │ └── cli.dart │ ├── connectivity_adapter.dart │ ├── device_info │ │ └── device_info.dart │ ├── dio │ │ └── dio.dart │ ├── kv_store │ │ ├── encrypted_kv_store.dart │ │ └── kv_store.dart │ ├── logger │ │ └── logger.dart │ ├── metadata │ │ ├── apis │ │ │ └── localstorage.dart │ │ ├── endpoints │ │ │ ├── album.dart │ │ │ ├── artist.dart │ │ │ ├── audio_source.dart │ │ │ ├── auth.dart │ │ │ ├── browse.dart │ │ │ ├── core.dart │ │ │ ├── playlist.dart │ │ │ ├── search.dart │ │ │ ├── track.dart │ │ │ └── user.dart │ │ ├── errors │ │ │ └── exceptions.dart │ │ └── metadata.dart │ ├── sourced_track │ │ ├── exceptions.dart │ │ └── sourced_track.dart │ ├── wikipedia │ │ └── wikipedia.dart │ ├── wm_tools │ │ └── wm_tools.dart │ └── youtube_engine │ │ ├── newpipe_engine.dart │ │ ├── quickjs_solver.dart │ │ ├── youtube_engine.dart │ │ ├── youtube_explode_engine.dart │ │ └── yt_dlp_engine.dart └── utils │ ├── duration.dart │ ├── migrations │ └── sandbox.dart │ ├── platform.dart │ ├── primitive_utils.dart │ └── service_utils.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── com.github.KRTirtho.Spotube.appdata.xml ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc ├── my_application.h ├── packaging │ ├── appimage │ │ └── make_config.yaml │ ├── deb │ │ └── make_config.yaml │ └── rpm │ │ └── make_config.yaml └── spotube.desktop ├── 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 │ └── RunnerDebug.entitlements └── packaging │ ├── dmg │ └── make_config.yaml │ └── pkg │ └── make_config.yaml ├── metadata ├── en-US │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── android-1.jpg │ │ │ ├── android-2.jpg │ │ │ ├── android-3.jpg │ │ │ ├── android-4.jpg │ │ │ └── android-5.jpg │ ├── short_description.txt │ └── title.txt └── tr │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── android-1.jpg │ │ ├── android-2.jpg │ │ ├── android-3.jpg │ │ ├── android-4.jpg │ │ └── android-5.jpg │ ├── short_description.txt │ └── title.txt ├── pubspec.lock ├── pubspec.yaml ├── scripts ├── gensums.sh ├── install.sh ├── pkgbuild2json.sh └── update_flathub_version.py ├── test ├── drift │ └── app_db │ │ ├── generated │ │ ├── schema.dart │ │ ├── schema_v1.dart │ │ ├── schema_v10.dart │ │ ├── schema_v2.dart │ │ ├── schema_v3.dart │ │ ├── schema_v4.dart │ │ ├── schema_v5.dart │ │ ├── schema_v6.dart │ │ ├── schema_v7.dart │ │ ├── schema_v8.dart │ │ └── schema_v9.dart │ │ └── migration_test.dart └── widget_test.dart ├── untranslated_messages.json ├── web ├── favicon.png ├── flutter_bootstrap.js ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html ├── manifest.json └── splash │ ├── img │ ├── branding-1x.png │ ├── branding-2x.png │ ├── branding-3x.png │ ├── branding-4x.png │ ├── branding-dark-1x.png │ ├── branding-dark-2x.png │ ├── branding-dark-3x.png │ ├── branding-dark-4x.png │ ├── dark-1x.png │ ├── dark-2x.png │ ├── dark-3x.png │ ├── dark-4x.png │ ├── light-1x.png │ ├── light-2x.png │ ├── light-3x.png │ ├── light-4x.png │ └── light-background.png │ ├── splash.js │ └── style.css ├── website ├── .gitignore ├── .node-version ├── .vscode │ ├── extensions.json │ └── launch.json ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── public │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── docs │ │ └── getting-started │ │ │ └── installing-plugins │ │ │ └── navigate.webp │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── fonts │ │ └── AbrilFatface.ttf │ ├── images │ │ └── spotube-logo.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── collections │ │ └── app.ts │ ├── components │ │ ├── ads │ │ │ └── Ads.astro │ │ ├── drawer │ │ │ └── Drawer.astro │ │ └── navigation │ │ │ ├── DocSideBar.astro │ │ │ ├── TopBar.astro │ │ │ └── sidebar-button.tsx │ ├── content.config.ts │ ├── content │ │ └── docs │ │ │ ├── developing-plugins │ │ │ ├── create-your-first-plugin.mdx │ │ │ ├── implementing-endpoints.mdx │ │ │ ├── implmenting-plugin-methods.mdx │ │ │ └── introduction.mdx │ │ │ ├── get-started │ │ │ ├── installing-plugins.mdx │ │ │ └── introduction.mdx │ │ │ ├── plugin-apis │ │ │ ├── forms.mdx │ │ │ ├── localstorage.mdx │ │ │ ├── timezone.mdx │ │ │ └── webview.mdx │ │ │ └── reference │ │ │ ├── libraries.mdx │ │ │ └── models.mdx │ ├── layouts │ │ ├── DocLayout.astro │ │ ├── MarkdownLayout.astro │ │ └── RootLayout.astro │ ├── modules │ │ ├── docs │ │ │ ├── Breadcrumbs.astro │ │ │ └── TableOfContents.astro │ │ ├── downloads │ │ │ ├── download-item.astro │ │ │ └── older │ │ │ │ ├── release-body.tsx │ │ │ │ └── releases.tsx │ │ └── root │ │ │ └── supporters.tsx │ ├── pages │ │ ├── about │ │ │ └── index.astro │ │ ├── blog │ │ │ └── index.astro │ │ ├── docs │ │ │ └── [...slug] │ │ │ │ └── index.astro │ │ ├── downloads │ │ │ ├── index.astro │ │ │ ├── nightly │ │ │ │ └── index.astro │ │ │ ├── older │ │ │ │ └── index.astro │ │ │ └── packages │ │ │ │ └── index.mdx │ │ └── index.astro │ ├── styles │ │ └── global.css │ └── utils │ │ └── get-collection.ts └── tsconfig.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake ├── packaging └── exe │ ├── inno_setup.iss │ └── make_config.yaml └── 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 /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.env.example -------------------------------------------------------------------------------- /.fvm/fvm_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "flutterSdkVersion": "3.35.2" 3 | } -------------------------------------------------------------------------------- /.fvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.fvmrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/ISSUE_TEMPLATE/new_feature.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/potential-duplicates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/workflows/potential-duplicates.yml -------------------------------------------------------------------------------- /.github/workflows/pr-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/workflows/pr-lint.yml -------------------------------------------------------------------------------- /.github/workflows/spotube-publish-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/workflows/spotube-publish-binary.yml -------------------------------------------------------------------------------- /.github/workflows/spotube-release-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.github/workflows/spotube-release-binary.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/Makefile -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/PRIVACY_POLICY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-hdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-mdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xxxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/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/KRTirtho/spotube/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/KRTirtho/spotube/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/KRTirtho/spotube/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/KRTirtho/spotube/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/KRTirtho/spotube/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/KRTirtho/spotube/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/home_player_widget_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/main/res/xml/home_player_widget_config.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-hdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-hdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-mdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-mdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xxxhdpi/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xxxhdpi/branding.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/nightly/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/nightly/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/nightly/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /appdmg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/appdmg.json -------------------------------------------------------------------------------- /assets/branding/branding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/branding.png -------------------------------------------------------------------------------- /assets/branding/mobile-screenshots/android-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/mobile-screenshots/android-1.jpg -------------------------------------------------------------------------------- /assets/branding/mobile-screenshots/android-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/mobile-screenshots/android-2.jpg -------------------------------------------------------------------------------- /assets/branding/mobile-screenshots/android-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/mobile-screenshots/android-3.jpg -------------------------------------------------------------------------------- /assets/branding/mobile-screenshots/android-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/mobile-screenshots/android-4.jpg -------------------------------------------------------------------------------- /assets/branding/mobile-screenshots/android-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/mobile-screenshots/android-5.jpg -------------------------------------------------------------------------------- /assets/branding/mobile-screenshots/combined.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/mobile-screenshots/combined.jpg -------------------------------------------------------------------------------- /assets/branding/spotube-hero-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-hero-banner.png -------------------------------------------------------------------------------- /assets/branding/spotube-logo-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo-foreground.png -------------------------------------------------------------------------------- /assets/branding/spotube-logo-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo-item.png -------------------------------------------------------------------------------- /assets/branding/spotube-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo-light.png -------------------------------------------------------------------------------- /assets/branding/spotube-logo-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo-macos.png -------------------------------------------------------------------------------- /assets/branding/spotube-logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo.bmp -------------------------------------------------------------------------------- /assets/branding/spotube-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo.ico -------------------------------------------------------------------------------- /assets/branding/spotube-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo.png -------------------------------------------------------------------------------- /assets/branding/spotube-logo_android12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-logo_android12.png -------------------------------------------------------------------------------- /assets/branding/spotube-nightly-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-nightly-item.png -------------------------------------------------------------------------------- /assets/branding/spotube-nightly-logo-foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-nightly-logo-foreground.png -------------------------------------------------------------------------------- /assets/branding/spotube-nightly-logo-foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-nightly-logo-foreground.svg -------------------------------------------------------------------------------- /assets/branding/spotube-nightly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-nightly-logo.png -------------------------------------------------------------------------------- /assets/branding/spotube-nightly-logo_android12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-nightly-logo_android12.png -------------------------------------------------------------------------------- /assets/branding/spotube-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-screenshot.png -------------------------------------------------------------------------------- /assets/branding/spotube-tall-capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-tall-capsule.png -------------------------------------------------------------------------------- /assets/branding/spotube-wide-capsule-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-wide-capsule-large.png -------------------------------------------------------------------------------- /assets/branding/spotube-wide-capsule-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube-wide-capsule-small.png -------------------------------------------------------------------------------- /assets/branding/spotube_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/branding/spotube_banner.png -------------------------------------------------------------------------------- /assets/fonts/Cookie-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/fonts/Cookie-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Ubuntu_Mono/UFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/fonts/Ubuntu_Mono/UFL.txt -------------------------------------------------------------------------------- /assets/fonts/Ubuntu_Mono/UbuntuMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/fonts/Ubuntu_Mono/UbuntuMono-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Ubuntu_Mono/UbuntuMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/fonts/Ubuntu_Mono/UbuntuMono-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Ubuntu_Mono/UbuntuMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/fonts/Ubuntu_Mono/UbuntuMono-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Ubuntu_Mono/UbuntuMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/fonts/Ubuntu_Mono/UbuntuMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/album-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/album-placeholder.png -------------------------------------------------------------------------------- /assets/images/bengali-patterns-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/bengali-patterns-bg.jpg -------------------------------------------------------------------------------- /assets/images/liked-tracks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/liked-tracks.jpg -------------------------------------------------------------------------------- /assets/images/logos/dab-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/logos/dab-music.png -------------------------------------------------------------------------------- /assets/images/logos/invidious.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/logos/invidious.jpg -------------------------------------------------------------------------------- /assets/images/logos/jiosaavn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/logos/jiosaavn.png -------------------------------------------------------------------------------- /assets/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/placeholder.png -------------------------------------------------------------------------------- /assets/images/user-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/images/user-placeholder.png -------------------------------------------------------------------------------- /assets/plugins/spotube-plugin-youtube-audio/plugin.smplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/assets/plugins/spotube-plugin-youtube-audio/plugin.smplug -------------------------------------------------------------------------------- /aur-struct/.SRCINFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/aur-struct/.SRCINFO -------------------------------------------------------------------------------- /aur-struct/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/aur-struct/PKGBUILD -------------------------------------------------------------------------------- /choco-struct/spotube.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/choco-struct/spotube.nuspec -------------------------------------------------------------------------------- /choco-struct/tools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/choco-struct/tools/LICENSE.txt -------------------------------------------------------------------------------- /choco-struct/tools/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/choco-struct/tools/VERIFICATION.txt -------------------------------------------------------------------------------- /choco-struct/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/choco-struct/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /choco-struct/tools/chocolateyuninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/choco-struct/tools/chocolateyuninstall.ps1 -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/cli.dart -------------------------------------------------------------------------------- /cli/commands/build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build.dart -------------------------------------------------------------------------------- /cli/commands/build/android.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build/android.dart -------------------------------------------------------------------------------- /cli/commands/build/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build/common.dart -------------------------------------------------------------------------------- /cli/commands/build/ios.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build/ios.dart -------------------------------------------------------------------------------- /cli/commands/build/linux.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build/linux.dart -------------------------------------------------------------------------------- /cli/commands/build/macos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build/macos.dart -------------------------------------------------------------------------------- /cli/commands/build/windows.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/build/windows.dart -------------------------------------------------------------------------------- /cli/commands/credits.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/credits.dart -------------------------------------------------------------------------------- /cli/commands/install-dependencies.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/install-dependencies.dart -------------------------------------------------------------------------------- /cli/commands/translated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/translated.dart -------------------------------------------------------------------------------- /cli/commands/untranslated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/commands/untranslated.dart -------------------------------------------------------------------------------- /cli/core/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cli/core/env.dart -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/cliff.toml -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /distribute_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/distribute_options.yaml -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v1.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v10.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v2.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v3.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v4.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v5.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v6.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v7.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v8.json -------------------------------------------------------------------------------- /drift_schemas/app_db/drift_schema_v9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/drift_schemas/app_db/drift_schema_v9.json -------------------------------------------------------------------------------- /flutter_launcher_icons-nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/flutter_launcher_icons-nightly.yaml -------------------------------------------------------------------------------- /flutter_launcher_icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/flutter_launcher_icons.yaml -------------------------------------------------------------------------------- /flutter_native_splash-nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/flutter_native_splash-nightly.yaml -------------------------------------------------------------------------------- /integration_test/app_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/integration_test/app_test.dart -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/HomePlayerWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/HomePlayerWidget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/HomePlayerWidget/HomePlayerWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/HomePlayerWidget/HomePlayerWidget.swift -------------------------------------------------------------------------------- /ios/HomePlayerWidget/HomePlayerWidgetBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/HomePlayerWidget/HomePlayerWidgetBundle.swift -------------------------------------------------------------------------------- /ios/HomePlayerWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/HomePlayerWidget/Info.plist -------------------------------------------------------------------------------- /ios/HomePlayerWidgetExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/HomePlayerWidgetExtension.entitlements -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/nightly.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/nightly.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/stable.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/stable.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/BrandingImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Assets.xcassets/BrandingImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreenNightly.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Base.lproj/LaunchScreenNightly.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/build/.last_build_id: -------------------------------------------------------------------------------- 1 | 6f5ed64a4065df2d43bfb5b18863018c -------------------------------------------------------------------------------- /ios/dev-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/dev-Info.plist -------------------------------------------------------------------------------- /ios/dev.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/dev.entitlements -------------------------------------------------------------------------------- /ios/nightly-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/nightly-Info.plist -------------------------------------------------------------------------------- /ios/nightly.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/nightly.entitlements -------------------------------------------------------------------------------- /ios/stable-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/stable-Info.plist -------------------------------------------------------------------------------- /ios/stable.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/ios/stable.entitlements -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/collections/assets.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/assets.gen.dart -------------------------------------------------------------------------------- /lib/collections/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/env.dart -------------------------------------------------------------------------------- /lib/collections/fake.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/fake.dart -------------------------------------------------------------------------------- /lib/collections/fonts.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/fonts.gen.dart -------------------------------------------------------------------------------- /lib/collections/formatters.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/formatters.dart -------------------------------------------------------------------------------- /lib/collections/gradients.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/gradients.dart -------------------------------------------------------------------------------- /lib/collections/http-override.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/http-override.dart -------------------------------------------------------------------------------- /lib/collections/initializers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/initializers.dart -------------------------------------------------------------------------------- /lib/collections/intents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/intents.dart -------------------------------------------------------------------------------- /lib/collections/language_codes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/language_codes.dart -------------------------------------------------------------------------------- /lib/collections/markets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/markets.dart -------------------------------------------------------------------------------- /lib/collections/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/routes.dart -------------------------------------------------------------------------------- /lib/collections/routes.gr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/routes.gr.dart -------------------------------------------------------------------------------- /lib/collections/side_bar_tiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/side_bar_tiles.dart -------------------------------------------------------------------------------- /lib/collections/spotube_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/collections/spotube_icons.dart -------------------------------------------------------------------------------- /lib/components/adaptive/adaptive_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/adaptive/adaptive_list_tile.dart -------------------------------------------------------------------------------- /lib/components/adaptive/adaptive_pop_sheet_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/adaptive/adaptive_pop_sheet_list.dart -------------------------------------------------------------------------------- /lib/components/adaptive/adaptive_select_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/adaptive/adaptive_select_tile.dart -------------------------------------------------------------------------------- /lib/components/button/back_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/button/back_button.dart -------------------------------------------------------------------------------- /lib/components/dialogs/confirm_download_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/confirm_download_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialogs/link_open_permission_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/link_open_permission_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialogs/playlist_add_track_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/playlist_add_track_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialogs/prompt_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/prompt_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialogs/replace_downloaded_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/replace_downloaded_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialogs/select_device_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/select_device_dialog.dart -------------------------------------------------------------------------------- /lib/components/dialogs/track_details_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/dialogs/track_details_dialog.dart -------------------------------------------------------------------------------- /lib/components/expandable_search/expandable_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/expandable_search/expandable_search.dart -------------------------------------------------------------------------------- /lib/components/fallbacks/anonymous_fallback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/fallbacks/anonymous_fallback.dart -------------------------------------------------------------------------------- /lib/components/fallbacks/error_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/fallbacks/error_box.dart -------------------------------------------------------------------------------- /lib/components/fallbacks/no_default_metadata_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/fallbacks/no_default_metadata_plugin.dart -------------------------------------------------------------------------------- /lib/components/fallbacks/not_found.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/fallbacks/not_found.dart -------------------------------------------------------------------------------- /lib/components/form/checkbox_form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/form/checkbox_form_field.dart -------------------------------------------------------------------------------- /lib/components/form/text_form_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/form/text_form_field.dart -------------------------------------------------------------------------------- /lib/components/framework/app_pop_scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/framework/app_pop_scope.dart -------------------------------------------------------------------------------- /lib/components/heart_button/heart_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/heart_button/heart_button.dart -------------------------------------------------------------------------------- /lib/components/heart_button/use_track_toggle_like.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/heart_button/use_track_toggle_like.dart -------------------------------------------------------------------------------- /lib/components/hover_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/hover_builder.dart -------------------------------------------------------------------------------- /lib/components/image/universal_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/image/universal_image.dart -------------------------------------------------------------------------------- /lib/components/inter_scrollbar/inter_scrollbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/inter_scrollbar/inter_scrollbar.dart -------------------------------------------------------------------------------- /lib/components/links/anchor_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/links/anchor_button.dart -------------------------------------------------------------------------------- /lib/components/links/artist_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/links/artist_link.dart -------------------------------------------------------------------------------- /lib/components/links/hyper_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/links/hyper_link.dart -------------------------------------------------------------------------------- /lib/components/links/link_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/links/link_text.dart -------------------------------------------------------------------------------- /lib/components/markdown/markdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/markdown/markdown.dart -------------------------------------------------------------------------------- /lib/components/playbutton_view/playbutton_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/playbutton_view/playbutton_card.dart -------------------------------------------------------------------------------- /lib/components/playbutton_view/playbutton_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/playbutton_view/playbutton_tile.dart -------------------------------------------------------------------------------- /lib/components/playbutton_view/playbutton_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/playbutton_view/playbutton_view.dart -------------------------------------------------------------------------------- /lib/components/shimmers/shimmer_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/shimmers/shimmer_lyrics.dart -------------------------------------------------------------------------------- /lib/components/titlebar/titlebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/titlebar/titlebar.dart -------------------------------------------------------------------------------- /lib/components/titlebar/titlebar_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/titlebar/titlebar_buttons.dart -------------------------------------------------------------------------------- /lib/components/titlebar/titlebar_icon_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/titlebar/titlebar_icon_buttons.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/presentation_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/presentation_actions.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/presentation_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/presentation_list.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/presentation_modifiers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/presentation_modifiers.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/presentation_props.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/presentation_props.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/presentation_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/presentation_state.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/presentation_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/presentation_top.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/sort_tracks_dropdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/sort_tracks_dropdown.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/track_presentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/track_presentation.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/use_action_callbacks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/use_action_callbacks.dart -------------------------------------------------------------------------------- /lib/components/track_presentation/use_is_user_playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_presentation/use_is_user_playlist.dart -------------------------------------------------------------------------------- /lib/components/track_tile/track_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_tile/track_options.dart -------------------------------------------------------------------------------- /lib/components/track_tile/track_options_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_tile/track_options_button.dart -------------------------------------------------------------------------------- /lib/components/track_tile/track_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/track_tile/track_tile.dart -------------------------------------------------------------------------------- /lib/components/ui/button_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/ui/button_tile.dart -------------------------------------------------------------------------------- /lib/components/waypoint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/components/waypoint.dart -------------------------------------------------------------------------------- /lib/extensions/button_variance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/button_variance.dart -------------------------------------------------------------------------------- /lib/extensions/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/color.dart -------------------------------------------------------------------------------- /lib/extensions/constrains.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/constrains.dart -------------------------------------------------------------------------------- /lib/extensions/context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/context.dart -------------------------------------------------------------------------------- /lib/extensions/dio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/dio.dart -------------------------------------------------------------------------------- /lib/extensions/duration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/duration.dart -------------------------------------------------------------------------------- /lib/extensions/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/list.dart -------------------------------------------------------------------------------- /lib/extensions/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/map.dart -------------------------------------------------------------------------------- /lib/extensions/string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/extensions/string.dart -------------------------------------------------------------------------------- /lib/generated_plugin_registrant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/generated_plugin_registrant.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_check_yt_dlp_installed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_check_yt_dlp_installed.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_close_behavior.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_close_behavior.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_deep_linking.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_deep_linking.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_endless_playback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_endless_playback.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_fix_window_stretching.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_fix_window_stretching.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_get_storage_perms.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_get_storage_perms.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_has_touch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_has_touch.dart -------------------------------------------------------------------------------- /lib/hooks/configurators/use_window_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/configurators/use_window_listener.dart -------------------------------------------------------------------------------- /lib/hooks/controllers/use_auto_scroll_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/controllers/use_auto_scroll_controller.dart -------------------------------------------------------------------------------- /lib/hooks/controllers/use_package_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/controllers/use_package_info.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_async_effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_async_effect.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_breakpoint_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_breakpoint_value.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_brightness_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_brightness_value.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_custom_status_bar_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_custom_status_bar_color.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_debounce.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_debounce.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_force_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_force_update.dart -------------------------------------------------------------------------------- /lib/hooks/utils/use_palette_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/hooks/utils/use_palette_color.dart -------------------------------------------------------------------------------- /lib/l10n/app_ar.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ar.arb -------------------------------------------------------------------------------- /lib/l10n/app_bn.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_bn.arb -------------------------------------------------------------------------------- /lib/l10n/app_ca.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ca.arb -------------------------------------------------------------------------------- /lib/l10n/app_cs.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_cs.arb -------------------------------------------------------------------------------- /lib/l10n/app_de.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_de.arb -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_es.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_es.arb -------------------------------------------------------------------------------- /lib/l10n/app_eu.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_eu.arb -------------------------------------------------------------------------------- /lib/l10n/app_fa.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_fa.arb -------------------------------------------------------------------------------- /lib/l10n/app_fi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_fi.arb -------------------------------------------------------------------------------- /lib/l10n/app_fr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_fr.arb -------------------------------------------------------------------------------- /lib/l10n/app_hi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_hi.arb -------------------------------------------------------------------------------- /lib/l10n/app_id.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_id.arb -------------------------------------------------------------------------------- /lib/l10n/app_it.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_it.arb -------------------------------------------------------------------------------- /lib/l10n/app_ja.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ja.arb -------------------------------------------------------------------------------- /lib/l10n/app_ka.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ka.arb -------------------------------------------------------------------------------- /lib/l10n/app_ko.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ko.arb -------------------------------------------------------------------------------- /lib/l10n/app_ne.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ne.arb -------------------------------------------------------------------------------- /lib/l10n/app_nl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_nl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_pl.arb -------------------------------------------------------------------------------- /lib/l10n/app_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_pt.arb -------------------------------------------------------------------------------- /lib/l10n/app_ru.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ru.arb -------------------------------------------------------------------------------- /lib/l10n/app_ta.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_ta.arb -------------------------------------------------------------------------------- /lib/l10n/app_th.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_th.arb -------------------------------------------------------------------------------- /lib/l10n/app_tl.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_tl.arb -------------------------------------------------------------------------------- /lib/l10n/app_tr.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_tr.arb -------------------------------------------------------------------------------- /lib/l10n/app_uk.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_uk.arb -------------------------------------------------------------------------------- /lib/l10n/app_vi.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_vi.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /lib/l10n/app_zh_TW.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/app_zh_TW.arb -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ar.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_bn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_bn.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ca.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ca.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_cs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_cs.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_de.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_de.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_en.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_es.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_es.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_eu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_eu.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_fa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_fa.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_fi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_fi.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_fr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_fr.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_hi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_hi.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_id.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_id.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_it.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_it.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ja.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ja.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ka.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ka.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ko.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ko.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ne.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ne.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_nl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_nl.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_pl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_pl.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_pt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_pt.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ru.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ru.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_ta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_ta.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_th.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_th.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_tl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_tl.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_tr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_tr.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_uk.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_uk.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_vi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_vi.dart -------------------------------------------------------------------------------- /lib/l10n/generated/app_localizations_zh.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/generated/app_localizations_zh.dart -------------------------------------------------------------------------------- /lib/l10n/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/l10n/l10n.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/connect/connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/connect/connect.dart -------------------------------------------------------------------------------- /lib/models/connect/connect.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/connect/connect.freezed.dart -------------------------------------------------------------------------------- /lib/models/connect/connect.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/connect/connect.g.dart -------------------------------------------------------------------------------- /lib/models/connect/load.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/connect/load.dart -------------------------------------------------------------------------------- /lib/models/connect/ws_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/connect/ws_event.dart -------------------------------------------------------------------------------- /lib/models/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/database.dart -------------------------------------------------------------------------------- /lib/models/database/database.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/database.g.dart -------------------------------------------------------------------------------- /lib/models/database/database.steps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/database.steps.dart -------------------------------------------------------------------------------- /lib/models/database/tables/audio_player_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/audio_player_state.dart -------------------------------------------------------------------------------- /lib/models/database/tables/authentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/authentication.dart -------------------------------------------------------------------------------- /lib/models/database/tables/blacklist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/blacklist.dart -------------------------------------------------------------------------------- /lib/models/database/tables/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/history.dart -------------------------------------------------------------------------------- /lib/models/database/tables/lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/lyrics.dart -------------------------------------------------------------------------------- /lib/models/database/tables/metadata_plugins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/metadata_plugins.dart -------------------------------------------------------------------------------- /lib/models/database/tables/preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/preferences.dart -------------------------------------------------------------------------------- /lib/models/database/tables/scrobbler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/scrobbler.dart -------------------------------------------------------------------------------- /lib/models/database/tables/skip_segment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/skip_segment.dart -------------------------------------------------------------------------------- /lib/models/database/tables/source_match.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/tables/source_match.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/color.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/encrypted_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/encrypted_text.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/locale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/locale.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/map.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/map_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/map_list.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/string_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/string_list.dart -------------------------------------------------------------------------------- /lib/models/database/typeconverters/subtitle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/database/typeconverters/subtitle.dart -------------------------------------------------------------------------------- /lib/models/lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/lyrics.dart -------------------------------------------------------------------------------- /lib/models/metadata/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/album.dart -------------------------------------------------------------------------------- /lib/models/metadata/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/artist.dart -------------------------------------------------------------------------------- /lib/models/metadata/audio_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/audio_source.dart -------------------------------------------------------------------------------- /lib/models/metadata/browse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/browse.dart -------------------------------------------------------------------------------- /lib/models/metadata/fields.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/fields.dart -------------------------------------------------------------------------------- /lib/models/metadata/image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/image.dart -------------------------------------------------------------------------------- /lib/models/metadata/market.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/market.dart -------------------------------------------------------------------------------- /lib/models/metadata/metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/metadata.dart -------------------------------------------------------------------------------- /lib/models/metadata/metadata.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/metadata.freezed.dart -------------------------------------------------------------------------------- /lib/models/metadata/metadata.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/metadata.g.dart -------------------------------------------------------------------------------- /lib/models/metadata/pagination.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/pagination.dart -------------------------------------------------------------------------------- /lib/models/metadata/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/playlist.dart -------------------------------------------------------------------------------- /lib/models/metadata/plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/plugin.dart -------------------------------------------------------------------------------- /lib/models/metadata/repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/repository.dart -------------------------------------------------------------------------------- /lib/models/metadata/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/search.dart -------------------------------------------------------------------------------- /lib/models/metadata/track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/track.dart -------------------------------------------------------------------------------- /lib/models/metadata/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/metadata/user.dart -------------------------------------------------------------------------------- /lib/models/parser/range_headers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/parser/range_headers.dart -------------------------------------------------------------------------------- /lib/models/playback/track_sources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/playback/track_sources.dart -------------------------------------------------------------------------------- /lib/models/playback/track_sources.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/models/playback/track_sources.g.dart -------------------------------------------------------------------------------- /lib/modules/album/album_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/album/album_card.dart -------------------------------------------------------------------------------- /lib/modules/artist/artist_album_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/artist/artist_album_list.dart -------------------------------------------------------------------------------- /lib/modules/artist/artist_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/artist/artist_card.dart -------------------------------------------------------------------------------- /lib/modules/connect/connect_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/connect/connect_device.dart -------------------------------------------------------------------------------- /lib/modules/connect/local_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/connect/local_devices.dart -------------------------------------------------------------------------------- /lib/modules/getting_started/blur_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/getting_started/blur_card.dart -------------------------------------------------------------------------------- /lib/modules/home/sections/featured.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/home/sections/featured.dart -------------------------------------------------------------------------------- /lib/modules/home/sections/new_releases.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/home/sections/new_releases.dart -------------------------------------------------------------------------------- /lib/modules/home/sections/recent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/home/sections/recent.dart -------------------------------------------------------------------------------- /lib/modules/home/sections/sections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/home/sections/sections.dart -------------------------------------------------------------------------------- /lib/modules/library/local_folder/cache_export_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/library/local_folder/cache_export_dialog.dart -------------------------------------------------------------------------------- /lib/modules/library/local_folder/local_folder_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/library/local_folder/local_folder_item.dart -------------------------------------------------------------------------------- /lib/modules/library/user_downloads/download_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/library/user_downloads/download_item.dart -------------------------------------------------------------------------------- /lib/modules/lyrics/use_synced_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/lyrics/use_synced_lyrics.dart -------------------------------------------------------------------------------- /lib/modules/lyrics/zoom_controls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/lyrics/zoom_controls.dart -------------------------------------------------------------------------------- /lib/modules/metadata_plugins/installed_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/metadata_plugins/installed_plugin.dart -------------------------------------------------------------------------------- /lib/modules/metadata_plugins/plugin_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/metadata_plugins/plugin_repository.dart -------------------------------------------------------------------------------- /lib/modules/player/player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player.dart -------------------------------------------------------------------------------- /lib/modules/player/player_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_actions.dart -------------------------------------------------------------------------------- /lib/modules/player/player_controls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_controls.dart -------------------------------------------------------------------------------- /lib/modules/player/player_overlay.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_overlay.dart -------------------------------------------------------------------------------- /lib/modules/player/player_overlay_collapsed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_overlay_collapsed.dart -------------------------------------------------------------------------------- /lib/modules/player/player_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_queue.dart -------------------------------------------------------------------------------- /lib/modules/player/player_queue_actions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_queue_actions.dart -------------------------------------------------------------------------------- /lib/modules/player/player_track_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/player_track_details.dart -------------------------------------------------------------------------------- /lib/modules/player/sibling_tracks_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/sibling_tracks_sheet.dart -------------------------------------------------------------------------------- /lib/modules/player/use_progress.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/use_progress.dart -------------------------------------------------------------------------------- /lib/modules/player/volume_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/player/volume_slider.dart -------------------------------------------------------------------------------- /lib/modules/playlist/playlist_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/playlist/playlist_card.dart -------------------------------------------------------------------------------- /lib/modules/playlist/playlist_create_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/playlist/playlist_create_dialog.dart -------------------------------------------------------------------------------- /lib/modules/root/bottom_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/root/bottom_player.dart -------------------------------------------------------------------------------- /lib/modules/root/sidebar/sidebar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/root/sidebar/sidebar.dart -------------------------------------------------------------------------------- /lib/modules/root/sidebar/sidebar_footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/root/sidebar/sidebar_footer.dart -------------------------------------------------------------------------------- /lib/modules/root/spotube_navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/root/spotube_navigation_bar.dart -------------------------------------------------------------------------------- /lib/modules/root/update_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/root/update_dialog.dart -------------------------------------------------------------------------------- /lib/modules/root/use_global_subscriptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/root/use_global_subscriptions.dart -------------------------------------------------------------------------------- /lib/modules/search/loading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/search/loading.dart -------------------------------------------------------------------------------- /lib/modules/search/sections/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/search/sections/albums.dart -------------------------------------------------------------------------------- /lib/modules/search/sections/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/search/sections/artists.dart -------------------------------------------------------------------------------- /lib/modules/search/sections/playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/search/sections/playlists.dart -------------------------------------------------------------------------------- /lib/modules/search/sections/tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/search/sections/tracks.dart -------------------------------------------------------------------------------- /lib/modules/settings/color_scheme_picker_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/settings/color_scheme_picker_dialog.dart -------------------------------------------------------------------------------- /lib/modules/settings/playback/edit_connect_port_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/settings/playback/edit_connect_port_dialog.dart -------------------------------------------------------------------------------- /lib/modules/settings/playback/edit_instance_url_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/settings/playback/edit_instance_url_dialog.dart -------------------------------------------------------------------------------- /lib/modules/settings/section_card_with_heading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/settings/section_card_with_heading.dart -------------------------------------------------------------------------------- /lib/modules/stats/common/album_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/common/album_item.dart -------------------------------------------------------------------------------- /lib/modules/stats/common/artist_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/common/artist_item.dart -------------------------------------------------------------------------------- /lib/modules/stats/common/playlist_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/common/playlist_item.dart -------------------------------------------------------------------------------- /lib/modules/stats/common/track_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/common/track_item.dart -------------------------------------------------------------------------------- /lib/modules/stats/summary/summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/summary/summary.dart -------------------------------------------------------------------------------- /lib/modules/stats/summary/summary_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/summary/summary_card.dart -------------------------------------------------------------------------------- /lib/modules/stats/top/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/top/albums.dart -------------------------------------------------------------------------------- /lib/modules/stats/top/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/top/artists.dart -------------------------------------------------------------------------------- /lib/modules/stats/top/top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/top/top.dart -------------------------------------------------------------------------------- /lib/modules/stats/top/tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/modules/stats/top/tracks.dart -------------------------------------------------------------------------------- /lib/pages/album/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/album/album.dart -------------------------------------------------------------------------------- /lib/pages/artist/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/artist/artist.dart -------------------------------------------------------------------------------- /lib/pages/artist/section/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/artist/section/footer.dart -------------------------------------------------------------------------------- /lib/pages/artist/section/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/artist/section/header.dart -------------------------------------------------------------------------------- /lib/pages/artist/section/related_artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/artist/section/related_artists.dart -------------------------------------------------------------------------------- /lib/pages/artist/section/top_tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/artist/section/top_tracks.dart -------------------------------------------------------------------------------- /lib/pages/connect/connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/connect/connect.dart -------------------------------------------------------------------------------- /lib/pages/connect/control/control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/connect/control/control.dart -------------------------------------------------------------------------------- /lib/pages/getting_started/getting_started.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/getting_started/getting_started.dart -------------------------------------------------------------------------------- /lib/pages/getting_started/sections/greeting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/getting_started/sections/greeting.dart -------------------------------------------------------------------------------- /lib/pages/getting_started/sections/playback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/getting_started/sections/playback.dart -------------------------------------------------------------------------------- /lib/pages/getting_started/sections/region.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/getting_started/sections/region.dart -------------------------------------------------------------------------------- /lib/pages/getting_started/sections/support.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/getting_started/sections/support.dart -------------------------------------------------------------------------------- /lib/pages/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/home/home.dart -------------------------------------------------------------------------------- /lib/pages/home/sections/section_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/home/sections/section_items.dart -------------------------------------------------------------------------------- /lib/pages/lastfm_login/lastfm_login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/lastfm_login/lastfm_login.dart -------------------------------------------------------------------------------- /lib/pages/library/library.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/library.dart -------------------------------------------------------------------------------- /lib/pages/library/user_albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/user_albums.dart -------------------------------------------------------------------------------- /lib/pages/library/user_artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/user_artists.dart -------------------------------------------------------------------------------- /lib/pages/library/user_downloads.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/user_downloads.dart -------------------------------------------------------------------------------- /lib/pages/library/user_local_tracks/local_folder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/user_local_tracks/local_folder.dart -------------------------------------------------------------------------------- /lib/pages/library/user_local_tracks/user_local_tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/user_local_tracks/user_local_tracks.dart -------------------------------------------------------------------------------- /lib/pages/library/user_playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/library/user_playlists.dart -------------------------------------------------------------------------------- /lib/pages/lyrics/lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/lyrics/lyrics.dart -------------------------------------------------------------------------------- /lib/pages/lyrics/mini_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/lyrics/mini_lyrics.dart -------------------------------------------------------------------------------- /lib/pages/lyrics/plain_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/lyrics/plain_lyrics.dart -------------------------------------------------------------------------------- /lib/pages/lyrics/synced_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/lyrics/synced_lyrics.dart -------------------------------------------------------------------------------- /lib/pages/player/lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/player/lyrics.dart -------------------------------------------------------------------------------- /lib/pages/player/queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/player/queue.dart -------------------------------------------------------------------------------- /lib/pages/player/sources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/player/sources.dart -------------------------------------------------------------------------------- /lib/pages/playlist/liked_playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/playlist/liked_playlist.dart -------------------------------------------------------------------------------- /lib/pages/playlist/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/playlist/playlist.dart -------------------------------------------------------------------------------- /lib/pages/profile/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/profile/profile.dart -------------------------------------------------------------------------------- /lib/pages/root/root_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/root/root_app.dart -------------------------------------------------------------------------------- /lib/pages/search/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/search/search.dart -------------------------------------------------------------------------------- /lib/pages/search/tabs/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/search/tabs/albums.dart -------------------------------------------------------------------------------- /lib/pages/search/tabs/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/search/tabs/all.dart -------------------------------------------------------------------------------- /lib/pages/search/tabs/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/search/tabs/artists.dart -------------------------------------------------------------------------------- /lib/pages/search/tabs/playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/search/tabs/playlists.dart -------------------------------------------------------------------------------- /lib/pages/search/tabs/tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/search/tabs/tracks.dart -------------------------------------------------------------------------------- /lib/pages/settings/about.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/about.dart -------------------------------------------------------------------------------- /lib/pages/settings/blacklist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/blacklist.dart -------------------------------------------------------------------------------- /lib/pages/settings/logs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/logs.dart -------------------------------------------------------------------------------- /lib/pages/settings/metadata/metadata_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/metadata/metadata_form.dart -------------------------------------------------------------------------------- /lib/pages/settings/metadata_plugins.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/metadata_plugins.dart -------------------------------------------------------------------------------- /lib/pages/settings/scrobbling/scrobbling.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/scrobbling/scrobbling.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/about.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/about.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/accounts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/accounts.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/appearance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/appearance.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/desktop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/desktop.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/developers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/developers.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/downloads.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/downloads.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/language_region.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/language_region.dart -------------------------------------------------------------------------------- /lib/pages/settings/sections/playback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/sections/playback.dart -------------------------------------------------------------------------------- /lib/pages/settings/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/settings/settings.dart -------------------------------------------------------------------------------- /lib/pages/stats/albums/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/albums/albums.dart -------------------------------------------------------------------------------- /lib/pages/stats/artists/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/artists/artists.dart -------------------------------------------------------------------------------- /lib/pages/stats/fees/fees.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/fees/fees.dart -------------------------------------------------------------------------------- /lib/pages/stats/minutes/minutes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/minutes/minutes.dart -------------------------------------------------------------------------------- /lib/pages/stats/playlists/playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/playlists/playlists.dart -------------------------------------------------------------------------------- /lib/pages/stats/stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/stats.dart -------------------------------------------------------------------------------- /lib/pages/stats/streams/streams.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/stats/streams/streams.dart -------------------------------------------------------------------------------- /lib/pages/track/track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/pages/track/track.dart -------------------------------------------------------------------------------- /lib/provider/audio_player/audio_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/audio_player/audio_player.dart -------------------------------------------------------------------------------- /lib/provider/audio_player/audio_player_streams.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/audio_player/audio_player_streams.dart -------------------------------------------------------------------------------- /lib/provider/audio_player/querying_track_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/audio_player/querying_track_info.dart -------------------------------------------------------------------------------- /lib/provider/audio_player/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/audio_player/state.dart -------------------------------------------------------------------------------- /lib/provider/audio_player/state.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/audio_player/state.freezed.dart -------------------------------------------------------------------------------- /lib/provider/audio_player/state.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/audio_player/state.g.dart -------------------------------------------------------------------------------- /lib/provider/blacklist_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/blacklist_provider.dart -------------------------------------------------------------------------------- /lib/provider/connect/clients.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/connect/clients.dart -------------------------------------------------------------------------------- /lib/provider/connect/connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/connect/connect.dart -------------------------------------------------------------------------------- /lib/provider/database/database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/database/database.dart -------------------------------------------------------------------------------- /lib/provider/discord_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/discord_provider.dart -------------------------------------------------------------------------------- /lib/provider/download_manager_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/download_manager_provider.dart -------------------------------------------------------------------------------- /lib/provider/glance/glance.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/glance/glance.dart -------------------------------------------------------------------------------- /lib/provider/history/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/history.dart -------------------------------------------------------------------------------- /lib/provider/history/recent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/recent.dart -------------------------------------------------------------------------------- /lib/provider/history/summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/summary.dart -------------------------------------------------------------------------------- /lib/provider/history/top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/top.dart -------------------------------------------------------------------------------- /lib/provider/history/top/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/top/albums.dart -------------------------------------------------------------------------------- /lib/provider/history/top/playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/top/playlists.dart -------------------------------------------------------------------------------- /lib/provider/history/top/tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/history/top/tracks.dart -------------------------------------------------------------------------------- /lib/provider/local_tracks/local_tracks_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/local_tracks/local_tracks_provider.dart -------------------------------------------------------------------------------- /lib/provider/logs/logs_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/logs/logs_provider.dart -------------------------------------------------------------------------------- /lib/provider/lyrics/synced.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/lyrics/synced.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/album/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/album/album.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/album/releases.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/album/releases.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/artist/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/artist/albums.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/artist/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/artist/artist.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/artist/related.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/artist/related.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/artist/top_tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/artist/top_tracks.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/artist/wikipedia.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/artist/wikipedia.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/audio_source/quality_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/audio_source/quality_label.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/browse/section_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/browse/section_items.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/browse/sections.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/browse/sections.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/core/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/core/auth.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/core/repositories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/core/repositories.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/core/scrobble.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/core/scrobble.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/core/support.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/core/support.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/core/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/core/user.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/library/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/library/albums.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/library/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/library/artists.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/library/playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/library/playlists.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/library/tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/library/tracks.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/metadata_plugin_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/metadata_plugin_provider.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/playlist/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/playlist/playlist.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/search/albums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/search/albums.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/search/all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/search/all.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/search/artists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/search/artists.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/search/playlists.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/search/playlists.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/search/tracks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/search/tracks.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/tracks/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/tracks/album.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/tracks/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/tracks/playlist.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/tracks/track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/tracks/track.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/updater/update_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/updater/update_checker.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/utils/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/utils/common.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/utils/family_paginated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/utils/family_paginated.dart -------------------------------------------------------------------------------- /lib/provider/metadata_plugin/utils/paginated.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/metadata_plugin/utils/paginated.dart -------------------------------------------------------------------------------- /lib/provider/scrobbler/scrobbler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/scrobbler/scrobbler.dart -------------------------------------------------------------------------------- /lib/provider/server/active_track_sources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/active_track_sources.dart -------------------------------------------------------------------------------- /lib/provider/server/bonsoir.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/bonsoir.dart -------------------------------------------------------------------------------- /lib/provider/server/pipeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/pipeline.dart -------------------------------------------------------------------------------- /lib/provider/server/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/router.dart -------------------------------------------------------------------------------- /lib/provider/server/routes/connect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/routes/connect.dart -------------------------------------------------------------------------------- /lib/provider/server/routes/playback.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/routes/playback.dart -------------------------------------------------------------------------------- /lib/provider/server/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/server.dart -------------------------------------------------------------------------------- /lib/provider/server/sourced_track_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/server/sourced_track_provider.dart -------------------------------------------------------------------------------- /lib/provider/skip_segments/skip_segments.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/skip_segments/skip_segments.dart -------------------------------------------------------------------------------- /lib/provider/sleep_timer_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/sleep_timer_provider.dart -------------------------------------------------------------------------------- /lib/provider/track_options/track_options_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/track_options/track_options_provider.dart -------------------------------------------------------------------------------- /lib/provider/tray_manager/tray_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/tray_manager/tray_manager.dart -------------------------------------------------------------------------------- /lib/provider/tray_manager/tray_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/tray_manager/tray_menu.dart -------------------------------------------------------------------------------- /lib/provider/user_preferences/user_preferences_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/user_preferences/user_preferences_provider.dart -------------------------------------------------------------------------------- /lib/provider/volume_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/volume_provider.dart -------------------------------------------------------------------------------- /lib/provider/youtube_engine/youtube_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/provider/youtube_engine/youtube_engine.dart -------------------------------------------------------------------------------- /lib/services/audio_player/audio_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_player/audio_player.dart -------------------------------------------------------------------------------- /lib/services/audio_player/audio_player_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_player/audio_player_impl.dart -------------------------------------------------------------------------------- /lib/services/audio_player/audio_players_streams_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_player/audio_players_streams_mixin.dart -------------------------------------------------------------------------------- /lib/services/audio_player/custom_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_player/custom_player.dart -------------------------------------------------------------------------------- /lib/services/audio_player/playback_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_player/playback_state.dart -------------------------------------------------------------------------------- /lib/services/audio_services/audio_services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_services/audio_services.dart -------------------------------------------------------------------------------- /lib/services/audio_services/mobile_audio_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_services/mobile_audio_service.dart -------------------------------------------------------------------------------- /lib/services/audio_services/windows_audio_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/audio_services/windows_audio_service.dart -------------------------------------------------------------------------------- /lib/services/cli/cli.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/cli/cli.dart -------------------------------------------------------------------------------- /lib/services/connectivity_adapter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/connectivity_adapter.dart -------------------------------------------------------------------------------- /lib/services/device_info/device_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/device_info/device_info.dart -------------------------------------------------------------------------------- /lib/services/dio/dio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/dio/dio.dart -------------------------------------------------------------------------------- /lib/services/kv_store/encrypted_kv_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/kv_store/encrypted_kv_store.dart -------------------------------------------------------------------------------- /lib/services/kv_store/kv_store.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/kv_store/kv_store.dart -------------------------------------------------------------------------------- /lib/services/logger/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/logger/logger.dart -------------------------------------------------------------------------------- /lib/services/metadata/apis/localstorage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/apis/localstorage.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/album.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/artist.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/audio_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/audio_source.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/auth.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/browse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/browse.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/core.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/playlist.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/search.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/track.dart -------------------------------------------------------------------------------- /lib/services/metadata/endpoints/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/endpoints/user.dart -------------------------------------------------------------------------------- /lib/services/metadata/errors/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/errors/exceptions.dart -------------------------------------------------------------------------------- /lib/services/metadata/metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/metadata/metadata.dart -------------------------------------------------------------------------------- /lib/services/sourced_track/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/sourced_track/exceptions.dart -------------------------------------------------------------------------------- /lib/services/sourced_track/sourced_track.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/sourced_track/sourced_track.dart -------------------------------------------------------------------------------- /lib/services/wikipedia/wikipedia.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/wikipedia/wikipedia.dart -------------------------------------------------------------------------------- /lib/services/wm_tools/wm_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/wm_tools/wm_tools.dart -------------------------------------------------------------------------------- /lib/services/youtube_engine/newpipe_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/youtube_engine/newpipe_engine.dart -------------------------------------------------------------------------------- /lib/services/youtube_engine/quickjs_solver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/youtube_engine/quickjs_solver.dart -------------------------------------------------------------------------------- /lib/services/youtube_engine/youtube_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/youtube_engine/youtube_engine.dart -------------------------------------------------------------------------------- /lib/services/youtube_engine/youtube_explode_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/youtube_engine/youtube_explode_engine.dart -------------------------------------------------------------------------------- /lib/services/youtube_engine/yt_dlp_engine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/services/youtube_engine/yt_dlp_engine.dart -------------------------------------------------------------------------------- /lib/utils/duration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/utils/duration.dart -------------------------------------------------------------------------------- /lib/utils/migrations/sandbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/utils/migrations/sandbox.dart -------------------------------------------------------------------------------- /lib/utils/platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/utils/platform.dart -------------------------------------------------------------------------------- /lib/utils/primitive_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/utils/primitive_utils.dart -------------------------------------------------------------------------------- /lib/utils/service_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/lib/utils/service_utils.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/com.github.KRTirtho.Spotube.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/com.github.KRTirtho.Spotube.appdata.xml -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /linux/packaging/appimage/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/packaging/appimage/make_config.yaml -------------------------------------------------------------------------------- /linux/packaging/deb/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/packaging/deb/make_config.yaml -------------------------------------------------------------------------------- /linux/packaging/rpm/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/packaging/rpm/make_config.yaml -------------------------------------------------------------------------------- /linux/spotube.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/linux/spotube.desktop -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/Runner/RunnerDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/Runner/RunnerDebug.entitlements -------------------------------------------------------------------------------- /macos/packaging/dmg/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/macos/packaging/dmg/make_config.yaml -------------------------------------------------------------------------------- /macos/packaging/pkg/make_config.yaml: -------------------------------------------------------------------------------- 1 | install-path: /Applications 2 | -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/android-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/images/phoneScreenshots/android-1.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/android-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/images/phoneScreenshots/android-2.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/android-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/images/phoneScreenshots/android-3.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/android-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/images/phoneScreenshots/android-4.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/android-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/images/phoneScreenshots/android-5.jpg -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Spotube -------------------------------------------------------------------------------- /metadata/tr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/full_description.txt -------------------------------------------------------------------------------- /metadata/tr/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/images/icon.png -------------------------------------------------------------------------------- /metadata/tr/images/phoneScreenshots/android-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/images/phoneScreenshots/android-1.jpg -------------------------------------------------------------------------------- /metadata/tr/images/phoneScreenshots/android-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/images/phoneScreenshots/android-2.jpg -------------------------------------------------------------------------------- /metadata/tr/images/phoneScreenshots/android-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/images/phoneScreenshots/android-3.jpg -------------------------------------------------------------------------------- /metadata/tr/images/phoneScreenshots/android-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/images/phoneScreenshots/android-4.jpg -------------------------------------------------------------------------------- /metadata/tr/images/phoneScreenshots/android-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/metadata/tr/images/phoneScreenshots/android-5.jpg -------------------------------------------------------------------------------- /metadata/tr/short_description.txt: -------------------------------------------------------------------------------- 1 | Hafif ve kaynak dostu müzik istemcisi -------------------------------------------------------------------------------- /metadata/tr/title.txt: -------------------------------------------------------------------------------- 1 | Spotube -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /scripts/gensums.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/scripts/gensums.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/pkgbuild2json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/scripts/pkgbuild2json.sh -------------------------------------------------------------------------------- /scripts/update_flathub_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/scripts/update_flathub_version.py -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v1.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v10.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v10.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v2.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v3.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v4.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v5.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v5.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v6.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v6.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v7.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v7.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v8.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v8.dart -------------------------------------------------------------------------------- /test/drift/app_db/generated/schema_v9.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/generated/schema_v9.dart -------------------------------------------------------------------------------- /test/drift/app_db/migration_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/drift/app_db/migration_test.dart -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /untranslated_messages.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/flutter_bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/flutter_bootstrap.js -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/splash/img/branding-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-1x.png -------------------------------------------------------------------------------- /web/splash/img/branding-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-2x.png -------------------------------------------------------------------------------- /web/splash/img/branding-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-3x.png -------------------------------------------------------------------------------- /web/splash/img/branding-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-4x.png -------------------------------------------------------------------------------- /web/splash/img/branding-dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-dark-1x.png -------------------------------------------------------------------------------- /web/splash/img/branding-dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-dark-2x.png -------------------------------------------------------------------------------- /web/splash/img/branding-dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-dark-3x.png -------------------------------------------------------------------------------- /web/splash/img/branding-dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/branding-dark-4x.png -------------------------------------------------------------------------------- /web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /web/splash/img/light-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/img/light-background.png -------------------------------------------------------------------------------- /web/splash/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/splash.js -------------------------------------------------------------------------------- /web/splash/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/web/splash/style.css -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.node-version: -------------------------------------------------------------------------------- 1 | 22.17.0 -------------------------------------------------------------------------------- /website/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/.vscode/extensions.json -------------------------------------------------------------------------------- /website/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/.vscode/launch.json -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/README.md -------------------------------------------------------------------------------- /website/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/astro.config.mjs -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/pnpm-workspace.yaml -------------------------------------------------------------------------------- /website/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /website/public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /website/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/apple-touch-icon.png -------------------------------------------------------------------------------- /website/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/favicon-16x16.png -------------------------------------------------------------------------------- /website/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/favicon-32x32.png -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/fonts/AbrilFatface.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/fonts/AbrilFatface.ttf -------------------------------------------------------------------------------- /website/public/images/spotube-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/images/spotube-logo.png -------------------------------------------------------------------------------- /website/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/public/manifest.json -------------------------------------------------------------------------------- /website/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /website/src/collections/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/collections/app.ts -------------------------------------------------------------------------------- /website/src/components/ads/Ads.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/components/ads/Ads.astro -------------------------------------------------------------------------------- /website/src/components/drawer/Drawer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/components/drawer/Drawer.astro -------------------------------------------------------------------------------- /website/src/components/navigation/DocSideBar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/components/navigation/DocSideBar.astro -------------------------------------------------------------------------------- /website/src/components/navigation/TopBar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/components/navigation/TopBar.astro -------------------------------------------------------------------------------- /website/src/components/navigation/sidebar-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/components/navigation/sidebar-button.tsx -------------------------------------------------------------------------------- /website/src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content.config.ts -------------------------------------------------------------------------------- /website/src/content/docs/developing-plugins/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/developing-plugins/introduction.mdx -------------------------------------------------------------------------------- /website/src/content/docs/get-started/installing-plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/get-started/installing-plugins.mdx -------------------------------------------------------------------------------- /website/src/content/docs/get-started/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/get-started/introduction.mdx -------------------------------------------------------------------------------- /website/src/content/docs/plugin-apis/forms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/plugin-apis/forms.mdx -------------------------------------------------------------------------------- /website/src/content/docs/plugin-apis/localstorage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/plugin-apis/localstorage.mdx -------------------------------------------------------------------------------- /website/src/content/docs/plugin-apis/timezone.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/plugin-apis/timezone.mdx -------------------------------------------------------------------------------- /website/src/content/docs/plugin-apis/webview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/plugin-apis/webview.mdx -------------------------------------------------------------------------------- /website/src/content/docs/reference/libraries.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/reference/libraries.mdx -------------------------------------------------------------------------------- /website/src/content/docs/reference/models.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/content/docs/reference/models.mdx -------------------------------------------------------------------------------- /website/src/layouts/DocLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/layouts/DocLayout.astro -------------------------------------------------------------------------------- /website/src/layouts/MarkdownLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/layouts/MarkdownLayout.astro -------------------------------------------------------------------------------- /website/src/layouts/RootLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/layouts/RootLayout.astro -------------------------------------------------------------------------------- /website/src/modules/docs/Breadcrumbs.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/modules/docs/Breadcrumbs.astro -------------------------------------------------------------------------------- /website/src/modules/docs/TableOfContents.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/modules/docs/TableOfContents.astro -------------------------------------------------------------------------------- /website/src/modules/downloads/download-item.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/modules/downloads/download-item.astro -------------------------------------------------------------------------------- /website/src/modules/downloads/older/release-body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/modules/downloads/older/release-body.tsx -------------------------------------------------------------------------------- /website/src/modules/downloads/older/releases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/modules/downloads/older/releases.tsx -------------------------------------------------------------------------------- /website/src/modules/root/supporters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/modules/root/supporters.tsx -------------------------------------------------------------------------------- /website/src/pages/about/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/about/index.astro -------------------------------------------------------------------------------- /website/src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/blog/index.astro -------------------------------------------------------------------------------- /website/src/pages/docs/[...slug]/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/docs/[...slug]/index.astro -------------------------------------------------------------------------------- /website/src/pages/downloads/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/downloads/index.astro -------------------------------------------------------------------------------- /website/src/pages/downloads/nightly/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/downloads/nightly/index.astro -------------------------------------------------------------------------------- /website/src/pages/downloads/older/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/downloads/older/index.astro -------------------------------------------------------------------------------- /website/src/pages/downloads/packages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/downloads/packages/index.mdx -------------------------------------------------------------------------------- /website/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/pages/index.astro -------------------------------------------------------------------------------- /website/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/styles/global.css -------------------------------------------------------------------------------- /website/src/utils/get-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/src/utils/get-collection.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/packaging/exe/inno_setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/packaging/exe/inno_setup.iss -------------------------------------------------------------------------------- /windows/packaging/exe/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/packaging/exe/make_config.yaml -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KRTirtho/spotube/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------