- 修复了一个未设置媒体服务器时订阅日志报错的问题
- 媒体库刮削插件支持覆盖已有元数据和图片
- 新增了一个沿用已有刮削名称的开关(默认开),避免TMDB信息变化时导致整理后名称不一致
- 刮削时季的海报优先使用TMDB的图片
- 增加了内建重启失败时的提示
This commit is contained in:
jxxghp 2023-09-08 11:01:37 +08:00
parent 52d4feb583
commit 071c81d52c
2 changed files with 2 additions and 1 deletions

View File

@ -185,6 +185,7 @@ class TransferChain(ChainBase):
# 转移成功的不再处理 # 转移成功的不再处理
transferd = self.transferhis.get_by_src(file_path_str) transferd = self.transferhis.get_by_src(file_path_str)
if transferd and transferd.status: if transferd and transferd.status:
logger.info(f"{file_path} 已成功转移过,如需重新处理,请删除历史记录。")
continue continue
# 更新进度 # 更新进度

View File

@ -1 +1 @@
APP_VERSION = 'v1.1.5' APP_VERSION = 'v1.1.6'