├── .gitignore ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ └── logo.png ├── LICENSE ├── README.md ├── entry ├── .gitignore ├── README.md ├── build-profile.json5 ├── hvigorfile.ts ├── libs │ └── libwlmedia.har ├── obfuscation-rules.txt ├── oh-package.json5 └── src │ ├── main │ ├── ets │ │ ├── ability │ │ │ └── entry │ │ │ │ └── EntryAbility.ets │ │ ├── api │ │ │ ├── FinVideoApi.ets │ │ │ ├── FinVideoApiFactory.ets │ │ │ ├── emby │ │ │ │ └── EmbyFinApi.ets │ │ │ └── jellyfin │ │ │ │ └── JellyfinFinApi.ets │ │ ├── app │ │ │ └── App.ets │ │ ├── data │ │ │ └── Repository.ets │ │ ├── entity │ │ │ ├── FinItemSource.ets │ │ │ ├── FinPlaybackInfo.ets │ │ │ ├── GroupInfo.ets │ │ │ └── SectionInfo.ets │ │ ├── pages │ │ │ ├── about │ │ │ │ └── AboutPage.ets │ │ │ ├── common │ │ │ │ ├── AppViewModel.ets │ │ │ │ ├── CommonConstants.ets │ │ │ │ ├── LazyDataSource.ets │ │ │ │ ├── ListViewModel.ets │ │ │ │ ├── MediaRouter.ets │ │ │ │ └── ObservedArray.ets │ │ │ ├── detail │ │ │ │ ├── DetailArgs.ets │ │ │ │ ├── DetailComponent.ets │ │ │ │ ├── DetailViewModel.ets │ │ │ │ ├── movie │ │ │ │ │ ├── MoviePage.ets │ │ │ │ │ └── MovieViewModel.ets │ │ │ │ └── show │ │ │ │ │ ├── ShowComponent.ets │ │ │ │ │ ├── ShowInfo.ets │ │ │ │ │ ├── ShowPage.ets │ │ │ │ │ ├── ShowViewModel.ets │ │ │ │ │ ├── episode │ │ │ │ │ ├── ShowEpisodePage.ets │ │ │ │ │ └── ShowEpisodeViewModel.ets │ │ │ │ │ └── season │ │ │ │ │ ├── ShowSeasonArgs.ets │ │ │ │ │ ├── ShowSeasonPage.ets │ │ │ │ │ └── ShowSeasonViewModel.ets │ │ │ ├── favourite │ │ │ │ ├── FavouriteListArgs.ets │ │ │ │ ├── FavouriteListPage.ets │ │ │ │ └── FavouriteListVewModel.ets │ │ │ ├── home │ │ │ │ ├── HomePage.ets │ │ │ │ ├── favourite │ │ │ │ │ ├── FavouriteComponent.ets │ │ │ │ │ └── FavouriteViewModel.ets │ │ │ │ ├── main │ │ │ │ │ ├── MainComponent.ets │ │ │ │ │ └── MainViewModel.ets │ │ │ │ ├── media │ │ │ │ │ ├── MediaComponent.ets │ │ │ │ │ └── MediaViewModel.ets │ │ │ │ └── prefer │ │ │ │ │ ├── PreferComponent.ets │ │ │ │ │ └── PreferViewModel.ets │ │ │ ├── media │ │ │ │ ├── MediaListArgs.ets │ │ │ │ ├── MediaListPage.ets │ │ │ │ └── MediaListVewModel.ets │ │ │ ├── player │ │ │ │ ├── PlayerArgs.ets │ │ │ │ ├── PlayerPage.ets │ │ │ │ ├── PlayerViewModel.ets │ │ │ │ └── XController.ets │ │ │ ├── search │ │ │ │ ├── SearchArgs.ets │ │ │ │ ├── SearchPage.ets │ │ │ │ └── SearchViewModel.ets │ │ │ ├── setting │ │ │ │ └── VideoSettingPage.ets │ │ │ └── splash │ │ │ │ └── SplashPage.ets │ │ ├── player │ │ │ ├── AVPlayer.ets │ │ │ ├── AbstractPlayer.ets │ │ │ ├── PlayerImpl.ets │ │ │ └── WLPlayer.ets │ │ ├── prefer │ │ │ └── AppPrefer.ets │ │ ├── sheet │ │ │ └── ShowEpisodeSheet.ets │ │ ├── startup │ │ │ ├── AppStartupConfig.ets │ │ │ └── AppStartupTask.ets │ │ └── widget │ │ │ ├── bar │ │ │ ├── CategoryToolBar.ets │ │ │ ├── HomeToolBar.ets │ │ │ └── SectionToolBar.ets │ │ │ └── media │ │ │ ├── EpisodeItem.ets │ │ │ └── MediaItem.ets │ ├── module.json5 │ └── resources │ │ ├── base │ │ ├── element │ │ │ ├── color.json │ │ │ ├── float.json │ │ │ └── string.json │ │ ├── media │ │ │ ├── alt.svg │ │ │ ├── background.png │ │ │ ├── foreground.png │ │ │ ├── layered_image.json │ │ │ └── starticon.png │ │ └── profile │ │ │ ├── main_pages.json │ │ │ └── startup_config.json │ │ └── dark │ │ ├── element │ │ └── color.json │ │ └── media │ │ └── alt.svg │ ├── 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 └── oh-package.json5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/.gitignore -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/AppScope/resources/base/media/logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/README.md -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/README.md -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/libs/libwlmedia.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/libs/libwlmedia.har -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/ability/entry/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/ability/entry/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/FinVideoApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/api/FinVideoApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/FinVideoApiFactory.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/api/FinVideoApiFactory.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/emby/EmbyFinApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/api/emby/EmbyFinApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/api/jellyfin/JellyfinFinApi.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/api/jellyfin/JellyfinFinApi.ets -------------------------------------------------------------------------------- /entry/src/main/ets/app/App.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/app/App.ets -------------------------------------------------------------------------------- /entry/src/main/ets/data/Repository.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/data/Repository.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entity/FinItemSource.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/entity/FinItemSource.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entity/FinPlaybackInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/entity/FinPlaybackInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entity/GroupInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/entity/GroupInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/entity/SectionInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/entity/SectionInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/about/AboutPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/about/AboutPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/common/AppViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/common/AppViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/common/CommonConstants.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/common/CommonConstants.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/common/LazyDataSource.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/common/LazyDataSource.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/common/ListViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/common/ListViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/common/MediaRouter.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/common/MediaRouter.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/common/ObservedArray.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/common/ObservedArray.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/DetailArgs.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/DetailArgs.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/DetailComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/DetailComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/DetailViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/DetailViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/movie/MoviePage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/movie/MoviePage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/movie/MovieViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/movie/MovieViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/ShowComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/ShowComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/ShowInfo.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/ShowInfo.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/ShowPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/ShowPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/ShowViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/ShowViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/episode/ShowEpisodePage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/episode/ShowEpisodePage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/episode/ShowEpisodeViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/episode/ShowEpisodeViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/season/ShowSeasonArgs.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/season/ShowSeasonArgs.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/season/ShowSeasonPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/season/ShowSeasonPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/detail/show/season/ShowSeasonViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/detail/show/season/ShowSeasonViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/favourite/FavouriteListArgs.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/favourite/FavouriteListArgs.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/favourite/FavouriteListPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/favourite/FavouriteListPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/favourite/FavouriteListVewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/favourite/FavouriteListVewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/HomePage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/HomePage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/favourite/FavouriteComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/favourite/FavouriteComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/favourite/FavouriteViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/favourite/FavouriteViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/main/MainComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/main/MainComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/main/MainViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/main/MainViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/media/MediaComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/media/MediaComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/media/MediaViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/media/MediaViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/prefer/PreferComponent.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/prefer/PreferComponent.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/home/prefer/PreferViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/home/prefer/PreferViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/media/MediaListArgs.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/media/MediaListArgs.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/media/MediaListPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/media/MediaListPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/media/MediaListVewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/media/MediaListVewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/player/PlayerArgs.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/player/PlayerArgs.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/player/PlayerPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/player/PlayerPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/player/PlayerViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/player/PlayerViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/player/XController.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/player/XController.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/search/SearchArgs.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/search/SearchArgs.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/search/SearchPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/search/SearchPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/search/SearchViewModel.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/search/SearchViewModel.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/setting/VideoSettingPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/setting/VideoSettingPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/splash/SplashPage.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/pages/splash/SplashPage.ets -------------------------------------------------------------------------------- /entry/src/main/ets/player/AVPlayer.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/player/AVPlayer.ets -------------------------------------------------------------------------------- /entry/src/main/ets/player/AbstractPlayer.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/player/AbstractPlayer.ets -------------------------------------------------------------------------------- /entry/src/main/ets/player/PlayerImpl.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/player/PlayerImpl.ets -------------------------------------------------------------------------------- /entry/src/main/ets/player/WLPlayer.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/player/WLPlayer.ets -------------------------------------------------------------------------------- /entry/src/main/ets/prefer/AppPrefer.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/prefer/AppPrefer.ets -------------------------------------------------------------------------------- /entry/src/main/ets/sheet/ShowEpisodeSheet.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/sheet/ShowEpisodeSheet.ets -------------------------------------------------------------------------------- /entry/src/main/ets/startup/AppStartupConfig.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/startup/AppStartupConfig.ets -------------------------------------------------------------------------------- /entry/src/main/ets/startup/AppStartupTask.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/startup/AppStartupTask.ets -------------------------------------------------------------------------------- /entry/src/main/ets/widget/bar/CategoryToolBar.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/widget/bar/CategoryToolBar.ets -------------------------------------------------------------------------------- /entry/src/main/ets/widget/bar/HomeToolBar.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/widget/bar/HomeToolBar.ets -------------------------------------------------------------------------------- /entry/src/main/ets/widget/bar/SectionToolBar.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/widget/bar/SectionToolBar.ets -------------------------------------------------------------------------------- /entry/src/main/ets/widget/media/EpisodeItem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/widget/media/EpisodeItem.ets -------------------------------------------------------------------------------- /entry/src/main/ets/widget/media/MediaItem.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/ets/widget/media/MediaItem.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/element/float.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/media/alt.svg -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/starticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/media/starticon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/startup_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/base/profile/startup_config.json -------------------------------------------------------------------------------- /entry/src/main/resources/dark/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/dark/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/dark/media/alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/main/resources/dark/media/alt.svg -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OHPG/FinVideo/HEAD/oh-package.json5 --------------------------------------------------------------------------------