├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Groove.pro ├── LICENSE ├── README.md ├── app ├── Groove.py ├── View │ ├── album_interface │ │ ├── __init__.py │ │ ├── album_info_bar.py │ │ ├── album_interface.py │ │ └── song_list_widget.py │ ├── desktop_lyric_interface │ │ ├── __init__.py │ │ ├── buttons.py │ │ ├── desktop_lyric_interface.py │ │ └── lyric_widget.py │ ├── main_window │ │ ├── __init__.py │ │ └── main_window.py │ ├── more_search_result_interface │ │ ├── __init__.py │ │ ├── album_interface.py │ │ ├── more_search_result_interface.py │ │ ├── playlist_interface.py │ │ ├── singer_interface.py │ │ └── song_interface.py │ ├── my_music_interface │ │ ├── __init__.py │ │ ├── album_tab_interface │ │ │ ├── __init__.py │ │ │ ├── album_card_interface.py │ │ │ └── album_tab_interface.py │ │ ├── my_music_interface.py │ │ ├── singer_tab_interface │ │ │ ├── __init__.py │ │ │ ├── singer_card_interface.py │ │ │ └── singer_tab_interface.py │ │ ├── song_tab_interface │ │ │ ├── __init__.py │ │ │ └── song_tab_interface.py │ │ └── tool_bar.py │ ├── navigation_interface │ │ ├── __init__.py │ │ ├── navigation_bar.py │ │ ├── navigation_button.py │ │ ├── navigation_interface.py │ │ ├── navigation_menu.py │ │ ├── navigation_widget.py │ │ ├── navigation_widget_base.py │ │ └── search_line_edit.py │ ├── play_bar │ │ ├── __init__.py │ │ ├── play_bar.py │ │ ├── play_bar_buttons.py │ │ └── song_info_card.py │ ├── playing_interface │ │ ├── __init__.py │ │ ├── play_bar.py │ │ ├── playing_interface.py │ │ ├── song_card.py │ │ ├── song_info_card.py │ │ ├── song_info_card_chute.py │ │ └── song_list_widget.py │ ├── playlist_card_interface │ │ ├── __init__.py │ │ └── playlist_card_interface.py │ ├── playlist_interface │ │ ├── __init__.py │ │ ├── playlist_info_bar.py │ │ ├── playlist_interface.py │ │ └── song_list_widget.py │ ├── recent_play_interface │ │ ├── __init__.py │ │ ├── recent_play_interface.py │ │ └── song_list_widget.py │ ├── search_result_interface │ │ ├── __init__.py │ │ ├── album_group_box.py │ │ ├── group_box.py │ │ ├── playlist_group_box.py │ │ ├── search_result_interface.py │ │ ├── singer_group_box.py │ │ └── song_group_box.py │ ├── setting_interface │ │ ├── __init__.py │ │ └── setting_interface.py │ ├── singer_interface │ │ ├── __init__.py │ │ ├── singer_info_bar.py │ │ └── singer_interface.py │ ├── smallest_play_interface │ │ ├── __init__.py │ │ ├── buttons.py │ │ ├── smallest_play_interface.py │ │ └── title_bar.py │ └── video_interface │ │ ├── __init__.py │ │ ├── play_bar.py │ │ └── video_interface.py ├── common │ ├── application.py │ ├── audio_utils.py │ ├── auto_wrap.py │ ├── cache.py │ ├── config.py │ ├── crawler │ │ ├── __init__.py │ │ ├── crawler_base.py │ │ ├── exception_handler.py │ │ ├── kugou_music_crawler.py │ │ ├── kuwo_music_crawler.py │ │ ├── qq_music_crawler.py │ │ └── wanyi_music_crawler.py │ ├── database │ │ ├── __init__.py │ │ ├── controller │ │ │ ├── __init__.py │ │ │ ├── album_cover_controller.py │ │ │ ├── album_info_controller.py │ │ │ ├── playlist_controller.py │ │ │ ├── recent_play_controller.py │ │ │ ├── singer_info_controller.py │ │ │ └── song_info_controller.py │ │ ├── dao │ │ │ ├── __init__.py │ │ │ ├── album_info_dao.py │ │ │ ├── dao_base.py │ │ │ ├── playlist_dao.py │ │ │ ├── recent_play_dao.py │ │ │ ├── singer_info_dao.py │ │ │ ├── song_info_dao.py │ │ │ └── sql_query.py │ │ ├── db_initializer.py │ │ ├── entity │ │ │ ├── __init__.py │ │ │ ├── album_info.py │ │ │ ├── entity.py │ │ │ ├── playlist.py │ │ │ ├── recent_play.py │ │ │ ├── singer_info.py │ │ │ └── song_info.py │ │ ├── service │ │ │ ├── __init__.py │ │ │ ├── album_info_service.py │ │ │ ├── playlist_service.py │ │ │ ├── recent_play_service.py │ │ │ ├── service_base.py │ │ │ ├── singer_info_service.py │ │ │ └── song_info_service.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── uuid_utils.py │ ├── dpi_manager.py │ ├── exception_handler.py │ ├── get_pressed_pos.py │ ├── hotkey_manager.py │ ├── icon.py │ ├── image_utils.py │ ├── library │ │ ├── __init__.py │ │ ├── directory.py │ │ ├── file_system.py │ │ ├── file_system_watcher.py │ │ └── library.py │ ├── logger.py │ ├── lyric │ │ ├── __init__.py │ │ └── parser.py │ ├── meta_data │ │ ├── frame_map.py │ │ ├── reader │ │ │ ├── __init__.py │ │ │ ├── album_cover_reader.py │ │ │ ├── lyric_reader.py │ │ │ └── song_info_reader.py │ │ └── writer.py │ ├── os_utils.py │ ├── picture.py │ ├── quality.py │ ├── resource.py │ ├── setting.py │ ├── signal_bus.py │ ├── singleton.py │ ├── smooth_scroll.py │ ├── style_sheet.py │ ├── thread │ │ ├── blur_cover_thread.py │ │ ├── crawl_meta_data_thread.py │ │ ├── download_mv_thread.py │ │ ├── download_song_thread.py │ │ ├── get_lyric_thread.py │ │ ├── get_mv_url_thread.py │ │ ├── get_online_song_url_thread.py │ │ ├── get_singer_avatar_thread.py │ │ ├── library_thread.py │ │ ├── save_album_info_thread.py │ │ ├── search_online_songs_thread.py │ │ ├── singer_avatar_downloader.py │ │ └── view_online_thread.py │ ├── translator.py │ ├── url.py │ ├── utils │ │ ├── __init__.py │ │ ├── linux_utils.py │ │ ├── mac_utils.py │ │ └── win_utils.py │ ├── version_manager.py │ └── window_effect │ │ ├── __init__.py │ │ ├── c_structures.py │ │ └── window_effect.py ├── components │ ├── album_card │ │ ├── __init__.py │ │ ├── album_blur_background.py │ │ ├── album_card.py │ │ ├── album_card_base.py │ │ └── album_card_view.py │ ├── app_bar │ │ ├── __init__.py │ │ ├── app_bar_button.py │ │ └── collapsing_app_bar_base.py │ ├── buttons │ │ ├── blur_button.py │ │ ├── circle_button.py │ │ ├── perspective_button.py │ │ ├── play_bar_buttons.py │ │ ├── switch_button.py │ │ ├── three_state_button.py │ │ └── tool_tip_button.py │ ├── dialog_box │ │ ├── album_info_edit_dialog.py │ │ ├── color_dialog.py │ │ ├── dialog.py │ │ ├── mask_dialog_base.py │ │ ├── message_dialog.py │ │ ├── playlist_dialog.py │ │ ├── song_info_edit_dialog.py │ │ └── song_property_dialog.py │ ├── frameless_window │ │ ├── __init__.py │ │ ├── linux.py │ │ ├── mac.py │ │ └── win32.py │ ├── label_navigation_interface.py │ ├── layout │ │ ├── __init__.py │ │ ├── expand_layout.py │ │ ├── flow_layout.py │ │ ├── h_box_layout.py │ │ └── v_box_layout.py │ ├── media_player │ │ ├── __init__.py │ │ ├── media_player.py │ │ └── media_playlist.py │ ├── playlist_card │ │ ├── __init__.py │ │ ├── blur_background.py │ │ ├── playlist_card.py │ │ ├── playlist_card_base.py │ │ └── playlist_card_view.py │ ├── selection_mode_interface │ │ ├── __init__.py │ │ ├── bar │ │ │ ├── __init__.py │ │ │ ├── button.py │ │ │ └── selection_mode_bar.py │ │ └── selection_mode_interface.py │ ├── settings │ │ ├── __init__.py │ │ ├── expand_setting_card.py │ │ ├── folder_list_setting_card.py │ │ ├── options_setting_card.py │ │ ├── setting_card.py │ │ └── setting_card_group.py │ ├── singer_card │ │ ├── __init__.py │ │ ├── singer_blur_background.py │ │ ├── singer_card.py │ │ ├── singer_card_base.py │ │ └── singer_card_view.py │ ├── song_list_widget │ │ ├── __init__.py │ │ ├── basic_song_card.py │ │ ├── basic_song_list_widget.py │ │ ├── no_scroll_song_list_widget.py │ │ ├── song_card.py │ │ ├── song_card_type.py │ │ ├── song_list_widget.py │ │ └── song_name_card.py │ ├── system_tray_icon │ │ ├── __init__.py │ │ └── system_tray_icon.py │ ├── thumbnail_tool_bar │ │ ├── __init__.py │ │ └── thumbnail_tool_bar.py │ ├── title_bar │ │ ├── __init__.py │ │ ├── title_bar.py │ │ └── title_bar_buttons.py │ └── widgets │ │ ├── check_box.py │ │ ├── label.py │ │ ├── line_edit.py │ │ ├── list_widget.py │ │ ├── lyric_widget.py │ │ ├── menu.py │ │ ├── perspective_widget.py │ │ ├── scroll_area.py │ │ ├── slider.py │ │ ├── stacked_widget.py │ │ ├── tool_tip.py │ │ └── volume_widget.py └── resource │ ├── i18n │ ├── Groove_hk.qm │ ├── Groove_hk.ts │ ├── Groove_zh.qm │ └── Groove_zh.ts │ ├── images │ ├── acrylic │ │ └── noise.png │ ├── album_tab_interface │ │ └── CheckMark.png │ ├── app_bar │ │ ├── Add.svg │ │ ├── AddFavorite.svg │ │ ├── Contact.svg │ │ ├── Delete.svg │ │ ├── Edit.svg │ │ ├── More.svg │ │ ├── Online.svg │ │ ├── Pin.svg │ │ └── Play.svg │ ├── blur_button │ │ ├── Add.svg │ │ └── Play.svg │ ├── circle_button │ │ ├── BackToWindow.svg │ │ ├── ChevronUp.svg │ │ ├── DesktopLyric.svg │ │ ├── Download.svg │ │ ├── FullScreen.svg │ │ ├── More.svg │ │ ├── Next.svg │ │ ├── Pause.svg │ │ ├── Play.svg │ │ ├── Playlist.svg │ │ ├── Previous.svg │ │ ├── RepeatAll.svg │ │ ├── RepeatOne.svg │ │ ├── Shuffle.svg │ │ ├── SkipBack.svg │ │ ├── SkipForward.svg │ │ ├── SmallestPlayMode.svg │ │ ├── Volume0_black.svg │ │ ├── Volume0_white.svg │ │ ├── Volume1_black.svg │ │ ├── Volume1_white.svg │ │ ├── Volume2_black.svg │ │ ├── Volume2_white.svg │ │ ├── Volume3_black.svg │ │ ├── Volume3_white.svg │ │ ├── Volumex_black.svg │ │ └── Volumex_white.svg │ ├── color_picker │ │ ├── Clear_black.svg │ │ ├── Clear_white.svg │ │ └── HuePanel.png │ ├── default_covers │ │ ├── album_113_113.png │ │ ├── album_200_200.png │ │ ├── playlist_135_135.png │ │ ├── playlist_275_275.png │ │ ├── singer_200_200.png │ │ └── singer_295_295.png │ ├── desktop_lyric_interface │ │ ├── Close.svg │ │ ├── FontDecrease.svg │ │ ├── FontIncrease.svg │ │ ├── Lock.svg │ │ ├── Next.svg │ │ ├── Pause.svg │ │ ├── Play.svg │ │ ├── Previous.svg │ │ └── Setting.svg │ ├── line_edit │ │ ├── Close_black.svg │ │ ├── Close_green_black.svg │ │ ├── Close_green_white.svg │ │ └── Close_white.svg │ ├── logo │ │ ├── FileExtension.ico │ │ ├── logo.icns │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo_30_30.png │ │ ├── logo_splash_screen.png │ │ └── logo_tray.png │ ├── menu │ │ ├── Add_black.svg │ │ ├── Add_white.svg │ │ ├── Album_black.svg │ │ ├── Album_white.svg │ │ ├── Cancel_black.svg │ │ ├── Cancel_white.svg │ │ ├── ChevronRight_black.svg │ │ ├── ChevronRight_white.svg │ │ ├── ClearBold_black.svg │ │ ├── ClearBold_white.svg │ │ ├── Clear_black.svg │ │ ├── Clear_white.svg │ │ ├── Close_black.svg │ │ ├── Close_white.svg │ │ ├── Copy_black.svg │ │ ├── Copy_white.svg │ │ ├── Cut_black.svg │ │ ├── Cut_white.svg │ │ ├── Embed_black.svg │ │ ├── Embed_white.svg │ │ ├── FileLink_black.svg │ │ ├── FileLink_white.svg │ │ ├── FolderLink_black.svg │ │ ├── FolderLink_white.svg │ │ ├── FullScreen_black.svg │ │ ├── FullScreen_white.svg │ │ ├── Locate_black.svg │ │ ├── Locate_white.svg │ │ ├── Lock_black.svg │ │ ├── Lock_white.svg │ │ ├── Lyric_black.svg │ │ ├── Lyric_white.svg │ │ ├── Movie_black.svg │ │ ├── Movie_white.svg │ │ ├── MusicFolder_black.svg │ │ ├── MusicFolder_white.svg │ │ ├── MusicNote_black.svg │ │ ├── MusicNote_white.svg │ │ ├── Next_black.svg │ │ ├── Next_white.svg │ │ ├── Paste_black.svg │ │ ├── Paste_white.svg │ │ ├── Pause_black.svg │ │ ├── Pause_white.svg │ │ ├── Play_black.svg │ │ ├── Play_white.svg │ │ ├── Playing_black.svg │ │ ├── Playing_white.svg │ │ ├── Playlist_black.svg │ │ ├── Playlist_white.svg │ │ ├── Previous_black.svg │ │ ├── Previous_white.svg │ │ ├── Reload_black.svg │ │ ├── Reload_white.svg │ │ ├── Settings_black.svg │ │ ├── Settings_white.svg │ │ ├── SignOut_black.svg │ │ ├── SignOut_white.svg │ │ ├── SpeedDown_black.svg │ │ ├── SpeedDown_white.svg │ │ ├── SpeedUp_black.svg │ │ ├── SpeedUp_white.svg │ │ ├── Speed_black.svg │ │ ├── Speed_white.svg │ │ ├── Unlock_black.svg │ │ ├── Unlock_white.svg │ │ ├── Unview_black.svg │ │ ├── Unview_white.svg │ │ ├── View_black.svg │ │ └── View_white.svg │ ├── navigation_interface │ │ ├── Add_black.svg │ │ ├── Add_white.svg │ │ ├── Album_black.svg │ │ ├── Album_white.svg │ │ ├── Close_black.svg │ │ ├── Close_green_black.svg │ │ ├── Close_green_white.svg │ │ ├── Close_white.svg │ │ ├── GlobalNavButton_black.svg │ │ ├── GlobalNavButton_white.svg │ │ ├── MusicInCollection_black.svg │ │ ├── MusicInCollection_white.svg │ │ ├── Playing_black.svg │ │ ├── Playing_white.svg │ │ ├── Playlist_black.svg │ │ ├── Playlist_white.svg │ │ ├── Recent_black.svg │ │ ├── Recent_white.svg │ │ ├── SearchFlipped_black.svg │ │ ├── SearchFlipped_green_black.svg │ │ ├── SearchFlipped_green_white.svg │ │ ├── SearchFlipped_white.svg │ │ ├── Search_black.svg │ │ ├── Search_white.svg │ │ ├── Settings_black.svg │ │ └── Settings_white.svg │ ├── play_bar │ │ ├── More.png │ │ ├── Next.png │ │ ├── Pause.png │ │ ├── Play.png │ │ ├── Previous.png │ │ ├── RepeatAll.png │ │ ├── RepeatOne.png │ │ ├── Shuffle.png │ │ ├── SmallestPlayMode.png │ │ ├── Volume0.png │ │ ├── Volume1.png │ │ ├── Volume2.png │ │ ├── Volume3.png │ │ └── Volumex.png │ ├── playing_interface │ │ ├── Add_green.svg │ │ ├── Add_white.svg │ │ ├── CheckMark.png │ │ ├── Play_green.svg │ │ ├── Play_white.svg │ │ ├── Playing_green.svg │ │ ├── Playing_white.svg │ │ ├── Shuffle_hover.svg │ │ ├── Shuffle_normal.svg │ │ └── Shuffle_pressed.svg │ ├── playlist_card_interface │ │ ├── Add_black_hover.svg │ │ ├── Add_black_normal.svg │ │ ├── Add_black_pressed.svg │ │ ├── Add_white_hover.svg │ │ ├── Add_white_normal.svg │ │ └── Add_white_pressed.svg │ ├── playlist_dialog │ │ ├── Clear_black.svg │ │ ├── Clear_green.svg │ │ ├── Clear_white.svg │ │ ├── Pen_black.svg │ │ ├── Pen_black_noFocus.svg │ │ ├── Pen_black_noFocus_hover.svg │ │ ├── Pen_white.svg │ │ ├── Pen_white_noFocus.svg │ │ ├── Pen_white_noFocus_hover.svg │ │ └── Playlist.svg │ ├── playlist_interface │ │ ├── album_black_hover.svg │ │ ├── album_black_normal.svg │ │ ├── album_black_pressed.svg │ │ ├── album_white_hover.svg │ │ ├── album_white_normal.svg │ │ └── album_white_pressed.svg │ ├── random_play_all │ │ ├── Shuffle_black_hover.svg │ │ ├── Shuffle_black_normal.svg │ │ ├── Shuffle_black_pressed.svg │ │ ├── Shuffle_white_hover.svg │ │ ├── Shuffle_white_normal.svg │ │ └── Shuffle_white_pressed.svg │ ├── search_result_interface │ │ ├── ChevronLeft.svg │ │ ├── ChevronRight.svg │ │ ├── Search_black.svg │ │ ├── Search_white.svg │ │ ├── ShowAll_hover_black.svg │ │ ├── ShowAll_hover_white.svg │ │ ├── ShowAll_normal_black.svg │ │ ├── ShowAll_normal_white.svg │ │ ├── ShowAll_pressed_black.svg │ │ └── ShowAll_pressed_white.svg │ ├── selection_mode_bar │ │ ├── Add_black.svg │ │ ├── Add_white.svg │ │ ├── CancelSelectAll_black.svg │ │ ├── CancelSelectAll_white.svg │ │ ├── Cancel_black.svg │ │ ├── Cancel_white.svg │ │ ├── Contact_black.svg │ │ ├── Contact_white.svg │ │ ├── Delete_black.svg │ │ ├── Delete_white.svg │ │ ├── Down_black.svg │ │ ├── Down_white.svg │ │ ├── Download_black.svg │ │ ├── Download_white.svg │ │ ├── Edit_black.svg │ │ ├── Edit_white.svg │ │ ├── NextToPlay_black.svg │ │ ├── NextToPlay_white.svg │ │ ├── Pin_black.svg │ │ ├── Pin_white.svg │ │ ├── Play_black.svg │ │ ├── Play_white.svg │ │ ├── Property_black.svg │ │ ├── Property_white.svg │ │ ├── SelectAll_black.svg │ │ ├── SelectAll_white.svg │ │ ├── ShowAlbum_black.svg │ │ ├── ShowAlbum_white.svg │ │ ├── Up_black.svg │ │ └── Up_white.svg │ ├── setting_card │ │ ├── Album_black.svg │ │ ├── Album_white.svg │ │ ├── Alignment_black.svg │ │ ├── Alignment_white.svg │ │ ├── Brush_black.svg │ │ ├── Brush_white.svg │ │ ├── Cache_black.svg │ │ ├── Cache_white.svg │ │ ├── ChevronDown_black.svg │ │ ├── ChevronDown_white.svg │ │ ├── Close_black.svg │ │ ├── Close_white.svg │ │ ├── Download_black.svg │ │ ├── Download_white.svg │ │ ├── Embed_black.svg │ │ ├── Embed_white.svg │ │ ├── Feedback_black.svg │ │ ├── Feedback_white.svg │ │ ├── FileSearch_black.svg │ │ ├── FileSearch_white.svg │ │ ├── FluorescentPen_black.svg │ │ ├── FluorescentPen_white.svg │ │ ├── FolderAdd_black.svg │ │ ├── FolderAdd_white.svg │ │ ├── Folder_black.svg │ │ ├── Folder_white.svg │ │ ├── Font_black.svg │ │ ├── Font_white.svg │ │ ├── Help_black.svg │ │ ├── Help_white.svg │ │ ├── Info_black.svg │ │ ├── Info_white.svg │ │ ├── Language_black.svg │ │ ├── Language_white.svg │ │ ├── Minimize_black.svg │ │ ├── Minimize_white.svg │ │ ├── MusicFolder_black.svg │ │ ├── MusicFolder_white.svg │ │ ├── Music_black.svg │ │ ├── Music_white.svg │ │ ├── PaintBucket_black.svg │ │ ├── PaintBucket_white.svg │ │ ├── Palette_black.svg │ │ ├── Palette_white.svg │ │ ├── PencilInk_black.svg │ │ ├── PencilInk_white.svg │ │ ├── Search_black.svg │ │ ├── Search_white.svg │ │ ├── Transparent_black.svg │ │ ├── Transparent_white.svg │ │ ├── Update_black.svg │ │ ├── Update_white.svg │ │ ├── Video_black.svg │ │ ├── Video_white.svg │ │ ├── Web_black.svg │ │ ├── Web_white.svg │ │ ├── Zoom_black.svg │ │ └── Zoom_white.svg │ ├── singer_interface │ │ ├── Play_black_hover.svg │ │ ├── Play_black_normal.svg │ │ ├── Play_black_pressed.svg │ │ ├── Play_white_hover.svg │ │ ├── Play_white_normal.svg │ │ └── Play_white_pressed.svg │ ├── smallest_play_interface │ │ ├── Pause.svg │ │ └── Play.svg │ ├── song_list_widget │ │ ├── Add_black.svg │ │ ├── Add_green_black.svg │ │ ├── Add_green_white.svg │ │ ├── Add_white.svg │ │ ├── CheckMark.png │ │ ├── CheckMark_pressed.png │ │ ├── Delete_black.svg │ │ ├── Delete_green_black.svg │ │ ├── Delete_green_white.svg │ │ ├── Delete_white.svg │ │ ├── Download_black.svg │ │ ├── Download_green_black.svg │ │ ├── Download_green_white.svg │ │ ├── Download_white.svg │ │ ├── Info_red.svg │ │ ├── Info_white.svg │ │ ├── Play_black.svg │ │ ├── Play_green_black.svg │ │ ├── Play_green_white.svg │ │ ├── Play_white.svg │ │ ├── Playing_green_black.svg │ │ ├── Playing_green_white.svg │ │ └── Playing_white.svg │ ├── state_tool_tip │ │ ├── close_hover.svg │ │ ├── close_normal.svg │ │ ├── close_pressed.svg │ │ ├── completed.svg │ │ ├── info.svg │ │ └── running.svg │ ├── thumbnail_tool_bar │ │ ├── Next.svg │ │ ├── Pause.svg │ │ ├── Play.svg │ │ └── Previous.svg │ └── title_bar │ │ ├── 关闭按钮_hover_57_40.png │ │ ├── 关闭按钮_pressed_57_40.png │ │ ├── 向下还原按钮_pressed_57_40.png │ │ ├── 白色关闭按钮_57_40.png │ │ ├── 白色向下还原_57_40.png │ │ ├── 白色向下还原按钮_57_40.png │ │ ├── 白色最大化按钮_57_40.png │ │ ├── 白色最小化按钮_57_40.png │ │ ├── 白色返回按钮_60_40.png │ │ ├── 白色返回按钮_hover_60_40.png │ │ ├── 白色返回按钮_pressed_60_40.png │ │ ├── 绿色向下还原按钮_hover_57_40.png │ │ ├── 绿色最大化按钮_hover_57_40.png │ │ ├── 绿色最小化按钮_hover_57_40.png │ │ ├── 透明白色关闭按钮_57_40.png │ │ ├── 透明白色返回按钮_60_40.png │ │ ├── 透明白色返回按钮_hover_60_40.png │ │ ├── 透明白色返回按钮_pressed_60_40.png │ │ ├── 透明黑色关闭按钮_57_40.png │ │ ├── 透明黑色最大化按钮_57_40.png │ │ ├── 透明黑色最小化按钮_57_40.png │ │ ├── 黑色关闭按钮_57_40.png │ │ ├── 黑色向下还原按钮_57_40.png │ │ ├── 黑色最大化按钮_57_40.png │ │ ├── 黑色最大化按钮_pressed_57_40.png │ │ ├── 黑色最小化按钮_57_40.png │ │ ├── 黑色最小化按钮_pressed_57_40.png │ │ ├── 黑色返回按钮_60_40.png │ │ ├── 黑色返回按钮_hover_60_40.png │ │ └── 黑色返回按钮_pressed_60_40.png │ ├── qss │ ├── dark │ │ ├── album_card_interface.qss │ │ ├── album_group_box.qss │ │ ├── album_info_edit_dialog.qss │ │ ├── color_dialog.qss │ │ ├── desktop_lyric_interface.qss │ │ ├── dialog.qss │ │ ├── expand_setting_card.qss │ │ ├── label_navigation_interface.qss │ │ ├── lyric_widget.qss │ │ ├── main_window.qss │ │ ├── menu.qss │ │ ├── message_dialog.qss │ │ ├── more_search_result_interface.qss │ │ ├── my_music_interface_toolBar.qss │ │ ├── navigation.qss │ │ ├── playing_interface.qss │ │ ├── playing_interface_song_info_card.qss │ │ ├── playing_interface_song_list_widget.qss │ │ ├── playlist_card_interface.qss │ │ ├── playlist_dialog.qss │ │ ├── playlist_group_box.qss │ │ ├── playlist_interface.qss │ │ ├── recent_play_interface.qss │ │ ├── search_result_interface.qss │ │ ├── selection_mode_interface.qss │ │ ├── setting_card.qss │ │ ├── setting_group.qss │ │ ├── setting_interface.qss │ │ ├── singer_card_interface.qss │ │ ├── singer_group_box.qss │ │ ├── singer_interface.qss │ │ ├── smallest_play_interface.qss │ │ ├── song_group_box.qss │ │ ├── song_info_edit_dialog.qss │ │ ├── song_list_widget.qss │ │ ├── song_property_dialog.qss │ │ ├── state_tool_tip.qss │ │ ├── switch_button.qss │ │ ├── title_bar.qss │ │ ├── tool_tip.qss │ │ └── volume_widget.qss │ └── light │ │ ├── album_card_interface.qss │ │ ├── album_group_box.qss │ │ ├── album_info_edit_dialog.qss │ │ ├── color_dialog.qss │ │ ├── desktop_lyric_interface.qss │ │ ├── dialog.qss │ │ ├── expand_setting_card.qss │ │ ├── label_navigation_interface.qss │ │ ├── lyric_widget.qss │ │ ├── main_window.qss │ │ ├── menu.qss │ │ ├── message_dialog.qss │ │ ├── more_search_result_interface.qss │ │ ├── my_music_interface_toolBar.qss │ │ ├── navigation.qss │ │ ├── playing_interface.qss │ │ ├── playing_interface_song_info_card.qss │ │ ├── playing_interface_song_list_widget.qss │ │ ├── playlist_card_interface.qss │ │ ├── playlist_dialog.qss │ │ ├── playlist_group_box.qss │ │ ├── playlist_interface.qss │ │ ├── recent_play_interface.qss │ │ ├── search_result_interface.qss │ │ ├── selection_mode_interface.qss │ │ ├── setting_card.qss │ │ ├── setting_group.qss │ │ ├── setting_interface.qss │ │ ├── singer_card_interface.qss │ │ ├── singer_group_box.qss │ │ ├── singer_interface.qss │ │ ├── smallest_play_interface.qss │ │ ├── song_group_box.qss │ │ ├── song_info_edit_dialog.qss │ │ ├── song_list_widget.qss │ │ ├── song_property_dialog.qss │ │ ├── state_tool_tip.qss │ │ ├── switch_button.qss │ │ ├── title_bar.qss │ │ ├── tool_tip.qss │ │ └── volume_widget.qss │ └── resource.qrc ├── docs ├── Makefile ├── README_zh.md ├── make.bat └── source │ ├── _static │ └── images │ │ ├── Groove音乐.jpg │ │ ├── logo.png │ │ ├── 专辑卡视图类图.png │ │ ├── 事件总线.jpg │ │ ├── 在线音乐.gif │ │ ├── 播放列表.gif │ │ ├── 播放和下载MV.jpg │ │ ├── 本地音乐.gif │ │ ├── 歌曲信息.gif │ │ ├── 界面结构.png │ │ ├── 选择模式栏类图.png │ │ ├── 选择模式界面.jpg │ │ └── 选择模式界面类图.png │ ├── conf.py │ ├── developer-guide │ ├── about.rst │ ├── architecture.md │ ├── database.md │ ├── development-experience.md │ ├── development-standard.md │ ├── quick-start.md │ └── signal-bus.md │ ├── index.rst │ └── user-guide │ ├── faq.md │ ├── hotkey.md │ ├── lyrics-format.md │ ├── playback-logic.md │ ├── quick-start.md │ └── supported-formats.md ├── requirements.txt └── tests ├── test_album_cover_reader.py ├── test_album_info_controller.py ├── test_album_info_service.py ├── test_crawler.py ├── test_library.py ├── test_lyric_parser.py ├── test_lyric_reader.py ├── test_meta_data_writer.py ├── test_music_interface.py ├── test_play_bar.py ├── test_playlist_service.py ├── test_recent_play_service.py ├── test_singer_info_service.py ├── test_song_card.py ├── test_song_info_controller.py ├── test_song_info_service.py └── test_song_list_widget.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/.gitignore -------------------------------------------------------------------------------- /Groove.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/Groove.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/README.md -------------------------------------------------------------------------------- /app/Groove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/Groove.py -------------------------------------------------------------------------------- /app/View/album_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/album_interface/__init__.py -------------------------------------------------------------------------------- /app/View/album_interface/album_info_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/album_interface/album_info_bar.py -------------------------------------------------------------------------------- /app/View/album_interface/album_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/album_interface/album_interface.py -------------------------------------------------------------------------------- /app/View/album_interface/song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/album_interface/song_list_widget.py -------------------------------------------------------------------------------- /app/View/desktop_lyric_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/desktop_lyric_interface/__init__.py -------------------------------------------------------------------------------- /app/View/desktop_lyric_interface/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/desktop_lyric_interface/buttons.py -------------------------------------------------------------------------------- /app/View/desktop_lyric_interface/desktop_lyric_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/desktop_lyric_interface/desktop_lyric_interface.py -------------------------------------------------------------------------------- /app/View/desktop_lyric_interface/lyric_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/desktop_lyric_interface/lyric_widget.py -------------------------------------------------------------------------------- /app/View/main_window/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/main_window/__init__.py -------------------------------------------------------------------------------- /app/View/main_window/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/main_window/main_window.py -------------------------------------------------------------------------------- /app/View/more_search_result_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/more_search_result_interface/__init__.py -------------------------------------------------------------------------------- /app/View/more_search_result_interface/album_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/more_search_result_interface/album_interface.py -------------------------------------------------------------------------------- /app/View/more_search_result_interface/more_search_result_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/more_search_result_interface/more_search_result_interface.py -------------------------------------------------------------------------------- /app/View/more_search_result_interface/playlist_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/more_search_result_interface/playlist_interface.py -------------------------------------------------------------------------------- /app/View/more_search_result_interface/singer_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/more_search_result_interface/singer_interface.py -------------------------------------------------------------------------------- /app/View/more_search_result_interface/song_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/more_search_result_interface/song_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/__init__.py -------------------------------------------------------------------------------- /app/View/my_music_interface/album_tab_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/album_tab_interface/__init__.py -------------------------------------------------------------------------------- /app/View/my_music_interface/album_tab_interface/album_card_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/album_tab_interface/album_card_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/album_tab_interface/album_tab_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/album_tab_interface/album_tab_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/my_music_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/my_music_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/singer_tab_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/singer_tab_interface/__init__.py -------------------------------------------------------------------------------- /app/View/my_music_interface/singer_tab_interface/singer_card_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/singer_tab_interface/singer_card_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/singer_tab_interface/singer_tab_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/singer_tab_interface/singer_tab_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/song_tab_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/song_tab_interface/__init__.py -------------------------------------------------------------------------------- /app/View/my_music_interface/song_tab_interface/song_tab_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/song_tab_interface/song_tab_interface.py -------------------------------------------------------------------------------- /app/View/my_music_interface/tool_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/my_music_interface/tool_bar.py -------------------------------------------------------------------------------- /app/View/navigation_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/__init__.py -------------------------------------------------------------------------------- /app/View/navigation_interface/navigation_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/navigation_bar.py -------------------------------------------------------------------------------- /app/View/navigation_interface/navigation_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/navigation_button.py -------------------------------------------------------------------------------- /app/View/navigation_interface/navigation_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/navigation_interface.py -------------------------------------------------------------------------------- /app/View/navigation_interface/navigation_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/navigation_menu.py -------------------------------------------------------------------------------- /app/View/navigation_interface/navigation_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/navigation_widget.py -------------------------------------------------------------------------------- /app/View/navigation_interface/navigation_widget_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/navigation_widget_base.py -------------------------------------------------------------------------------- /app/View/navigation_interface/search_line_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/navigation_interface/search_line_edit.py -------------------------------------------------------------------------------- /app/View/play_bar/__init__.py: -------------------------------------------------------------------------------- 1 | from .play_bar import PlayBar -------------------------------------------------------------------------------- /app/View/play_bar/play_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/play_bar/play_bar.py -------------------------------------------------------------------------------- /app/View/play_bar/play_bar_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/play_bar/play_bar_buttons.py -------------------------------------------------------------------------------- /app/View/play_bar/song_info_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/play_bar/song_info_card.py -------------------------------------------------------------------------------- /app/View/playing_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/__init__.py -------------------------------------------------------------------------------- /app/View/playing_interface/play_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/play_bar.py -------------------------------------------------------------------------------- /app/View/playing_interface/playing_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/playing_interface.py -------------------------------------------------------------------------------- /app/View/playing_interface/song_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/song_card.py -------------------------------------------------------------------------------- /app/View/playing_interface/song_info_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/song_info_card.py -------------------------------------------------------------------------------- /app/View/playing_interface/song_info_card_chute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/song_info_card_chute.py -------------------------------------------------------------------------------- /app/View/playing_interface/song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playing_interface/song_list_widget.py -------------------------------------------------------------------------------- /app/View/playlist_card_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playlist_card_interface/__init__.py -------------------------------------------------------------------------------- /app/View/playlist_card_interface/playlist_card_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playlist_card_interface/playlist_card_interface.py -------------------------------------------------------------------------------- /app/View/playlist_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playlist_interface/__init__.py -------------------------------------------------------------------------------- /app/View/playlist_interface/playlist_info_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playlist_interface/playlist_info_bar.py -------------------------------------------------------------------------------- /app/View/playlist_interface/playlist_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playlist_interface/playlist_interface.py -------------------------------------------------------------------------------- /app/View/playlist_interface/song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/playlist_interface/song_list_widget.py -------------------------------------------------------------------------------- /app/View/recent_play_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/recent_play_interface/__init__.py -------------------------------------------------------------------------------- /app/View/recent_play_interface/recent_play_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/recent_play_interface/recent_play_interface.py -------------------------------------------------------------------------------- /app/View/recent_play_interface/song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/recent_play_interface/song_list_widget.py -------------------------------------------------------------------------------- /app/View/search_result_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/__init__.py -------------------------------------------------------------------------------- /app/View/search_result_interface/album_group_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/album_group_box.py -------------------------------------------------------------------------------- /app/View/search_result_interface/group_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/group_box.py -------------------------------------------------------------------------------- /app/View/search_result_interface/playlist_group_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/playlist_group_box.py -------------------------------------------------------------------------------- /app/View/search_result_interface/search_result_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/search_result_interface.py -------------------------------------------------------------------------------- /app/View/search_result_interface/singer_group_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/singer_group_box.py -------------------------------------------------------------------------------- /app/View/search_result_interface/song_group_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/search_result_interface/song_group_box.py -------------------------------------------------------------------------------- /app/View/setting_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/setting_interface/__init__.py -------------------------------------------------------------------------------- /app/View/setting_interface/setting_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/setting_interface/setting_interface.py -------------------------------------------------------------------------------- /app/View/singer_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/singer_interface/__init__.py -------------------------------------------------------------------------------- /app/View/singer_interface/singer_info_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/singer_interface/singer_info_bar.py -------------------------------------------------------------------------------- /app/View/singer_interface/singer_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/singer_interface/singer_interface.py -------------------------------------------------------------------------------- /app/View/smallest_play_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/smallest_play_interface/__init__.py -------------------------------------------------------------------------------- /app/View/smallest_play_interface/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/smallest_play_interface/buttons.py -------------------------------------------------------------------------------- /app/View/smallest_play_interface/smallest_play_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/smallest_play_interface/smallest_play_interface.py -------------------------------------------------------------------------------- /app/View/smallest_play_interface/title_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/smallest_play_interface/title_bar.py -------------------------------------------------------------------------------- /app/View/video_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/video_interface/__init__.py -------------------------------------------------------------------------------- /app/View/video_interface/play_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/video_interface/play_bar.py -------------------------------------------------------------------------------- /app/View/video_interface/video_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/View/video_interface/video_interface.py -------------------------------------------------------------------------------- /app/common/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/application.py -------------------------------------------------------------------------------- /app/common/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/audio_utils.py -------------------------------------------------------------------------------- /app/common/auto_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/auto_wrap.py -------------------------------------------------------------------------------- /app/common/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/cache.py -------------------------------------------------------------------------------- /app/common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/config.py -------------------------------------------------------------------------------- /app/common/crawler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/__init__.py -------------------------------------------------------------------------------- /app/common/crawler/crawler_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/crawler_base.py -------------------------------------------------------------------------------- /app/common/crawler/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/exception_handler.py -------------------------------------------------------------------------------- /app/common/crawler/kugou_music_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/kugou_music_crawler.py -------------------------------------------------------------------------------- /app/common/crawler/kuwo_music_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/kuwo_music_crawler.py -------------------------------------------------------------------------------- /app/common/crawler/qq_music_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/qq_music_crawler.py -------------------------------------------------------------------------------- /app/common/crawler/wanyi_music_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/crawler/wanyi_music_crawler.py -------------------------------------------------------------------------------- /app/common/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/__init__.py -------------------------------------------------------------------------------- /app/common/database/controller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/__init__.py -------------------------------------------------------------------------------- /app/common/database/controller/album_cover_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/album_cover_controller.py -------------------------------------------------------------------------------- /app/common/database/controller/album_info_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/album_info_controller.py -------------------------------------------------------------------------------- /app/common/database/controller/playlist_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/playlist_controller.py -------------------------------------------------------------------------------- /app/common/database/controller/recent_play_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/recent_play_controller.py -------------------------------------------------------------------------------- /app/common/database/controller/singer_info_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/singer_info_controller.py -------------------------------------------------------------------------------- /app/common/database/controller/song_info_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/controller/song_info_controller.py -------------------------------------------------------------------------------- /app/common/database/dao/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/__init__.py -------------------------------------------------------------------------------- /app/common/database/dao/album_info_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/album_info_dao.py -------------------------------------------------------------------------------- /app/common/database/dao/dao_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/dao_base.py -------------------------------------------------------------------------------- /app/common/database/dao/playlist_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/playlist_dao.py -------------------------------------------------------------------------------- /app/common/database/dao/recent_play_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/recent_play_dao.py -------------------------------------------------------------------------------- /app/common/database/dao/singer_info_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/singer_info_dao.py -------------------------------------------------------------------------------- /app/common/database/dao/song_info_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/song_info_dao.py -------------------------------------------------------------------------------- /app/common/database/dao/sql_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/dao/sql_query.py -------------------------------------------------------------------------------- /app/common/database/db_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/db_initializer.py -------------------------------------------------------------------------------- /app/common/database/entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/__init__.py -------------------------------------------------------------------------------- /app/common/database/entity/album_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/album_info.py -------------------------------------------------------------------------------- /app/common/database/entity/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/entity.py -------------------------------------------------------------------------------- /app/common/database/entity/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/playlist.py -------------------------------------------------------------------------------- /app/common/database/entity/recent_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/recent_play.py -------------------------------------------------------------------------------- /app/common/database/entity/singer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/singer_info.py -------------------------------------------------------------------------------- /app/common/database/entity/song_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/entity/song_info.py -------------------------------------------------------------------------------- /app/common/database/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/__init__.py -------------------------------------------------------------------------------- /app/common/database/service/album_info_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/album_info_service.py -------------------------------------------------------------------------------- /app/common/database/service/playlist_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/playlist_service.py -------------------------------------------------------------------------------- /app/common/database/service/recent_play_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/recent_play_service.py -------------------------------------------------------------------------------- /app/common/database/service/service_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/service_base.py -------------------------------------------------------------------------------- /app/common/database/service/singer_info_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/singer_info_service.py -------------------------------------------------------------------------------- /app/common/database/service/song_info_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/service/song_info_service.py -------------------------------------------------------------------------------- /app/common/database/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .uuid_utils import UUIDUtils -------------------------------------------------------------------------------- /app/common/database/utils/uuid_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/database/utils/uuid_utils.py -------------------------------------------------------------------------------- /app/common/dpi_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/dpi_manager.py -------------------------------------------------------------------------------- /app/common/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/exception_handler.py -------------------------------------------------------------------------------- /app/common/get_pressed_pos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/get_pressed_pos.py -------------------------------------------------------------------------------- /app/common/hotkey_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/hotkey_manager.py -------------------------------------------------------------------------------- /app/common/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/icon.py -------------------------------------------------------------------------------- /app/common/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/image_utils.py -------------------------------------------------------------------------------- /app/common/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/library/__init__.py -------------------------------------------------------------------------------- /app/common/library/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/library/directory.py -------------------------------------------------------------------------------- /app/common/library/file_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/library/file_system.py -------------------------------------------------------------------------------- /app/common/library/file_system_watcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/library/file_system_watcher.py -------------------------------------------------------------------------------- /app/common/library/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/library/library.py -------------------------------------------------------------------------------- /app/common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/logger.py -------------------------------------------------------------------------------- /app/common/lyric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/lyric/__init__.py -------------------------------------------------------------------------------- /app/common/lyric/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/lyric/parser.py -------------------------------------------------------------------------------- /app/common/meta_data/frame_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/meta_data/frame_map.py -------------------------------------------------------------------------------- /app/common/meta_data/reader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/meta_data/reader/__init__.py -------------------------------------------------------------------------------- /app/common/meta_data/reader/album_cover_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/meta_data/reader/album_cover_reader.py -------------------------------------------------------------------------------- /app/common/meta_data/reader/lyric_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/meta_data/reader/lyric_reader.py -------------------------------------------------------------------------------- /app/common/meta_data/reader/song_info_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/meta_data/reader/song_info_reader.py -------------------------------------------------------------------------------- /app/common/meta_data/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/meta_data/writer.py -------------------------------------------------------------------------------- /app/common/os_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/os_utils.py -------------------------------------------------------------------------------- /app/common/picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/picture.py -------------------------------------------------------------------------------- /app/common/quality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/quality.py -------------------------------------------------------------------------------- /app/common/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/resource.py -------------------------------------------------------------------------------- /app/common/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/setting.py -------------------------------------------------------------------------------- /app/common/signal_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/signal_bus.py -------------------------------------------------------------------------------- /app/common/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/singleton.py -------------------------------------------------------------------------------- /app/common/smooth_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/smooth_scroll.py -------------------------------------------------------------------------------- /app/common/style_sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/style_sheet.py -------------------------------------------------------------------------------- /app/common/thread/blur_cover_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/blur_cover_thread.py -------------------------------------------------------------------------------- /app/common/thread/crawl_meta_data_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/crawl_meta_data_thread.py -------------------------------------------------------------------------------- /app/common/thread/download_mv_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/download_mv_thread.py -------------------------------------------------------------------------------- /app/common/thread/download_song_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/download_song_thread.py -------------------------------------------------------------------------------- /app/common/thread/get_lyric_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/get_lyric_thread.py -------------------------------------------------------------------------------- /app/common/thread/get_mv_url_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/get_mv_url_thread.py -------------------------------------------------------------------------------- /app/common/thread/get_online_song_url_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/get_online_song_url_thread.py -------------------------------------------------------------------------------- /app/common/thread/get_singer_avatar_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/get_singer_avatar_thread.py -------------------------------------------------------------------------------- /app/common/thread/library_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/library_thread.py -------------------------------------------------------------------------------- /app/common/thread/save_album_info_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/save_album_info_thread.py -------------------------------------------------------------------------------- /app/common/thread/search_online_songs_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/search_online_songs_thread.py -------------------------------------------------------------------------------- /app/common/thread/singer_avatar_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/singer_avatar_downloader.py -------------------------------------------------------------------------------- /app/common/thread/view_online_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/thread/view_online_thread.py -------------------------------------------------------------------------------- /app/common/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/translator.py -------------------------------------------------------------------------------- /app/common/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/url.py -------------------------------------------------------------------------------- /app/common/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/utils/__init__.py -------------------------------------------------------------------------------- /app/common/utils/linux_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/utils/linux_utils.py -------------------------------------------------------------------------------- /app/common/utils/mac_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/utils/mac_utils.py -------------------------------------------------------------------------------- /app/common/utils/win_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/utils/win_utils.py -------------------------------------------------------------------------------- /app/common/version_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/version_manager.py -------------------------------------------------------------------------------- /app/common/window_effect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/window_effect/__init__.py -------------------------------------------------------------------------------- /app/common/window_effect/c_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/window_effect/c_structures.py -------------------------------------------------------------------------------- /app/common/window_effect/window_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/common/window_effect/window_effect.py -------------------------------------------------------------------------------- /app/components/album_card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/album_card/__init__.py -------------------------------------------------------------------------------- /app/components/album_card/album_blur_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/album_card/album_blur_background.py -------------------------------------------------------------------------------- /app/components/album_card/album_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/album_card/album_card.py -------------------------------------------------------------------------------- /app/components/album_card/album_card_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/album_card/album_card_base.py -------------------------------------------------------------------------------- /app/components/album_card/album_card_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/album_card/album_card_view.py -------------------------------------------------------------------------------- /app/components/app_bar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/app_bar/__init__.py -------------------------------------------------------------------------------- /app/components/app_bar/app_bar_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/app_bar/app_bar_button.py -------------------------------------------------------------------------------- /app/components/app_bar/collapsing_app_bar_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/app_bar/collapsing_app_bar_base.py -------------------------------------------------------------------------------- /app/components/buttons/blur_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/blur_button.py -------------------------------------------------------------------------------- /app/components/buttons/circle_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/circle_button.py -------------------------------------------------------------------------------- /app/components/buttons/perspective_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/perspective_button.py -------------------------------------------------------------------------------- /app/components/buttons/play_bar_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/play_bar_buttons.py -------------------------------------------------------------------------------- /app/components/buttons/switch_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/switch_button.py -------------------------------------------------------------------------------- /app/components/buttons/three_state_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/three_state_button.py -------------------------------------------------------------------------------- /app/components/buttons/tool_tip_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/buttons/tool_tip_button.py -------------------------------------------------------------------------------- /app/components/dialog_box/album_info_edit_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/album_info_edit_dialog.py -------------------------------------------------------------------------------- /app/components/dialog_box/color_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/color_dialog.py -------------------------------------------------------------------------------- /app/components/dialog_box/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/dialog.py -------------------------------------------------------------------------------- /app/components/dialog_box/mask_dialog_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/mask_dialog_base.py -------------------------------------------------------------------------------- /app/components/dialog_box/message_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/message_dialog.py -------------------------------------------------------------------------------- /app/components/dialog_box/playlist_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/playlist_dialog.py -------------------------------------------------------------------------------- /app/components/dialog_box/song_info_edit_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/song_info_edit_dialog.py -------------------------------------------------------------------------------- /app/components/dialog_box/song_property_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/dialog_box/song_property_dialog.py -------------------------------------------------------------------------------- /app/components/frameless_window/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/frameless_window/__init__.py -------------------------------------------------------------------------------- /app/components/frameless_window/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/frameless_window/linux.py -------------------------------------------------------------------------------- /app/components/frameless_window/mac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/frameless_window/mac.py -------------------------------------------------------------------------------- /app/components/frameless_window/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/frameless_window/win32.py -------------------------------------------------------------------------------- /app/components/label_navigation_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/label_navigation_interface.py -------------------------------------------------------------------------------- /app/components/layout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/layout/__init__.py -------------------------------------------------------------------------------- /app/components/layout/expand_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/layout/expand_layout.py -------------------------------------------------------------------------------- /app/components/layout/flow_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/layout/flow_layout.py -------------------------------------------------------------------------------- /app/components/layout/h_box_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/layout/h_box_layout.py -------------------------------------------------------------------------------- /app/components/layout/v_box_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/layout/v_box_layout.py -------------------------------------------------------------------------------- /app/components/media_player/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/media_player/__init__.py -------------------------------------------------------------------------------- /app/components/media_player/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/media_player/media_player.py -------------------------------------------------------------------------------- /app/components/media_player/media_playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/media_player/media_playlist.py -------------------------------------------------------------------------------- /app/components/playlist_card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/playlist_card/__init__.py -------------------------------------------------------------------------------- /app/components/playlist_card/blur_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/playlist_card/blur_background.py -------------------------------------------------------------------------------- /app/components/playlist_card/playlist_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/playlist_card/playlist_card.py -------------------------------------------------------------------------------- /app/components/playlist_card/playlist_card_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/playlist_card/playlist_card_base.py -------------------------------------------------------------------------------- /app/components/playlist_card/playlist_card_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/playlist_card/playlist_card_view.py -------------------------------------------------------------------------------- /app/components/selection_mode_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/selection_mode_interface/__init__.py -------------------------------------------------------------------------------- /app/components/selection_mode_interface/bar/__init__.py: -------------------------------------------------------------------------------- 1 | from .selection_mode_bar import * -------------------------------------------------------------------------------- /app/components/selection_mode_interface/bar/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/selection_mode_interface/bar/button.py -------------------------------------------------------------------------------- /app/components/selection_mode_interface/bar/selection_mode_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/selection_mode_interface/bar/selection_mode_bar.py -------------------------------------------------------------------------------- /app/components/selection_mode_interface/selection_mode_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/selection_mode_interface/selection_mode_interface.py -------------------------------------------------------------------------------- /app/components/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/settings/__init__.py -------------------------------------------------------------------------------- /app/components/settings/expand_setting_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/settings/expand_setting_card.py -------------------------------------------------------------------------------- /app/components/settings/folder_list_setting_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/settings/folder_list_setting_card.py -------------------------------------------------------------------------------- /app/components/settings/options_setting_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/settings/options_setting_card.py -------------------------------------------------------------------------------- /app/components/settings/setting_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/settings/setting_card.py -------------------------------------------------------------------------------- /app/components/settings/setting_card_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/settings/setting_card_group.py -------------------------------------------------------------------------------- /app/components/singer_card/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/singer_card/__init__.py -------------------------------------------------------------------------------- /app/components/singer_card/singer_blur_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/singer_card/singer_blur_background.py -------------------------------------------------------------------------------- /app/components/singer_card/singer_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/singer_card/singer_card.py -------------------------------------------------------------------------------- /app/components/singer_card/singer_card_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/singer_card/singer_card_base.py -------------------------------------------------------------------------------- /app/components/singer_card/singer_card_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/singer_card/singer_card_view.py -------------------------------------------------------------------------------- /app/components/song_list_widget/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/__init__.py -------------------------------------------------------------------------------- /app/components/song_list_widget/basic_song_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/basic_song_card.py -------------------------------------------------------------------------------- /app/components/song_list_widget/basic_song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/basic_song_list_widget.py -------------------------------------------------------------------------------- /app/components/song_list_widget/no_scroll_song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/no_scroll_song_list_widget.py -------------------------------------------------------------------------------- /app/components/song_list_widget/song_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/song_card.py -------------------------------------------------------------------------------- /app/components/song_list_widget/song_card_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/song_card_type.py -------------------------------------------------------------------------------- /app/components/song_list_widget/song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/song_list_widget.py -------------------------------------------------------------------------------- /app/components/song_list_widget/song_name_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/song_list_widget/song_name_card.py -------------------------------------------------------------------------------- /app/components/system_tray_icon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/system_tray_icon/__init__.py -------------------------------------------------------------------------------- /app/components/system_tray_icon/system_tray_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/system_tray_icon/system_tray_icon.py -------------------------------------------------------------------------------- /app/components/thumbnail_tool_bar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/thumbnail_tool_bar/__init__.py -------------------------------------------------------------------------------- /app/components/thumbnail_tool_bar/thumbnail_tool_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/thumbnail_tool_bar/thumbnail_tool_bar.py -------------------------------------------------------------------------------- /app/components/title_bar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/title_bar/__init__.py -------------------------------------------------------------------------------- /app/components/title_bar/title_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/title_bar/title_bar.py -------------------------------------------------------------------------------- /app/components/title_bar/title_bar_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/title_bar/title_bar_buttons.py -------------------------------------------------------------------------------- /app/components/widgets/check_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/check_box.py -------------------------------------------------------------------------------- /app/components/widgets/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/label.py -------------------------------------------------------------------------------- /app/components/widgets/line_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/line_edit.py -------------------------------------------------------------------------------- /app/components/widgets/list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/list_widget.py -------------------------------------------------------------------------------- /app/components/widgets/lyric_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/lyric_widget.py -------------------------------------------------------------------------------- /app/components/widgets/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/menu.py -------------------------------------------------------------------------------- /app/components/widgets/perspective_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/perspective_widget.py -------------------------------------------------------------------------------- /app/components/widgets/scroll_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/scroll_area.py -------------------------------------------------------------------------------- /app/components/widgets/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/slider.py -------------------------------------------------------------------------------- /app/components/widgets/stacked_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/stacked_widget.py -------------------------------------------------------------------------------- /app/components/widgets/tool_tip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/tool_tip.py -------------------------------------------------------------------------------- /app/components/widgets/volume_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/components/widgets/volume_widget.py -------------------------------------------------------------------------------- /app/resource/i18n/Groove_hk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/i18n/Groove_hk.qm -------------------------------------------------------------------------------- /app/resource/i18n/Groove_hk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/i18n/Groove_hk.ts -------------------------------------------------------------------------------- /app/resource/i18n/Groove_zh.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/i18n/Groove_zh.qm -------------------------------------------------------------------------------- /app/resource/i18n/Groove_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/i18n/Groove_zh.ts -------------------------------------------------------------------------------- /app/resource/images/acrylic/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/acrylic/noise.png -------------------------------------------------------------------------------- /app/resource/images/album_tab_interface/CheckMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/album_tab_interface/CheckMark.png -------------------------------------------------------------------------------- /app/resource/images/app_bar/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Add.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/AddFavorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/AddFavorite.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/Contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Contact.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Delete.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/Edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Edit.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/More.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/More.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/Online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Online.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/Pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Pin.svg -------------------------------------------------------------------------------- /app/resource/images/app_bar/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/app_bar/Play.svg -------------------------------------------------------------------------------- /app/resource/images/blur_button/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/blur_button/Add.svg -------------------------------------------------------------------------------- /app/resource/images/blur_button/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/blur_button/Play.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/BackToWindow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/BackToWindow.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/ChevronUp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/ChevronUp.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/DesktopLyric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/DesktopLyric.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Download.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/FullScreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/FullScreen.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/More.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/More.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Next.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Pause.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Play.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Playlist.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Previous.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/RepeatAll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/RepeatAll.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/RepeatOne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/RepeatOne.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Shuffle.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/SkipBack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/SkipBack.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/SkipForward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/SkipForward.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/SmallestPlayMode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/SmallestPlayMode.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume0_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume0_black.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume0_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume0_white.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume1_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume1_black.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume1_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume1_white.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume2_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume2_black.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume2_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume2_white.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume3_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume3_black.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volume3_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volume3_white.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volumex_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volumex_black.svg -------------------------------------------------------------------------------- /app/resource/images/circle_button/Volumex_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/circle_button/Volumex_white.svg -------------------------------------------------------------------------------- /app/resource/images/color_picker/Clear_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/color_picker/Clear_black.svg -------------------------------------------------------------------------------- /app/resource/images/color_picker/Clear_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/color_picker/Clear_white.svg -------------------------------------------------------------------------------- /app/resource/images/color_picker/HuePanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/color_picker/HuePanel.png -------------------------------------------------------------------------------- /app/resource/images/default_covers/album_113_113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/default_covers/album_113_113.png -------------------------------------------------------------------------------- /app/resource/images/default_covers/album_200_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/default_covers/album_200_200.png -------------------------------------------------------------------------------- /app/resource/images/default_covers/playlist_135_135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/default_covers/playlist_135_135.png -------------------------------------------------------------------------------- /app/resource/images/default_covers/playlist_275_275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/default_covers/playlist_275_275.png -------------------------------------------------------------------------------- /app/resource/images/default_covers/singer_200_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/default_covers/singer_200_200.png -------------------------------------------------------------------------------- /app/resource/images/default_covers/singer_295_295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/default_covers/singer_295_295.png -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Close.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/FontDecrease.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/FontDecrease.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/FontIncrease.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/FontIncrease.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Lock.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Next.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Pause.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Play.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Previous.svg -------------------------------------------------------------------------------- /app/resource/images/desktop_lyric_interface/Setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/desktop_lyric_interface/Setting.svg -------------------------------------------------------------------------------- /app/resource/images/line_edit/Close_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/line_edit/Close_black.svg -------------------------------------------------------------------------------- /app/resource/images/line_edit/Close_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/line_edit/Close_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/line_edit/Close_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/line_edit/Close_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/line_edit/Close_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/line_edit/Close_white.svg -------------------------------------------------------------------------------- /app/resource/images/logo/FileExtension.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/FileExtension.ico -------------------------------------------------------------------------------- /app/resource/images/logo/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/logo.icns -------------------------------------------------------------------------------- /app/resource/images/logo/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/logo.ico -------------------------------------------------------------------------------- /app/resource/images/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/logo.png -------------------------------------------------------------------------------- /app/resource/images/logo/logo_30_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/logo_30_30.png -------------------------------------------------------------------------------- /app/resource/images/logo/logo_splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/logo_splash_screen.png -------------------------------------------------------------------------------- /app/resource/images/logo/logo_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/logo/logo_tray.png -------------------------------------------------------------------------------- /app/resource/images/menu/Add_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Add_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Add_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Add_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Album_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Album_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Album_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Album_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Cancel_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Cancel_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Cancel_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Cancel_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/ChevronRight_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/ChevronRight_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/ChevronRight_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/ChevronRight_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/ClearBold_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/ClearBold_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/ClearBold_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/ClearBold_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Clear_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Clear_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Clear_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Clear_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Close_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Close_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Close_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Close_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Copy_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Copy_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Copy_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Copy_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Cut_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Cut_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Cut_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Cut_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Embed_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Embed_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Embed_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Embed_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/FileLink_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/FileLink_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/FileLink_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/FileLink_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/FolderLink_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/FolderLink_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/FolderLink_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/FolderLink_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/FullScreen_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/FullScreen_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/FullScreen_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/FullScreen_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Locate_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Locate_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Locate_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Locate_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Lock_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Lock_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Lock_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Lock_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Lyric_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Lyric_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Lyric_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Lyric_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Movie_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Movie_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Movie_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Movie_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/MusicFolder_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/MusicFolder_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/MusicFolder_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/MusicFolder_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/MusicNote_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/MusicNote_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/MusicNote_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/MusicNote_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Next_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Next_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Next_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Next_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Paste_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Paste_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Paste_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Paste_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Pause_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Pause_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Pause_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Pause_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Play_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Play_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Play_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Play_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Playing_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Playing_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Playing_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Playing_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Playlist_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Playlist_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Playlist_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Playlist_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Previous_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Previous_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Previous_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Previous_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Reload_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Reload_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Reload_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Reload_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Settings_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Settings_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Settings_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Settings_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/SignOut_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/SignOut_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/SignOut_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/SignOut_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/SpeedDown_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/SpeedDown_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/SpeedDown_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/SpeedDown_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/SpeedUp_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/SpeedUp_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/SpeedUp_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/SpeedUp_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Speed_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Speed_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Speed_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Speed_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Unlock_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Unlock_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Unlock_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Unlock_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Unview_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Unview_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/Unview_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/Unview_white.svg -------------------------------------------------------------------------------- /app/resource/images/menu/View_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/View_black.svg -------------------------------------------------------------------------------- /app/resource/images/menu/View_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/menu/View_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Add_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Add_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Add_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Add_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Album_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Album_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Album_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Album_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Close_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Close_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Close_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Close_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Close_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Close_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Close_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Close_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/GlobalNavButton_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/GlobalNavButton_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/GlobalNavButton_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/GlobalNavButton_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/MusicInCollection_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/MusicInCollection_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/MusicInCollection_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/MusicInCollection_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Playing_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Playing_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Playing_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Playing_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Playlist_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Playlist_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Playlist_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Playlist_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Recent_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Recent_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Recent_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Recent_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/SearchFlipped_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/SearchFlipped_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/SearchFlipped_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/SearchFlipped_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/SearchFlipped_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/SearchFlipped_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/SearchFlipped_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/SearchFlipped_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Search_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Search_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Search_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Search_white.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Settings_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Settings_black.svg -------------------------------------------------------------------------------- /app/resource/images/navigation_interface/Settings_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/navigation_interface/Settings_white.svg -------------------------------------------------------------------------------- /app/resource/images/play_bar/More.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/More.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Next.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Pause.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Play.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Previous.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/RepeatAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/RepeatAll.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/RepeatOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/RepeatOne.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Shuffle.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/SmallestPlayMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/SmallestPlayMode.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Volume0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Volume0.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Volume1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Volume1.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Volume2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Volume2.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Volume3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Volume3.png -------------------------------------------------------------------------------- /app/resource/images/play_bar/Volumex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/play_bar/Volumex.png -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Add_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Add_green.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Add_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Add_white.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/CheckMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/CheckMark.png -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Play_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Play_green.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Play_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Play_white.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Playing_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Playing_green.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Playing_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Playing_white.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Shuffle_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Shuffle_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Shuffle_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Shuffle_normal.svg -------------------------------------------------------------------------------- /app/resource/images/playing_interface/Shuffle_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playing_interface/Shuffle_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_card_interface/Add_black_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_card_interface/Add_black_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_card_interface/Add_black_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_card_interface/Add_black_normal.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_card_interface/Add_black_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_card_interface/Add_black_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_card_interface/Add_white_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_card_interface/Add_white_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_card_interface/Add_white_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_card_interface/Add_white_normal.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_card_interface/Add_white_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_card_interface/Add_white_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Clear_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Clear_black.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Clear_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Clear_green.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Clear_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Clear_white.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Pen_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Pen_black.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Pen_black_noFocus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Pen_black_noFocus.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Pen_black_noFocus_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Pen_black_noFocus_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Pen_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Pen_white.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Pen_white_noFocus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Pen_white_noFocus.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Pen_white_noFocus_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Pen_white_noFocus_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_dialog/Playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_dialog/Playlist.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_interface/album_black_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_interface/album_black_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_interface/album_black_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_interface/album_black_normal.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_interface/album_black_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_interface/album_black_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_interface/album_white_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_interface/album_white_hover.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_interface/album_white_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_interface/album_white_normal.svg -------------------------------------------------------------------------------- /app/resource/images/playlist_interface/album_white_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/playlist_interface/album_white_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/random_play_all/Shuffle_black_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/random_play_all/Shuffle_black_hover.svg -------------------------------------------------------------------------------- /app/resource/images/random_play_all/Shuffle_black_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/random_play_all/Shuffle_black_normal.svg -------------------------------------------------------------------------------- /app/resource/images/random_play_all/Shuffle_black_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/random_play_all/Shuffle_black_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/random_play_all/Shuffle_white_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/random_play_all/Shuffle_white_hover.svg -------------------------------------------------------------------------------- /app/resource/images/random_play_all/Shuffle_white_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/random_play_all/Shuffle_white_normal.svg -------------------------------------------------------------------------------- /app/resource/images/random_play_all/Shuffle_white_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/random_play_all/Shuffle_white_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ChevronLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ChevronLeft.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ChevronRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ChevronRight.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/Search_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/Search_black.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/Search_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/Search_white.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ShowAll_hover_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ShowAll_hover_black.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ShowAll_hover_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ShowAll_hover_white.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ShowAll_normal_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ShowAll_normal_black.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ShowAll_normal_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ShowAll_normal_white.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ShowAll_pressed_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ShowAll_pressed_black.svg -------------------------------------------------------------------------------- /app/resource/images/search_result_interface/ShowAll_pressed_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/search_result_interface/ShowAll_pressed_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Add_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Add_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Add_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Add_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/CancelSelectAll_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/CancelSelectAll_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/CancelSelectAll_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/CancelSelectAll_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Cancel_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Cancel_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Cancel_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Cancel_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Contact_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Contact_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Contact_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Contact_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Delete_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Delete_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Delete_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Delete_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Down_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Down_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Down_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Down_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Download_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Download_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Download_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Download_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Edit_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Edit_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Edit_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Edit_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/NextToPlay_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/NextToPlay_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/NextToPlay_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/NextToPlay_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Pin_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Pin_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Pin_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Pin_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Play_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Play_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Play_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Play_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Property_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Property_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Property_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Property_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/SelectAll_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/SelectAll_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/SelectAll_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/SelectAll_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/ShowAlbum_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/ShowAlbum_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/ShowAlbum_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/ShowAlbum_white.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Up_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Up_black.svg -------------------------------------------------------------------------------- /app/resource/images/selection_mode_bar/Up_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/selection_mode_bar/Up_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Album_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Album_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Album_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Album_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Alignment_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Alignment_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Alignment_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Alignment_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Brush_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Brush_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Brush_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Brush_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Cache_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Cache_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Cache_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Cache_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/ChevronDown_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/ChevronDown_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/ChevronDown_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/ChevronDown_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Close_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Close_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Close_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Close_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Download_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Download_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Download_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Download_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Embed_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Embed_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Embed_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Embed_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Feedback_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Feedback_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Feedback_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Feedback_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/FileSearch_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/FileSearch_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/FileSearch_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/FileSearch_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/FluorescentPen_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/FluorescentPen_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/FluorescentPen_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/FluorescentPen_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/FolderAdd_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/FolderAdd_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/FolderAdd_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/FolderAdd_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Folder_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Folder_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Folder_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Folder_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Font_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Font_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Font_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Font_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Help_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Help_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Help_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Help_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Info_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Info_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Info_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Info_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Language_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Language_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Language_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Language_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Minimize_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Minimize_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Minimize_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Minimize_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/MusicFolder_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/MusicFolder_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/MusicFolder_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/MusicFolder_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Music_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Music_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Music_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Music_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/PaintBucket_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/PaintBucket_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/PaintBucket_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/PaintBucket_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Palette_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Palette_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Palette_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Palette_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/PencilInk_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/PencilInk_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/PencilInk_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/PencilInk_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Search_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Search_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Search_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Search_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Transparent_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Transparent_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Transparent_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Transparent_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Update_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Update_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Update_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Update_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Video_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Video_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Video_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Video_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Web_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Web_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Web_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Web_white.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Zoom_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Zoom_black.svg -------------------------------------------------------------------------------- /app/resource/images/setting_card/Zoom_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/setting_card/Zoom_white.svg -------------------------------------------------------------------------------- /app/resource/images/singer_interface/Play_black_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/singer_interface/Play_black_hover.svg -------------------------------------------------------------------------------- /app/resource/images/singer_interface/Play_black_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/singer_interface/Play_black_normal.svg -------------------------------------------------------------------------------- /app/resource/images/singer_interface/Play_black_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/singer_interface/Play_black_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/singer_interface/Play_white_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/singer_interface/Play_white_hover.svg -------------------------------------------------------------------------------- /app/resource/images/singer_interface/Play_white_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/singer_interface/Play_white_normal.svg -------------------------------------------------------------------------------- /app/resource/images/singer_interface/Play_white_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/singer_interface/Play_white_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/smallest_play_interface/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/smallest_play_interface/Pause.svg -------------------------------------------------------------------------------- /app/resource/images/smallest_play_interface/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/smallest_play_interface/Play.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Add_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Add_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Add_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Add_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Add_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Add_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Add_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Add_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/CheckMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/CheckMark.png -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/CheckMark_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/CheckMark_pressed.png -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Delete_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Delete_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Delete_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Delete_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Delete_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Delete_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Delete_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Delete_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Download_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Download_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Download_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Download_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Download_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Download_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Download_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Download_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Info_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Info_red.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Info_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Info_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Play_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Play_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Play_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Play_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Play_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Play_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Play_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Play_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Playing_green_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Playing_green_black.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Playing_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Playing_green_white.svg -------------------------------------------------------------------------------- /app/resource/images/song_list_widget/Playing_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/song_list_widget/Playing_white.svg -------------------------------------------------------------------------------- /app/resource/images/state_tool_tip/close_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/state_tool_tip/close_hover.svg -------------------------------------------------------------------------------- /app/resource/images/state_tool_tip/close_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/state_tool_tip/close_normal.svg -------------------------------------------------------------------------------- /app/resource/images/state_tool_tip/close_pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/state_tool_tip/close_pressed.svg -------------------------------------------------------------------------------- /app/resource/images/state_tool_tip/completed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/state_tool_tip/completed.svg -------------------------------------------------------------------------------- /app/resource/images/state_tool_tip/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/state_tool_tip/info.svg -------------------------------------------------------------------------------- /app/resource/images/state_tool_tip/running.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/state_tool_tip/running.svg -------------------------------------------------------------------------------- /app/resource/images/thumbnail_tool_bar/Next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/thumbnail_tool_bar/Next.svg -------------------------------------------------------------------------------- /app/resource/images/thumbnail_tool_bar/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/thumbnail_tool_bar/Pause.svg -------------------------------------------------------------------------------- /app/resource/images/thumbnail_tool_bar/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/thumbnail_tool_bar/Play.svg -------------------------------------------------------------------------------- /app/resource/images/thumbnail_tool_bar/Previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/thumbnail_tool_bar/Previous.svg -------------------------------------------------------------------------------- /app/resource/images/title_bar/关闭按钮_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/关闭按钮_hover_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/关闭按钮_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/关闭按钮_pressed_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/向下还原按钮_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/向下还原按钮_pressed_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色关闭按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色关闭按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色向下还原_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色向下还原_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色向下还原按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色向下还原按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色最大化按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色最大化按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色最小化按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色最小化按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色返回按钮_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色返回按钮_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色返回按钮_hover_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色返回按钮_hover_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/白色返回按钮_pressed_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/白色返回按钮_pressed_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/绿色向下还原按钮_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/绿色向下还原按钮_hover_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/绿色最大化按钮_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/绿色最大化按钮_hover_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/绿色最小化按钮_hover_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/绿色最小化按钮_hover_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明白色关闭按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明白色关闭按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明白色返回按钮_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明白色返回按钮_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明白色返回按钮_hover_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明白色返回按钮_hover_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明白色返回按钮_pressed_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明白色返回按钮_pressed_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明黑色关闭按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明黑色关闭按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明黑色最大化按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明黑色最大化按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/透明黑色最小化按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/透明黑色最小化按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色关闭按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色关闭按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色向下还原按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色向下还原按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色最大化按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色最大化按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色最大化按钮_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色最大化按钮_pressed_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色最小化按钮_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色最小化按钮_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色最小化按钮_pressed_57_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色最小化按钮_pressed_57_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色返回按钮_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色返回按钮_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色返回按钮_hover_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色返回按钮_hover_60_40.png -------------------------------------------------------------------------------- /app/resource/images/title_bar/黑色返回按钮_pressed_60_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/images/title_bar/黑色返回按钮_pressed_60_40.png -------------------------------------------------------------------------------- /app/resource/qss/dark/album_card_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/album_card_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/album_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/album_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/album_info_edit_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/album_info_edit_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/color_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/color_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/desktop_lyric_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/desktop_lyric_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/expand_setting_card.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/expand_setting_card.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/label_navigation_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/label_navigation_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/lyric_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/lyric_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/main_window.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/main_window.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/menu.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/menu.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/message_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/message_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/more_search_result_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/more_search_result_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/my_music_interface_toolBar.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/my_music_interface_toolBar.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/navigation.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/navigation.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playing_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playing_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playing_interface_song_info_card.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playing_interface_song_info_card.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playing_interface_song_list_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playing_interface_song_list_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playlist_card_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playlist_card_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playlist_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playlist_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playlist_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playlist_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/playlist_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/playlist_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/recent_play_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/recent_play_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/search_result_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/search_result_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/selection_mode_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/selection_mode_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/setting_card.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/setting_card.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/setting_group.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/setting_group.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/setting_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/setting_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/singer_card_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/singer_card_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/singer_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/singer_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/singer_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/singer_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/smallest_play_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/smallest_play_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/song_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/song_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/song_info_edit_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/song_info_edit_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/song_list_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/song_list_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/song_property_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/song_property_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/state_tool_tip.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/state_tool_tip.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/switch_button.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/switch_button.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/title_bar.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/title_bar.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/tool_tip.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/tool_tip.qss -------------------------------------------------------------------------------- /app/resource/qss/dark/volume_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/dark/volume_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/light/album_card_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/album_card_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/album_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/album_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/light/album_info_edit_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/album_info_edit_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/color_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/color_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/desktop_lyric_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/desktop_lyric_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/expand_setting_card.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/expand_setting_card.qss -------------------------------------------------------------------------------- /app/resource/qss/light/label_navigation_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/label_navigation_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/lyric_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/lyric_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/light/main_window.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/main_window.qss -------------------------------------------------------------------------------- /app/resource/qss/light/menu.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/menu.qss -------------------------------------------------------------------------------- /app/resource/qss/light/message_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/message_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/more_search_result_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/more_search_result_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/my_music_interface_toolBar.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/my_music_interface_toolBar.qss -------------------------------------------------------------------------------- /app/resource/qss/light/navigation.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/navigation.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playing_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playing_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playing_interface_song_info_card.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playing_interface_song_info_card.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playing_interface_song_list_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playing_interface_song_list_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playlist_card_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playlist_card_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playlist_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playlist_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playlist_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playlist_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/light/playlist_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/playlist_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/recent_play_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/recent_play_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/search_result_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/search_result_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/selection_mode_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/selection_mode_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/setting_card.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/setting_card.qss -------------------------------------------------------------------------------- /app/resource/qss/light/setting_group.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/setting_group.qss -------------------------------------------------------------------------------- /app/resource/qss/light/setting_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/setting_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/singer_card_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/singer_card_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/singer_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/singer_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/light/singer_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/singer_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/smallest_play_interface.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/smallest_play_interface.qss -------------------------------------------------------------------------------- /app/resource/qss/light/song_group_box.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/song_group_box.qss -------------------------------------------------------------------------------- /app/resource/qss/light/song_info_edit_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/song_info_edit_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/song_list_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/song_list_widget.qss -------------------------------------------------------------------------------- /app/resource/qss/light/song_property_dialog.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/song_property_dialog.qss -------------------------------------------------------------------------------- /app/resource/qss/light/state_tool_tip.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/state_tool_tip.qss -------------------------------------------------------------------------------- /app/resource/qss/light/switch_button.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/switch_button.qss -------------------------------------------------------------------------------- /app/resource/qss/light/title_bar.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/title_bar.qss -------------------------------------------------------------------------------- /app/resource/qss/light/tool_tip.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/tool_tip.qss -------------------------------------------------------------------------------- /app/resource/qss/light/volume_widget.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/qss/light/volume_widget.qss -------------------------------------------------------------------------------- /app/resource/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/app/resource/resource.qrc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/README_zh.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/images/Groove音乐.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/Groove音乐.jpg -------------------------------------------------------------------------------- /docs/source/_static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/logo.png -------------------------------------------------------------------------------- /docs/source/_static/images/专辑卡视图类图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/专辑卡视图类图.png -------------------------------------------------------------------------------- /docs/source/_static/images/事件总线.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/事件总线.jpg -------------------------------------------------------------------------------- /docs/source/_static/images/在线音乐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/在线音乐.gif -------------------------------------------------------------------------------- /docs/source/_static/images/播放列表.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/播放列表.gif -------------------------------------------------------------------------------- /docs/source/_static/images/播放和下载MV.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/播放和下载MV.jpg -------------------------------------------------------------------------------- /docs/source/_static/images/本地音乐.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/本地音乐.gif -------------------------------------------------------------------------------- /docs/source/_static/images/歌曲信息.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/歌曲信息.gif -------------------------------------------------------------------------------- /docs/source/_static/images/界面结构.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/界面结构.png -------------------------------------------------------------------------------- /docs/source/_static/images/选择模式栏类图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/选择模式栏类图.png -------------------------------------------------------------------------------- /docs/source/_static/images/选择模式界面.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/选择模式界面.jpg -------------------------------------------------------------------------------- /docs/source/_static/images/选择模式界面类图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/_static/images/选择模式界面类图.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/developer-guide/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/about.rst -------------------------------------------------------------------------------- /docs/source/developer-guide/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/architecture.md -------------------------------------------------------------------------------- /docs/source/developer-guide/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/database.md -------------------------------------------------------------------------------- /docs/source/developer-guide/development-experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/development-experience.md -------------------------------------------------------------------------------- /docs/source/developer-guide/development-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/development-standard.md -------------------------------------------------------------------------------- /docs/source/developer-guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/quick-start.md -------------------------------------------------------------------------------- /docs/source/developer-guide/signal-bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/developer-guide/signal-bus.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/user-guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/user-guide/faq.md -------------------------------------------------------------------------------- /docs/source/user-guide/hotkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/user-guide/hotkey.md -------------------------------------------------------------------------------- /docs/source/user-guide/lyrics-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/user-guide/lyrics-format.md -------------------------------------------------------------------------------- /docs/source/user-guide/playback-logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/user-guide/playback-logic.md -------------------------------------------------------------------------------- /docs/source/user-guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/user-guide/quick-start.md -------------------------------------------------------------------------------- /docs/source/user-guide/supported-formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/docs/source/user-guide/supported-formats.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_album_cover_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_album_cover_reader.py -------------------------------------------------------------------------------- /tests/test_album_info_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_album_info_controller.py -------------------------------------------------------------------------------- /tests/test_album_info_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_album_info_service.py -------------------------------------------------------------------------------- /tests/test_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_crawler.py -------------------------------------------------------------------------------- /tests/test_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_library.py -------------------------------------------------------------------------------- /tests/test_lyric_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_lyric_parser.py -------------------------------------------------------------------------------- /tests/test_lyric_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_lyric_reader.py -------------------------------------------------------------------------------- /tests/test_meta_data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_meta_data_writer.py -------------------------------------------------------------------------------- /tests/test_music_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_music_interface.py -------------------------------------------------------------------------------- /tests/test_play_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_play_bar.py -------------------------------------------------------------------------------- /tests/test_playlist_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_playlist_service.py -------------------------------------------------------------------------------- /tests/test_recent_play_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_recent_play_service.py -------------------------------------------------------------------------------- /tests/test_singer_info_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_singer_info_service.py -------------------------------------------------------------------------------- /tests/test_song_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_song_card.py -------------------------------------------------------------------------------- /tests/test_song_info_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_song_info_controller.py -------------------------------------------------------------------------------- /tests/test_song_info_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_song_info_service.py -------------------------------------------------------------------------------- /tests/test_song_list_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhiyiYo/Groove/HEAD/tests/test_song_list_widget.py --------------------------------------------------------------------------------