Skip to content

Commit

Permalink
更新版本号为v1.0.1;工程适配ohpm;使用htmlsoup替代sanitize-html;修复首页轮播图点击无法跳转详情页的问题;日…
Browse files Browse the repository at this point in the history
…志输出、转场动画配置等代码优化
  • Loading branch information
Z-P-J committed Nov 18, 2023
1 parent 6acd53d commit dbeeea6
Show file tree
Hide file tree
Showing 43 changed files with 1,371 additions and 2,366 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
/node_modules
/oh_modules
/local.properties
/.idea
**/build
/.hvigor
.cxx
/.clangd
/.clang-format
/.clang-tidy
/.clang-tidy
**/.test
4 changes: 2 additions & 2 deletions AppScope/app.json5
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"app": {
"bundleName": "org.ohosdev.anime",
"vendor": "example",
"versionCode": 1000000,
"versionName": "1.0.0",
"versionCode": 1000001,
"versionName": "1.0.1",
"icon": "$media:app_icon",
"label": "$string:app_name",
"distributedNotificationEnabled": true
Expand Down
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OpenHarmony开源看动漫应用。__数据均来源于网络,仅供学习交
## 开发环境

- 一加6T OpenHarmony 3.2
- DevEco Studio 3.1 Beta1
- DevEco Studio 4.0 Beta2
- SDK API9 3.2.13.5


Expand Down Expand Up @@ -62,8 +62,21 @@ OpenHarmony开源看动漫应用。__数据均来源于网络,仅供学习交

## 更新日志

- 2023/08/20
- 初始提交
- v1.0.1 (2023-11-18)
- 更新版本号为v1.0.1
- 工程适配ohpm
- 使用htmlsoup替代sanitize-html
- 修复首页轮播图点击无法跳转详情页的问题
- 日志输出、转场动画配置等代码优化


- v1.0.0 (2023-08-20)
- v1.0.0版本首次发布
- 番剧列表、番剧搜索、番剧观看、番剧下载
- 视频下载列表、视频收藏、历史记录、搜索记录
- 支持AVPlayer、Video控件和IjkPlayer三种播放器(其中Video和IjkPlayer目前都不够完善,推荐使用AVPlayer)
- 支持M3u8视频离线缓存,支持离线观看M3u8视频
- 支持切换暗色模式



Expand Down
4 changes: 3 additions & 1 deletion entry/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/node_modules
/oh_modules
/.preview
/build
/.cxx
/.cxx
/.test
28 changes: 28 additions & 0 deletions entry/oh-package-lock.json5

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions entry/oh-package.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"license": "ISC",
"devDependencies": {},
"name": "entry",
"description": "example description",
"repository": {},
"version": "1.0.1",
"dependencies": {
"reflect-metadata": "^0.1.13",
"@ohos/fileio-extra": "^2.0.1",
"@ohos/crypto-js": "^2.0.3-rc.0",
"@ohos/ijkplayer": "^2.0.2-rc.0"
}
}
143 changes: 0 additions & 143 deletions entry/package-lock.json

This file was deleted.

20 changes: 0 additions & 20 deletions entry/package.json

This file was deleted.

6 changes: 2 additions & 4 deletions entry/src/main/ets/api/DataSource.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import HomepageData from '../entity/HomepageData';
import EpisodeList from '../entity/EpisodeList'
import VideoInfo from '../entity/VideoInfo'
import VideoDetailInfo from '../entity/VideoDetailInfo'
import { Document } from "domhandler"
import VideoInfo from '../entity/VideoInfo';
import VideoDetailInfo from '../entity/VideoDetailInfo';

/**
* 数据源
Expand Down
Loading

0 comments on commit dbeeea6

Please sign in to comment.