mirror of
https://github.com/MoonTechLab/LunaTV.git
synced 2026-06-05 07:43:13 +08:00
chore: Bump to 3.1.0
This commit is contained in:
20
CHANGELOG
20
CHANGELOG
@@ -1,3 +1,23 @@
|
|||||||
|
## [3.1.0] - 2025-08-21
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- 增加用户组管理和用户组播放源限制
|
||||||
|
- 增加管理面板视频源有效性检查
|
||||||
|
- 搜索栏增加一键删除按钮
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- 放宽授权心跳对于网络问题的判断标准
|
||||||
|
- 统一管理面板弹窗使用 createPortal
|
||||||
|
- VideoCard 允许移动端响应 hover 事件
|
||||||
|
- 移动端布局 header 常驻,搜索按钮移动到 header 右侧
|
||||||
|
- 调大搜索接口超时时间
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- 修复 bangumi 返回的整数评分无小数导致 UI 不对齐的问题
|
||||||
|
|
||||||
## [3.0.2] - 2025-08-20
|
## [3.0.2] - 2025-08-20
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.0.2
|
3.1.0
|
||||||
@@ -10,6 +10,25 @@ export interface ChangelogEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const changelog: ChangelogEntry[] = [
|
export const changelog: ChangelogEntry[] = [
|
||||||
|
{
|
||||||
|
version: "3.1.0",
|
||||||
|
date: "2025-08-21",
|
||||||
|
added: [
|
||||||
|
"增加用户组管理和用户组播放源限制",
|
||||||
|
"增加管理面板视频源有效性检查",
|
||||||
|
"搜索栏增加一键删除按钮"
|
||||||
|
],
|
||||||
|
changed: [
|
||||||
|
"放宽授权心跳对于网络问题的判断标准",
|
||||||
|
"统一管理面板弹窗使用 createPortal",
|
||||||
|
"VideoCard 允许移动端响应 hover 事件",
|
||||||
|
"移动端布局 header 常驻,搜索按钮移动到 header 右侧",
|
||||||
|
"调大搜索接口超时时间"
|
||||||
|
],
|
||||||
|
fixed: [
|
||||||
|
"修复 bangumi 返回的整数评分无小数导致 UI 不对齐的问题"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: "3.0.2",
|
version: "3.0.2",
|
||||||
date: "2025-08-20",
|
date: "2025-08-20",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable no-console */
|
/* eslint-disable no-console */
|
||||||
|
|
||||||
const CURRENT_VERSION = '3.0.2';
|
const CURRENT_VERSION = '3.1.0';
|
||||||
|
|
||||||
// 导出当前版本号供其他地方使用
|
// 导出当前版本号供其他地方使用
|
||||||
export { CURRENT_VERSION };
|
export { CURRENT_VERSION };
|
||||||
|
|||||||
Reference in New Issue
Block a user