- 捷径中增加了系统健康检查功能,可快速检测各模块连接状态、目录是否跨盘等
- 网络测试增加了`fanart`和`thetvdb`测试项
- 新增`短剧自动分类`插件,可根据视频文件时长将短剧整理到独立分类目录
- 通知消息新增支持`VoceChat`,可实现消息交互以及群组通知功能,需自行搭建服务端
- 修复了订阅集数修改后会被覆盖的问题,订阅默认规则增加了做种数设定

VoceChat搭建及配置参考:https://doc.voce.chat/zh-cn/bot/bot-and-webhook ,Webhook回调地址相对路径为:/api/v1/message/
This commit is contained in:
jxxghp 2024-03-07 08:10:52 +08:00
parent 85a77a66dd
commit cf05ae20c5
4 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ class EmbyModule(_ModuleBase):
"""
if self.emby.is_inactive():
self.emby.reconnect()
if self.emby.is_inactive():
if not self.emby.get_user():
return False, "无法连接Emby请检查参数配置"
return True, ""

View File

@ -34,7 +34,7 @@ class JellyfinModule(_ModuleBase):
"""
if self.jellyfin.is_inactive():
self.jellyfin.reconnect()
if self.jellyfin.is_inactive():
if not self.jellyfin.get_user():
return False, "无法连接Jellyfin请检查参数配置"
return True, ""

View File

@ -23,7 +23,7 @@ class PlexModule(_ModuleBase):
"""
if self.plex.is_inactive():
self.plex.reconnect()
if self.plex.is_inactive():
if not self.plex.get_librarys():
return False, "无法连接Plex请检查参数配置"
return True, ""

View File

@ -1 +1 @@
APP_VERSION = 'v1.6.9'
APP_VERSION = 'v1.7.0'