编写更新日志

This commit is contained in:
mtvpls
2025-12-14 19:22:43 +08:00
parent e711d165eb
commit 2c673efa67
4 changed files with 34 additions and 2 deletions

View File

@@ -1,3 +1,18 @@
## [202.0.0] - 2025-12-14
### Added
- 新增离线下载功能
- 增加注册功能
- 增加oidc登录功能
- 增加自定义主题
### Changed
- 视频下载现在支持选集下载
### Fixed
- 修复webrtc连接容易断开的问题
- 修复语音聊天中转模式回声
## [201.0.1] - 2025-12-10
### Fixed

View File

@@ -1 +1 @@
201.0.1
202.0.0

View File

@@ -11,6 +11,23 @@ export interface ChangelogEntry {
export const changelog: ChangelogEntry[] = [
{
version: '202.0.0',
date: '2025-12-14',
added: [
'新增离线下载功能',
'增加注册功能',
'增加oidc登录功能',
'增加自定义主题'
],
changed: [
'视频下载现在支持选集下载',
],
fixed: [
'修复webrtc连接容易断开的问题',
'修复语音聊天中转模式回声'
]
},
{
version: '201.0.1',
date: '2025-12-10',
added: [

View File

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