chore: Bump to 2.7.0

This commit is contained in:
senshinya
2025-08-17 20:37:31 +08:00
parent dbbdf47aab
commit c2048bd45f
4 changed files with 29 additions and 2 deletions

View File

@@ -1,3 +1,17 @@
## [2.7.0] - 2025-08-17
### Added
- 视频卡片新增移动端操作面板,优化触控屏操作体验
### Changed
- 优化集数标题的匹配和展示逻辑
### Fixed
- 修复设置面板和修改密码面板背景可被拖动的问题
## [2.6.0] - 2025-08-17
### Added

View File

@@ -1 +1 @@
2.6.0
2.7.0

View File

@@ -10,6 +10,19 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "2.7.0",
date: "2025-08-17",
added: [
"视频卡片新增移动端操作面板,优化触控屏操作体验"
],
changed: [
"优化集数标题的匹配和展示逻辑"
],
fixed: [
"修复设置面板和修改密码面板背景可被拖动的问题"
]
},
{
version: "2.6.0",
date: "2025-08-17",

View File

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