chore: Bump to 3.0.0

This commit is contained in:
senshinya
2025-08-20 19:50:21 +08:00
parent a8207a7bb0
commit 8ba59119bc
4 changed files with 31 additions and 2 deletions

View File

@@ -1,3 +1,18 @@
## [3.0.0] - 2025-08-20
### Added
- 防盗卖加固
- 支持自定义用户可用视频源
### Changed
- 右键视频卡片可弹出操作菜单
### Fixed
- 过滤掉集数为 0 的搜索结果
## [2.7.1] - 2025-08-17
### Fixed

View File

@@ -1 +1 @@
2.7.1
3.0.0

View File

@@ -10,6 +10,20 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "3.0.0",
date: "2025-08-20",
added: [
"防盗卖加固",
"支持自定义用户可用视频源"
],
changed: [
"右键视频卡片可弹出操作菜单"
],
fixed: [
"过滤掉集数为 0 的搜索结果"
]
},
{
version: "2.7.1",
date: "2025-08-17",

View File

@@ -1,6 +1,6 @@
/* eslint-disable no-console */
const CURRENT_VERSION = '2.7.1';
const CURRENT_VERSION = '3.0.0';
// 导出当前版本号供其他地方使用
export { CURRENT_VERSION };