chore: Bump to 3.2.0

This commit is contained in:
senshinya
2025-08-22 23:11:15 +08:00
parent 4df0d53343
commit 6e9e9cf93d
4 changed files with 35 additions and 2 deletions

View File

@@ -1,3 +1,20 @@
## [3.2.0] - 2025-08-22
### Added
- 视频源管理支持批量启用、禁用、删除
- 用户管理支持批量设置用户组
- 视频卡片右键/长按菜单新增新标签页播放
### Changed
- 视频卡片移动端 hover 时仅保留播放按钮
- 微调管理页面 UI 和视频卡片右键/长按菜单中的收藏样式
### Fixed
- 修复了搜索栏 enter 键自动选中第一个建议项的问题
## [3.1.2] - 2025-08-22
### Fixed

View File

@@ -1 +1 @@
3.1.2
3.2.0

View File

@@ -10,6 +10,22 @@ export interface ChangelogEntry {
}
export const changelog: ChangelogEntry[] = [
{
version: "3.2.0",
date: "2025-08-22",
added: [
"视频源管理支持批量启用、禁用、删除",
"用户管理支持批量设置用户组",
"视频卡片右键/长按菜单新增新标签页播放"
],
changed: [
"视频卡片移动端 hover 时仅保留播放按钮",
"微调管理页面 UI 和视频卡片右键/长按菜单中的收藏样式"
],
fixed: [
"修复了搜索栏 enter 键自动选中第一个建议项的问题"
]
},
{
version: "3.1.2",
date: "2025-08-22",

View File

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