├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ ├── appIcon.png │ └── appIcon_startwindow.png ├── LICENSE ├── README.md ├── code-linter.json5 ├── entry ├── .gitignore ├── build-profile.json5 ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package.json5 ├── patch.json └── src │ ├── main │ ├── ets │ │ ├── api │ │ │ ├── LyricApi.ets │ │ │ ├── albumApi.ets │ │ │ ├── artistApi.ets │ │ │ ├── chenlvinApi.ets │ │ │ ├── commentApi.ets │ │ │ ├── djApi.ets │ │ │ ├── getDownloadInfo.ets │ │ │ ├── loginApi.ets │ │ │ ├── playListApi.ets │ │ │ ├── qrCodeApi.ets │ │ │ ├── songApi.ets │ │ │ └── topListApi.ets │ │ ├── common │ │ │ ├── constants │ │ │ │ ├── AppConstants.ets │ │ │ │ ├── Constants.ets │ │ │ │ ├── EmitterConstants.ets │ │ │ │ ├── MsgConstants.ets │ │ │ │ ├── PlayConstants.ets │ │ │ │ └── StorageConstants.ets │ │ │ ├── entities │ │ │ │ ├── Album.ets │ │ │ │ ├── AppInfo.ets │ │ │ │ ├── Artists.ets │ │ │ │ ├── Comment.ets │ │ │ │ ├── DjRadio.ets │ │ │ │ ├── Lyric.ets │ │ │ │ ├── PlayList.ets │ │ │ │ ├── Recommend.ets │ │ │ │ ├── Song.ets │ │ │ │ └── User.ets │ │ │ ├── functions │ │ │ │ ├── app │ │ │ │ │ ├── appInit.ets │ │ │ │ │ └── settings.ets │ │ │ │ ├── common │ │ │ │ │ ├── convert.ets │ │ │ │ │ ├── get.ets │ │ │ │ │ └── open.ets │ │ │ │ └── play │ │ │ │ │ ├── djRadioOp.ets │ │ │ │ │ ├── playControl.ets │ │ │ │ │ ├── playListOp.ets │ │ │ │ │ └── songLike.ets │ │ │ ├── model │ │ │ │ ├── Api.ets │ │ │ │ ├── Breakpoint.ets │ │ │ │ ├── Download.ets │ │ │ │ ├── Enum.ets │ │ │ │ ├── PageMap.ets │ │ │ │ ├── PageParams.ets │ │ │ │ ├── PlayQueue.ets │ │ │ │ └── Settings.ets │ │ │ ├── utils │ │ │ │ ├── data │ │ │ │ │ ├── PreferencesUtils.ets │ │ │ │ │ └── RelationalStoreUtils.ets │ │ │ │ ├── file │ │ │ │ │ ├── DownloadUtils.ets │ │ │ │ │ ├── FileDownloadUtils.ets │ │ │ │ │ └── FileUtils.ets │ │ │ │ ├── play │ │ │ │ │ ├── AVPlayerUtils.ets │ │ │ │ │ ├── AVSessionUtils.ets │ │ │ │ │ ├── AudioCacheUtils.ets │ │ │ │ │ ├── BackgroundTaskUtils.ets │ │ │ │ │ ├── LyricUtils.ets │ │ │ │ │ └── PlayQueueUtils.ets │ │ │ │ ├── request │ │ │ │ │ └── RequestUtil.ets │ │ │ │ └── system │ │ │ │ │ ├── AppUtils.ets │ │ │ │ │ ├── BreakpointUtils.ets │ │ │ │ │ ├── NotificationUtils.ets │ │ │ │ │ ├── SystemAppUtils.ets │ │ │ │ │ ├── VibratorUtils.ets │ │ │ │ │ └── WindowUtils.ets │ │ │ └── view │ │ │ │ ├── Explore.ets │ │ │ │ ├── IndexRecommend.ets │ │ │ │ ├── Me.ets │ │ │ │ ├── Player.ets │ │ │ │ └── userLists │ │ │ │ ├── UserAlbumList.ets │ │ │ │ ├── UserDjRadioList.ets │ │ │ │ ├── UserLists.ets │ │ │ │ └── UserPlayLists.ets │ │ ├── components │ │ │ ├── buttons │ │ │ │ ├── AddToPlayListButton.ets │ │ │ │ ├── CircleButton.ets │ │ │ │ ├── ExplainButton.ets │ │ │ │ ├── LoadMoreButtons.ets │ │ │ │ ├── LoopModeButton.ets │ │ │ │ ├── PlayAllButton.ets │ │ │ │ ├── PlayQueueButton.ets │ │ │ │ └── TimerButton.ets │ │ │ ├── cards │ │ │ │ ├── AlbumCard.ets │ │ │ │ ├── ArtistCard.ets │ │ │ │ ├── CommentCard.ets │ │ │ │ ├── DjRadioCard.ets │ │ │ │ ├── FileCard.ets │ │ │ │ ├── IndexCard.ets │ │ │ │ ├── Loading.ets │ │ │ │ ├── PersonalizedCard.ets │ │ │ │ ├── PlayListCard.ets │ │ │ │ ├── SettingsCard.ets │ │ │ │ ├── SongCard.ets │ │ │ │ └── TopListItemCard.ets │ │ │ ├── dialog │ │ │ │ ├── AddPlayListDialog.ets │ │ │ │ ├── ConfirmDialog.ets │ │ │ │ ├── DownloadDialog.ets │ │ │ │ └── WarrantyDialog.ets │ │ │ ├── lists │ │ │ │ ├── SearchAlbumList.ets │ │ │ │ ├── SearchArtistsList.ets │ │ │ │ ├── SearchDjRadioList.ets │ │ │ │ ├── SearchHistoryComponent.ets │ │ │ │ ├── SearchPlayListsList.ets │ │ │ │ └── SearchSongsList.ets │ │ │ ├── menu │ │ │ │ ├── FileCardClickMenu.ets │ │ │ │ └── PersonalFmMenu.ets │ │ │ ├── play │ │ │ │ ├── BottomBarComponent.ets │ │ │ │ └── LyricComponent.ets │ │ │ ├── settings │ │ │ │ ├── LyricSettings.ets │ │ │ │ ├── SettingsItem.ets │ │ │ │ └── TextContent.ets │ │ │ ├── sheets │ │ │ │ ├── AlbumCommentSheet.ets │ │ │ │ ├── ArtistsSheet.ets │ │ │ │ ├── DownloadListSheet.ets │ │ │ │ ├── MatchSongSheet.ets │ │ │ │ ├── PlayListAddSheet.ets │ │ │ │ ├── PlayQueueSheet.ets │ │ │ │ ├── PlayerActionSheet.ets │ │ │ │ ├── SongInfoSheet.ets │ │ │ │ └── TimerSheet.ets │ │ │ └── skeleton │ │ │ │ └── Skeleton.ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ └── pages │ │ │ ├── Index.ets │ │ │ ├── art │ │ │ ├── AlbumPage.ets │ │ │ └── ArtistPage.ets │ │ │ ├── list │ │ │ ├── CommentPage.ets │ │ │ └── TopListPage.ets │ │ │ ├── local │ │ │ ├── DebugPage.ets │ │ │ └── LocalSongPage.ets │ │ │ ├── login │ │ │ ├── LoginPage.ets │ │ │ ├── QrCodeLogin.ets │ │ │ └── WebLogin.ets │ │ │ ├── lyrics │ │ │ ├── FloatingLyrics.ets │ │ │ └── PipLyrics.ets │ │ │ ├── playlist │ │ │ ├── CloudPage.ets │ │ │ ├── DailyListPage.ets │ │ │ ├── DjRadioPage.ets │ │ │ └── PlayListPage.ets │ │ │ ├── search │ │ │ └── SearchPage.ets │ │ │ ├── settings │ │ │ ├── AboutPage.ets │ │ │ ├── ApiSetPage.ets │ │ │ ├── CacheManagePage.ets │ │ │ ├── DonatePage.ets │ │ │ ├── FloatLyricPage.ets │ │ │ ├── PlaySettingsPage.ets │ │ │ ├── SettingsPage.ets │ │ │ └── UISettingsPage.ets │ │ │ └── web │ │ │ └── WebPage.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── appIcon.png │ │ │ ├── background.png │ │ │ ├── bg4.jpg │ │ │ ├── bg_default.png │ │ │ ├── foreground.png │ │ │ ├── ic_add_icon.svg │ │ │ ├── ic_arrow_circle_down_icon.svg │ │ │ ├── ic_arrow_down_o_icon.svg │ │ │ ├── ic_celiakeyboard_default.svg │ │ │ ├── ic_clock.svg │ │ │ ├── ic_files_audio.svg │ │ │ ├── ic_files_name_drive.svg │ │ │ ├── ic_files_new_folder.svg │ │ │ ├── ic_gallery_discover.svg │ │ │ ├── ic_gallery_discover_filled.svg │ │ │ ├── ic_gallery_material_select_checkbox.svg │ │ │ ├── ic_heart_filled.svg │ │ │ ├── ic_more_vertical_o_icon.svg │ │ │ ├── ic_music_fill.svg │ │ │ ├── ic_play_fill.svg │ │ │ ├── ic_playlist_add_icon.svg │ │ │ ├── ic_playqueue.svg │ │ │ ├── ic_position.svg │ │ │ ├── ic_public_add_filled.svg │ │ │ ├── ic_public_add_norm.svg │ │ │ ├── ic_public_add_norm_filled.svg │ │ │ ├── ic_public_albums_filled.svg │ │ │ ├── ic_public_app_filled.svg │ │ │ ├── ic_public_arrow_down_0.svg │ │ │ ├── ic_public_arrow_left_filled.svg │ │ │ ├── ic_public_arrow_right.svg │ │ │ ├── ic_public_back.svg │ │ │ ├── ic_public_cancel.svg │ │ │ ├── ic_public_cloud_download.svg │ │ │ ├── ic_public_contacts.svg │ │ │ ├── ic_public_contacts_filled.svg │ │ │ ├── ic_public_delete.svg │ │ │ ├── ic_public_delete_filled.svg │ │ │ ├── ic_public_devices_phone_filled.svg │ │ │ ├── ic_public_download_filled.svg │ │ │ ├── ic_public_drawer.svg │ │ │ ├── ic_public_drawer_filled.svg │ │ │ ├── ic_public_favor.svg │ │ │ ├── ic_public_favor_filled.svg │ │ │ ├── ic_public_folder.svg │ │ │ ├── ic_public_folder_filled.svg │ │ │ ├── ic_public_help.svg │ │ │ ├── ic_public_input_code.svg │ │ │ ├── ic_public_list_cycle.svg │ │ │ ├── ic_public_message.svg │ │ │ ├── ic_public_more_filled.svg │ │ │ ├── ic_public_more_list.svg │ │ │ ├── ic_public_music.svg │ │ │ ├── ic_public_ok_filled.svg │ │ │ ├── ic_public_order_play.svg │ │ │ ├── ic_public_pause.svg │ │ │ ├── ic_public_pause_norm.svg │ │ │ ├── ic_public_play_last.svg │ │ │ ├── ic_public_play_next.svg │ │ │ ├── ic_public_play_norm.svg │ │ │ ├── ic_public_random.svg │ │ │ ├── ic_public_refresh.svg │ │ │ ├── ic_public_rotate.svg │ │ │ ├── ic_public_search_filled.svg │ │ │ ├── ic_public_select_all.svg │ │ │ ├── ic_public_settings.svg │ │ │ ├── ic_public_settings_filled.svg │ │ │ ├── ic_public_share_filled.svg │ │ │ ├── ic_public_single_cycle.svg │ │ │ ├── ic_public_todo.svg │ │ │ ├── ic_public_upload_filled.svg │ │ │ ├── ic_public_view_list_filled.svg │ │ │ ├── ic_squares.svg │ │ │ ├── ic_timer_icon.svg │ │ │ ├── ic_user_portrait.svg │ │ │ ├── index_calendar.svg │ │ │ ├── index_cloud.svg │ │ │ ├── index_heart.svg │ │ │ ├── index_local.svg │ │ │ ├── index_radio.svg │ │ │ ├── layered_image.json │ │ │ └── startIcon.png │ │ └── profile │ │ │ ├── backup_config.json │ │ │ └── main_pages.json │ │ ├── dark │ │ └── element │ │ │ └── color.json │ │ ├── en_US │ │ └── element │ │ │ └── string.json │ │ └── zh_CN │ │ └── element │ │ └── string.json │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── images ├── 1-1.png ├── 1-10.png ├── 1-2.png ├── 1-3.png ├── 1-4.png ├── 1-5.png ├── 1-6.png ├── 1-7.png ├── 1-8.png ├── 1-9.png ├── 2-1.png ├── 2-2.png ├── 3-1.png ├── 3-2.png ├── 4-1.png ├── 4-2.png ├── 5-1.png └── 5-2.png ├── oh-package-lock.json5 └── oh-package.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/AppScope/resources/base/media/appIcon.png -------------------------------------------------------------------------------- /AppScope/resources/base/media/appIcon_startwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/AppScope/resources/base/media/appIcon_startwindow.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/README.md -------------------------------------------------------------------------------- /code-linter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/code-linter.json5 -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/patch.json -------------------------------------------------------------------------------- /entry/src/main/ets/api/LyricApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/LyricApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/albumApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/albumApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/artistApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/artistApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/chenlvinApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/chenlvinApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/commentApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/commentApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/djApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/djApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/getDownloadInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/getDownloadInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/loginApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/loginApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/playListApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/playListApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/qrCodeApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/qrCodeApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/songApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/songApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/topListApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/api/topListApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/constants/AppConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/constants/AppConstants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/constants/Constants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/constants/Constants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/constants/EmitterConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/constants/EmitterConstants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/constants/MsgConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/constants/MsgConstants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/constants/PlayConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/constants/PlayConstants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/constants/StorageConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/constants/StorageConstants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/Album.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/Album.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/AppInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/AppInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/Artists.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/Artists.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/Comment.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/Comment.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/DjRadio.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/DjRadio.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/Lyric.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/Lyric.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/PlayList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/PlayList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/Recommend.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/Recommend.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/Song.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/Song.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/entities/User.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/entities/User.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/app/appInit.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/app/appInit.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/app/settings.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/app/settings.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/common/convert.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/common/convert.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/common/get.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/common/get.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/common/open.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/common/open.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/play/djRadioOp.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/play/djRadioOp.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/play/playControl.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/play/playControl.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/play/playListOp.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/play/playListOp.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/functions/play/songLike.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/functions/play/songLike.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/Api.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/Api.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/Breakpoint.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/Breakpoint.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/Download.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/Download.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/Enum.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/Enum.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/PageMap.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/PageMap.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/PageParams.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/PageParams.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/PlayQueue.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/PlayQueue.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/model/Settings.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/model/Settings.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/data/PreferencesUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/data/PreferencesUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/data/RelationalStoreUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/data/RelationalStoreUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/file/DownloadUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/file/DownloadUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/file/FileDownloadUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/file/FileDownloadUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/file/FileUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/file/FileUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/play/AVPlayerUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/play/AVPlayerUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/play/AVSessionUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/play/AVSessionUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/play/AudioCacheUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/play/AudioCacheUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/play/BackgroundTaskUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/play/BackgroundTaskUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/play/LyricUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/play/LyricUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/play/PlayQueueUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/play/PlayQueueUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/request/RequestUtil.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/request/RequestUtil.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/system/AppUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/system/AppUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/system/BreakpointUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/system/BreakpointUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/system/NotificationUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/system/NotificationUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/system/SystemAppUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/system/SystemAppUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/system/VibratorUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/system/VibratorUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/utils/system/WindowUtils.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/utils/system/WindowUtils.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/Explore.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/Explore.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/IndexRecommend.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/IndexRecommend.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/Me.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/Me.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/Player.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/Player.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/userLists/UserAlbumList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/userLists/UserAlbumList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/userLists/UserDjRadioList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/userLists/UserDjRadioList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/userLists/UserLists.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/userLists/UserLists.ets -------------------------------------------------------------------------------- /entry/src/main/ets/common/view/userLists/UserPlayLists.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/common/view/userLists/UserPlayLists.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/AddToPlayListButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/AddToPlayListButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/CircleButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/CircleButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/ExplainButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/ExplainButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/LoadMoreButtons.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/LoadMoreButtons.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/LoopModeButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/LoopModeButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/PlayAllButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/PlayAllButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/PlayQueueButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/PlayQueueButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/buttons/TimerButton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/buttons/TimerButton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/AlbumCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/AlbumCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/ArtistCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/ArtistCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/CommentCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/CommentCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/DjRadioCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/DjRadioCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/FileCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/FileCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/IndexCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/IndexCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/Loading.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/Loading.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/PersonalizedCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/PersonalizedCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/PlayListCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/PlayListCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/SettingsCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/SettingsCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/SongCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/SongCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/cards/TopListItemCard.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/cards/TopListItemCard.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/dialog/AddPlayListDialog.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/dialog/AddPlayListDialog.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/dialog/ConfirmDialog.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/dialog/ConfirmDialog.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/dialog/DownloadDialog.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/dialog/DownloadDialog.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/dialog/WarrantyDialog.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/dialog/WarrantyDialog.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/lists/SearchAlbumList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/lists/SearchAlbumList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/lists/SearchArtistsList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/lists/SearchArtistsList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/lists/SearchDjRadioList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/lists/SearchDjRadioList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/lists/SearchHistoryComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/lists/SearchHistoryComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/lists/SearchPlayListsList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/lists/SearchPlayListsList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/lists/SearchSongsList.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/lists/SearchSongsList.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/menu/FileCardClickMenu.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/menu/FileCardClickMenu.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/menu/PersonalFmMenu.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/menu/PersonalFmMenu.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/play/BottomBarComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/play/BottomBarComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/play/LyricComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/play/LyricComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/settings/LyricSettings.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/settings/LyricSettings.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/settings/SettingsItem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/settings/SettingsItem.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/settings/TextContent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/settings/TextContent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/AlbumCommentSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/AlbumCommentSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/ArtistsSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/ArtistsSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/DownloadListSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/DownloadListSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/MatchSongSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/MatchSongSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/PlayListAddSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/PlayListAddSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/PlayQueueSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/PlayQueueSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/PlayerActionSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/PlayerActionSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/SongInfoSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/SongInfoSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/sheets/TimerSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/sheets/TimerSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/components/skeleton/Skeleton.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/components/skeleton/Skeleton.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/art/AlbumPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/art/AlbumPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/art/ArtistPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/art/ArtistPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/list/CommentPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/list/CommentPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/list/TopListPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/list/TopListPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/local/DebugPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/local/DebugPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/local/LocalSongPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/local/LocalSongPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/login/LoginPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/login/LoginPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/login/QrCodeLogin.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/login/QrCodeLogin.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/login/WebLogin.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/login/WebLogin.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/lyrics/FloatingLyrics.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/lyrics/FloatingLyrics.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/lyrics/PipLyrics.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/lyrics/PipLyrics.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/playlist/CloudPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/playlist/CloudPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/playlist/DailyListPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/playlist/DailyListPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/playlist/DjRadioPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/playlist/DjRadioPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/playlist/PlayListPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/playlist/PlayListPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/search/SearchPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/search/SearchPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/AboutPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/AboutPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/ApiSetPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/ApiSetPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/CacheManagePage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/CacheManagePage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/DonatePage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/DonatePage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/FloatLyricPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/FloatLyricPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/PlaySettingsPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/PlaySettingsPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/SettingsPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/SettingsPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/settings/UISettingsPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/settings/UISettingsPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/web/WebPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/ets/pages/web/WebPage.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/appIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/bg4.jpg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/bg_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/bg_default.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_add_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_add_icon.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_arrow_circle_down_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_arrow_circle_down_icon.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_arrow_down_o_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_arrow_down_o_icon.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_celiakeyboard_default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_celiakeyboard_default.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_clock.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_files_audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_files_audio.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_files_name_drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_files_name_drive.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_files_new_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_files_new_folder.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_gallery_discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_gallery_discover.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_gallery_discover_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_gallery_discover_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_gallery_material_select_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_gallery_material_select_checkbox.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_heart_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_heart_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_more_vertical_o_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_more_vertical_o_icon.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_music_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_music_fill.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_play_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_play_fill.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_playlist_add_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_playlist_add_icon.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_playqueue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_playqueue.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_position.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_add_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_add_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_add_norm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_add_norm.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_add_norm_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_add_norm_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_albums_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_albums_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_app_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_app_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_arrow_down_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_arrow_down_0.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_arrow_left_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_arrow_left_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_arrow_right.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_back.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_cancel.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_cloud_download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_cloud_download.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_contacts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_contacts.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_contacts_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_contacts_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_delete.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_delete_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_delete_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_devices_phone_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_devices_phone_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_download_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_download_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_drawer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_drawer.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_drawer_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_drawer_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_favor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_favor.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_favor_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_favor_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_folder.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_folder_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_folder_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_help.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_input_code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_input_code.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_list_cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_list_cycle.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_message.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_more_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_more_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_more_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_more_list.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_music.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_ok_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_ok_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_order_play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_order_play.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_pause.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_pause_norm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_pause_norm.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_play_last.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_play_last.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_play_next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_play_next.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_play_norm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_play_norm.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_random.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_refresh.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_rotate.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_search_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_search_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_select_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_select_all.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_settings.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_settings_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_settings_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_share_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_share_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_single_cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_single_cycle.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_todo.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_upload_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_upload_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_public_view_list_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_public_view_list_filled.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_squares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_squares.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_timer_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_timer_icon.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/ic_user_portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/ic_user_portrait.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/index_calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/index_calendar.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/index_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/index_cloud.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/index_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/index_heart.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/index_local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/index_local.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/index_radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/index_radio.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/backup_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "allowToBackupRestore": true 3 | } -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/dark/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/dark/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/en_US/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/en_US/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/zh_CN/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/main/resources/zh_CN/element/string.json -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /images/1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-1.png -------------------------------------------------------------------------------- /images/1-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-10.png -------------------------------------------------------------------------------- /images/1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-2.png -------------------------------------------------------------------------------- /images/1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-3.png -------------------------------------------------------------------------------- /images/1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-4.png -------------------------------------------------------------------------------- /images/1-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-5.png -------------------------------------------------------------------------------- /images/1-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-6.png -------------------------------------------------------------------------------- /images/1-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-7.png -------------------------------------------------------------------------------- /images/1-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-8.png -------------------------------------------------------------------------------- /images/1-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/1-9.png -------------------------------------------------------------------------------- /images/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/2-1.png -------------------------------------------------------------------------------- /images/2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/2-2.png -------------------------------------------------------------------------------- /images/3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/3-1.png -------------------------------------------------------------------------------- /images/3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/3-2.png -------------------------------------------------------------------------------- /images/4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/4-1.png -------------------------------------------------------------------------------- /images/4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/4-2.png -------------------------------------------------------------------------------- /images/5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/5-1.png -------------------------------------------------------------------------------- /images/5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/images/5-2.png -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chenlvin/Melotopia-HMOS/HEAD/oh-package.json5 --------------------------------------------------------------------------------