├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── copilot-instructions.md ├── scripts │ ├── README.md │ └── close_search_issues.sh └── workflows │ ├── code_quality.yml │ └── win_exe.yml ├── .gitignore ├── .gitmodules ├── .metadata ├── .vscode └── launch.json ├── CHANGELOG.md ├── CLOSE_SEARCH_ISSUES.md ├── LICENSE ├── README.md ├── TODO.md ├── action.yml ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── io │ │ │ │ └── flutter │ │ │ │ └── app │ │ │ │ └── FlutterMultiDexApplication.java │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── anandnet │ │ │ │ └── harmonymusic │ │ │ │ ├── Equalizer.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── SDKInt.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── animated_splash_icon.xml │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── automotive_app_desc.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── icons │ ├── album.png │ ├── artist.png │ ├── icon.ico │ ├── icon.png │ └── song.png ├── cover.png ├── distribute_options.yaml ├── don_github.png ├── down_IzzyOnDroid.png ├── down_fdroid.png ├── fastlane └── metadata │ └── android │ ├── changelogs │ ├── 10.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ └── 26.txt │ └── en-US │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg │ ├── short_description.txt │ └── title.txt ├── icon.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── jnigen.yaml ├── lib ├── base_class │ └── playlist_album_screen_con_base.dart ├── main.dart ├── mixins │ └── additional_opeartion_mixin.dart ├── models │ ├── album.dart │ ├── artist.dart │ ├── durationstate.dart │ ├── hm_streaming_data.dart │ ├── media_Item_builder.dart │ ├── playling_from.dart │ ├── playlist.dart │ ├── quick_picks.dart │ └── thumbnail.dart ├── native_bindings │ └── andrid_utils.dart ├── services │ ├── audio_handler.dart │ ├── background_task.dart │ ├── constant.dart │ ├── continuations.dart │ ├── downloader.dart │ ├── equalizer.dart │ ├── music_service.dart │ ├── nav_parser.dart │ ├── permission_service.dart │ ├── piped_service.dart │ ├── stream_service.dart │ ├── synced_lyrics_service.dart │ ├── utils.dart │ └── windows_audio_service.dart ├── ui │ ├── home.dart │ ├── navigator.dart │ ├── player │ │ ├── components │ │ │ ├── albumart_lyrics.dart │ │ │ ├── animated_play_button.dart │ │ │ ├── backgroud_image.dart │ │ │ ├── gesture_player.dart │ │ │ ├── lyrics_switch.dart │ │ │ ├── lyrics_widget.dart │ │ │ ├── mini_player.dart │ │ │ ├── player_control.dart │ │ │ └── standard_player.dart │ │ ├── player.dart │ │ └── player_controller.dart │ ├── screens │ │ ├── Album │ │ │ ├── album_screen.dart │ │ │ └── album_screen_controller.dart │ │ ├── Artists │ │ │ ├── artist_screen.dart │ │ │ ├── artist_screen_controller.dart │ │ │ └── artist_screen_v2.dart │ │ ├── Home │ │ │ ├── home_screen.dart │ │ │ └── home_screen_controller.dart │ │ ├── Library │ │ │ ├── library.dart │ │ │ ├── library_combined.dart │ │ │ └── library_controller.dart │ │ ├── Playlist │ │ │ ├── playlist_screen.dart │ │ │ └── playlist_screen_controller.dart │ │ ├── Search │ │ │ ├── components │ │ │ │ ├── desktop_search_bar.dart │ │ │ │ └── search_item.dart │ │ │ ├── search_result_screen.dart │ │ │ ├── search_result_screen_controller.dart │ │ │ ├── search_result_screen_v2.dart │ │ │ ├── search_screen.dart │ │ │ └── search_screen_controller.dart │ │ └── Settings │ │ │ ├── components │ │ │ └── custom_expansion_tile.dart │ │ │ ├── settings_screen.dart │ │ │ └── settings_screen_controller.dart │ ├── utils │ │ └── theme_controller.dart │ └── widgets │ │ ├── add_to_playlist.dart │ │ ├── additional_operation_dialog.dart │ │ ├── animated_screen_transition.dart │ │ ├── backup_dialog.dart │ │ ├── bottom_nav_bar.dart │ │ ├── common_dialog_widget.dart │ │ ├── content_list_widget.dart │ │ ├── content_list_widget_item.dart │ │ ├── create_playlist_dialog.dart │ │ ├── cust_switch.dart │ │ ├── custom_button.dart │ │ ├── export_file_dialog.dart │ │ ├── image_widget.dart │ │ ├── link_piped.dart │ │ ├── list_widget.dart │ │ ├── loader.dart │ │ ├── lyrics_dialog.dart │ │ ├── mini_player_progress_bar.dart │ │ ├── modification_list.dart │ │ ├── modified_text_field.dart │ │ ├── new_version_dialog.dart │ │ ├── piped_sync_widget.dart │ │ ├── playlist_album_scroll_behaviour.dart │ │ ├── playlist_export_dialog.dart │ │ ├── quickpickswidget.dart │ │ ├── restore_dialog.dart │ │ ├── scroll_to_hide.dart │ │ ├── search_related_widgets.dart │ │ ├── separate_tab_item_widget.dart │ │ ├── shimmer_widgets │ │ ├── basic_container.dart │ │ ├── home_shimmer.dart │ │ └── song_list_shimmer.dart │ │ ├── side_nav_bar.dart │ │ ├── sleep_timer_bottom_sheet.dart │ │ ├── sliding_up_panel.dart │ │ ├── snackbar.dart │ │ ├── song_download_btn.dart │ │ ├── song_info_dialog.dart │ │ ├── song_list_tile.dart │ │ ├── songinfo_bottom_sheet.dart │ │ ├── sort_widget.dart │ │ └── up_next_queue.dart └── utils │ ├── app_link_controller.dart │ ├── get_localization.dart │ ├── helper.dart │ ├── house_keeping.dart │ ├── lang_mapping.dart │ ├── system_tray.dart │ └── update_check_flag_file.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ └── generated_plugin_registrant.h ├── main.cc ├── my_application.cc ├── my_application.h └── packaging │ ├── appimage │ └── make_config.yaml │ ├── deb │ └── make_config.yaml │ └── rpm │ └── make_config.yaml ├── localization ├── ar.json ├── az.json ├── bg.json ├── bn.json ├── ca.json ├── cs.json ├── de.json ├── en.json ├── eo.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fil.json ├── fj.json ├── fr.json ├── ga.json ├── generator.dart ├── gl.json ├── hi.json ├── hr.json ├── hu.json ├── ia.json ├── id.json ├── it.json ├── ja.json ├── km.json ├── kn.json ├── ko.json ├── ku.json ├── ml.json ├── my.json ├── nb_NO.json ├── nl.json ├── or.json ├── pa.json ├── pl.json ├── pt.json ├── ro.json ├── ru.json ├── sk.json ├── sr.json ├── sv.json ├── ta.json ├── te.json ├── tr.json ├── uk.json ├── ur.json ├── vi.json ├── zh_Hans.json └── zh_Hant.json ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ └── Flutter-Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── playlist_placeholder.png ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json ├── win_cert ├── DigiCertGlobalRootCA.crt └── cert.pem └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter └── CMakeLists.txt ├── 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 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/scripts/README.md -------------------------------------------------------------------------------- /.github/scripts/close_search_issues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/scripts/close_search_issues.sh -------------------------------------------------------------------------------- /.github/workflows/code_quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/workflows/code_quality.yml -------------------------------------------------------------------------------- /.github/workflows/win_exe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.github/workflows/win_exe.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.gitmodules -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLOSE_SEARCH_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/CLOSE_SEARCH_ISSUES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/TODO.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/action.yml -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/anandnet/harmonymusic/Equalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/kotlin/com/anandnet/harmonymusic/Equalizer.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/anandnet/harmonymusic/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/kotlin/com/anandnet/harmonymusic/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/anandnet/harmonymusic/SDKInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/kotlin/com/anandnet/harmonymusic/SDKInt.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/animated_splash_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/drawable/animated_splash_icon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/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/anandnet/Harmony-Music/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/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/main/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icons/album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/assets/icons/album.png -------------------------------------------------------------------------------- /assets/icons/artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/assets/icons/artist.png -------------------------------------------------------------------------------- /assets/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/assets/icons/icon.ico -------------------------------------------------------------------------------- /assets/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/assets/icons/icon.png -------------------------------------------------------------------------------- /assets/icons/song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/assets/icons/song.png -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/cover.png -------------------------------------------------------------------------------- /distribute_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/distribute_options.yaml -------------------------------------------------------------------------------- /don_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/don_github.png -------------------------------------------------------------------------------- /down_IzzyOnDroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/down_IzzyOnDroid.png -------------------------------------------------------------------------------- /down_fdroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/down_fdroid.png -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/10.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/12.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/13.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/15.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/16.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/17.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | * Fixed Song is not playable due to server restriction! 2 | * Added hl code #298 -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/19.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/20.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/21.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/22.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/23.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/24.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/25.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/changelogs/26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/changelogs/26.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | An Android App for streaming Music -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Harmony Music -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/icon.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /jnigen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/jnigen.yaml -------------------------------------------------------------------------------- /lib/base_class/playlist_album_screen_con_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/base_class/playlist_album_screen_con_base.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/mixins/additional_opeartion_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/mixins/additional_opeartion_mixin.dart -------------------------------------------------------------------------------- /lib/models/album.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/album.dart -------------------------------------------------------------------------------- /lib/models/artist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/artist.dart -------------------------------------------------------------------------------- /lib/models/durationstate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/durationstate.dart -------------------------------------------------------------------------------- /lib/models/hm_streaming_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/hm_streaming_data.dart -------------------------------------------------------------------------------- /lib/models/media_Item_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/media_Item_builder.dart -------------------------------------------------------------------------------- /lib/models/playling_from.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/playling_from.dart -------------------------------------------------------------------------------- /lib/models/playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/playlist.dart -------------------------------------------------------------------------------- /lib/models/quick_picks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/quick_picks.dart -------------------------------------------------------------------------------- /lib/models/thumbnail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/models/thumbnail.dart -------------------------------------------------------------------------------- /lib/native_bindings/andrid_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/native_bindings/andrid_utils.dart -------------------------------------------------------------------------------- /lib/services/audio_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/audio_handler.dart -------------------------------------------------------------------------------- /lib/services/background_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/background_task.dart -------------------------------------------------------------------------------- /lib/services/constant.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/constant.dart -------------------------------------------------------------------------------- /lib/services/continuations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/continuations.dart -------------------------------------------------------------------------------- /lib/services/downloader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/downloader.dart -------------------------------------------------------------------------------- /lib/services/equalizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/equalizer.dart -------------------------------------------------------------------------------- /lib/services/music_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/music_service.dart -------------------------------------------------------------------------------- /lib/services/nav_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/nav_parser.dart -------------------------------------------------------------------------------- /lib/services/permission_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/permission_service.dart -------------------------------------------------------------------------------- /lib/services/piped_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/piped_service.dart -------------------------------------------------------------------------------- /lib/services/stream_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/stream_service.dart -------------------------------------------------------------------------------- /lib/services/synced_lyrics_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/synced_lyrics_service.dart -------------------------------------------------------------------------------- /lib/services/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/utils.dart -------------------------------------------------------------------------------- /lib/services/windows_audio_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/services/windows_audio_service.dart -------------------------------------------------------------------------------- /lib/ui/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/home.dart -------------------------------------------------------------------------------- /lib/ui/navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/navigator.dart -------------------------------------------------------------------------------- /lib/ui/player/components/albumart_lyrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/albumart_lyrics.dart -------------------------------------------------------------------------------- /lib/ui/player/components/animated_play_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/animated_play_button.dart -------------------------------------------------------------------------------- /lib/ui/player/components/backgroud_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/backgroud_image.dart -------------------------------------------------------------------------------- /lib/ui/player/components/gesture_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/gesture_player.dart -------------------------------------------------------------------------------- /lib/ui/player/components/lyrics_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/lyrics_switch.dart -------------------------------------------------------------------------------- /lib/ui/player/components/lyrics_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/lyrics_widget.dart -------------------------------------------------------------------------------- /lib/ui/player/components/mini_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/mini_player.dart -------------------------------------------------------------------------------- /lib/ui/player/components/player_control.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/player_control.dart -------------------------------------------------------------------------------- /lib/ui/player/components/standard_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/components/standard_player.dart -------------------------------------------------------------------------------- /lib/ui/player/player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/player.dart -------------------------------------------------------------------------------- /lib/ui/player/player_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/player/player_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Album/album_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Album/album_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Album/album_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Album/album_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Artists/artist_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Artists/artist_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Artists/artist_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Artists/artist_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Artists/artist_screen_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Artists/artist_screen_v2.dart -------------------------------------------------------------------------------- /lib/ui/screens/Home/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Home/home_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Home/home_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Home/home_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Library/library.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Library/library.dart -------------------------------------------------------------------------------- /lib/ui/screens/Library/library_combined.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Library/library_combined.dart -------------------------------------------------------------------------------- /lib/ui/screens/Library/library_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Library/library_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Playlist/playlist_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Playlist/playlist_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Playlist/playlist_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Playlist/playlist_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/components/desktop_search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/components/desktop_search_bar.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/components/search_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/components/search_item.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/search_result_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/search_result_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/search_result_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/search_result_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/search_result_screen_v2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/search_result_screen_v2.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/search_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Search/search_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Search/search_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/screens/Settings/components/custom_expansion_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Settings/components/custom_expansion_tile.dart -------------------------------------------------------------------------------- /lib/ui/screens/Settings/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Settings/settings_screen.dart -------------------------------------------------------------------------------- /lib/ui/screens/Settings/settings_screen_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/screens/Settings/settings_screen_controller.dart -------------------------------------------------------------------------------- /lib/ui/utils/theme_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/utils/theme_controller.dart -------------------------------------------------------------------------------- /lib/ui/widgets/add_to_playlist.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/add_to_playlist.dart -------------------------------------------------------------------------------- /lib/ui/widgets/additional_operation_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/additional_operation_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/animated_screen_transition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/animated_screen_transition.dart -------------------------------------------------------------------------------- /lib/ui/widgets/backup_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/backup_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/bottom_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/bottom_nav_bar.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common_dialog_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/common_dialog_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/content_list_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/content_list_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/content_list_widget_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/content_list_widget_item.dart -------------------------------------------------------------------------------- /lib/ui/widgets/create_playlist_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/create_playlist_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/cust_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/cust_switch.dart -------------------------------------------------------------------------------- /lib/ui/widgets/custom_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/custom_button.dart -------------------------------------------------------------------------------- /lib/ui/widgets/export_file_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/export_file_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/image_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/image_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/link_piped.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/link_piped.dart -------------------------------------------------------------------------------- /lib/ui/widgets/list_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/list_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/loader.dart -------------------------------------------------------------------------------- /lib/ui/widgets/lyrics_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/lyrics_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/mini_player_progress_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/mini_player_progress_bar.dart -------------------------------------------------------------------------------- /lib/ui/widgets/modification_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/modification_list.dart -------------------------------------------------------------------------------- /lib/ui/widgets/modified_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/modified_text_field.dart -------------------------------------------------------------------------------- /lib/ui/widgets/new_version_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/new_version_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/piped_sync_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/piped_sync_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/playlist_album_scroll_behaviour.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/playlist_album_scroll_behaviour.dart -------------------------------------------------------------------------------- /lib/ui/widgets/playlist_export_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/playlist_export_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/quickpickswidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/quickpickswidget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/restore_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/restore_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/scroll_to_hide.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/scroll_to_hide.dart -------------------------------------------------------------------------------- /lib/ui/widgets/search_related_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/search_related_widgets.dart -------------------------------------------------------------------------------- /lib/ui/widgets/separate_tab_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/separate_tab_item_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/shimmer_widgets/basic_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/shimmer_widgets/basic_container.dart -------------------------------------------------------------------------------- /lib/ui/widgets/shimmer_widgets/home_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/shimmer_widgets/home_shimmer.dart -------------------------------------------------------------------------------- /lib/ui/widgets/shimmer_widgets/song_list_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/shimmer_widgets/song_list_shimmer.dart -------------------------------------------------------------------------------- /lib/ui/widgets/side_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/side_nav_bar.dart -------------------------------------------------------------------------------- /lib/ui/widgets/sleep_timer_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/sleep_timer_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/ui/widgets/sliding_up_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/sliding_up_panel.dart -------------------------------------------------------------------------------- /lib/ui/widgets/snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/snackbar.dart -------------------------------------------------------------------------------- /lib/ui/widgets/song_download_btn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/song_download_btn.dart -------------------------------------------------------------------------------- /lib/ui/widgets/song_info_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/song_info_dialog.dart -------------------------------------------------------------------------------- /lib/ui/widgets/song_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/song_list_tile.dart -------------------------------------------------------------------------------- /lib/ui/widgets/songinfo_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/songinfo_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/ui/widgets/sort_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/sort_widget.dart -------------------------------------------------------------------------------- /lib/ui/widgets/up_next_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/ui/widgets/up_next_queue.dart -------------------------------------------------------------------------------- /lib/utils/app_link_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/app_link_controller.dart -------------------------------------------------------------------------------- /lib/utils/get_localization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/get_localization.dart -------------------------------------------------------------------------------- /lib/utils/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/helper.dart -------------------------------------------------------------------------------- /lib/utils/house_keeping.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/house_keeping.dart -------------------------------------------------------------------------------- /lib/utils/lang_mapping.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/lang_mapping.dart -------------------------------------------------------------------------------- /lib/utils/system_tray.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/system_tray.dart -------------------------------------------------------------------------------- /lib/utils/update_check_flag_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/lib/utils/update_check_flag_file.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /linux/packaging/appimage/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/packaging/appimage/make_config.yaml -------------------------------------------------------------------------------- /linux/packaging/deb/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/packaging/deb/make_config.yaml -------------------------------------------------------------------------------- /linux/packaging/rpm/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/linux/packaging/rpm/make_config.yaml -------------------------------------------------------------------------------- /localization/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ar.json -------------------------------------------------------------------------------- /localization/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/az.json -------------------------------------------------------------------------------- /localization/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/bg.json -------------------------------------------------------------------------------- /localization/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/bn.json -------------------------------------------------------------------------------- /localization/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ca.json -------------------------------------------------------------------------------- /localization/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/cs.json -------------------------------------------------------------------------------- /localization/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/de.json -------------------------------------------------------------------------------- /localization/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/en.json -------------------------------------------------------------------------------- /localization/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/eo.json -------------------------------------------------------------------------------- /localization/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/es.json -------------------------------------------------------------------------------- /localization/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/et.json -------------------------------------------------------------------------------- /localization/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/eu.json -------------------------------------------------------------------------------- /localization/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/fa.json -------------------------------------------------------------------------------- /localization/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/fi.json -------------------------------------------------------------------------------- /localization/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/fil.json -------------------------------------------------------------------------------- /localization/fj.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /localization/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/fr.json -------------------------------------------------------------------------------- /localization/ga.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /localization/generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/generator.dart -------------------------------------------------------------------------------- /localization/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/gl.json -------------------------------------------------------------------------------- /localization/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/hi.json -------------------------------------------------------------------------------- /localization/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/hr.json -------------------------------------------------------------------------------- /localization/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/hu.json -------------------------------------------------------------------------------- /localization/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ia.json -------------------------------------------------------------------------------- /localization/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/id.json -------------------------------------------------------------------------------- /localization/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/it.json -------------------------------------------------------------------------------- /localization/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ja.json -------------------------------------------------------------------------------- /localization/km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/km.json -------------------------------------------------------------------------------- /localization/kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/kn.json -------------------------------------------------------------------------------- /localization/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ko.json -------------------------------------------------------------------------------- /localization/ku.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /localization/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ml.json -------------------------------------------------------------------------------- /localization/my.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /localization/nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/nb_NO.json -------------------------------------------------------------------------------- /localization/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/nl.json -------------------------------------------------------------------------------- /localization/or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/or.json -------------------------------------------------------------------------------- /localization/pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/pa.json -------------------------------------------------------------------------------- /localization/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/pl.json -------------------------------------------------------------------------------- /localization/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/pt.json -------------------------------------------------------------------------------- /localization/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ro.json -------------------------------------------------------------------------------- /localization/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ru.json -------------------------------------------------------------------------------- /localization/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/sk.json -------------------------------------------------------------------------------- /localization/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/sr.json -------------------------------------------------------------------------------- /localization/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/sv.json -------------------------------------------------------------------------------- /localization/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ta.json -------------------------------------------------------------------------------- /localization/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/te.json -------------------------------------------------------------------------------- /localization/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/tr.json -------------------------------------------------------------------------------- /localization/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/uk.json -------------------------------------------------------------------------------- /localization/ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/ur.json -------------------------------------------------------------------------------- /localization/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/vi.json -------------------------------------------------------------------------------- /localization/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/zh_Hans.json -------------------------------------------------------------------------------- /localization/zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/localization/zh_Hant.json -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /playlist_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/playlist_placeholder.png -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/web/manifest.json -------------------------------------------------------------------------------- /win_cert/DigiCertGlobalRootCA.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/win_cert/DigiCertGlobalRootCA.crt -------------------------------------------------------------------------------- /win_cert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/win_cert/cert.pem -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/packaging/exe/inno_setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/packaging/exe/inno_setup.iss -------------------------------------------------------------------------------- /windows/packaging/exe/make_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/packaging/exe/make_config.yaml -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandnet/Harmony-Music/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------