We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e599d60 commit 4ef2c90Copy full SHA for 4ef2c90
2 files changed
docs/UpdateLog.md
@@ -86,4 +86,14 @@
86
- 将 MediaServerType 从字符串类型更改为 uint8
87
- 修复 robots.txt 路由错误问题
88
- 优化初始化过程,统一日志输出,移除冗余代码
89
- - 使用当前目录作为项目根目录
+ - 使用当前目录作为项目根目录
90
+- 2025.10.15: v0.1.4
91
+ - 添加 HTTPStrm 最终重定向缓存
92
+ - 添加 Alist API 缓存
93
+ - AlistStrm 支持基础目录未非根目录用户
94
+ - 移除 viper,仅支持识别 yaml 配置文件
95
+ - 添加结构体标签(**可能导致部分配置不通用**)
96
+ - 修复 AlistStrm 重定向逻辑,确保仅在有效的重定向 URL 时进行重定向
97
+ - 优化 QueryCaseInsensitive 中间件,简化查询参数处理逻辑
98
+ - 优化 LoggerFileHook 的文件处理逻辑,提高性能
99
+ - 修复 GZIP 压缩时响应体为空的问题 ([#64](https://github.com/AkimioJR/MediaWarp/issues/64))
internal/config/version.go
@@ -5,7 +5,7 @@ import (
5
)
6
7
var (
8
- appVersion string = "v0.1.3"
+ appVersion string = "v0.1.4"
9
commitHash string = "Unkown"
10
buildDate string = "Unkown"
11
0 commit comments