chore: Bump to 4.0.0

This commit is contained in:
senshinya
2025-08-24 00:31:41 +08:00
parent 042f78d2b3
commit d24451eda2
4 changed files with 27 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
## [4.0.0] - 2025-08-24
### Added
- 增加 iptv 订阅和播放功能
### Changed
- 搜索页面视频卡片移动端/右键菜单添加豆瓣链接
- 搜索建议遵循色情过滤
## [3.2.1] - 2025-08-22
### Changed

View File

@@ -1 +1 @@
3.2.1
4.0.0

View File

@@ -10,6 +10,20 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "4.0.0",
date: "2025-08-24",
added: [
"增加 iptv 订阅和播放功能"
],
changed: [
"搜索页面视频卡片移动端/右键菜单添加豆瓣链接",
"搜索建议遵循色情过滤"
],
fixed: [
// 无修复内容
]
},
{
version: "3.2.1",
date: "2025-08-22",

View File

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