Skip to content

Commit cf05ae2

Browse files
committed
v1.7.0
- 捷径中增加了系统健康检查功能,可快速检测各模块连接状态、目录是否跨盘等 - 网络测试增加了`fanart`和`thetvdb`测试项 - 新增`短剧自动分类`插件,可根据视频文件时长将短剧整理到独立分类目录 - 通知消息新增支持`VoceChat`,可实现消息交互以及群组通知功能,需自行搭建服务端 - 修复了订阅集数修改后会被覆盖的问题,订阅默认规则增加了做种数设定 VoceChat搭建及配置参考:https://doc.voce.chat/zh-cn/bot/bot-and-webhook ,Webhook回调地址相对路径为:/api/v1/message/
1 parent 85a77a6 commit cf05ae2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/modules/emby/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test(self) -> Tuple[bool, str]:
2323
"""
2424
if self.emby.is_inactive():
2525
self.emby.reconnect()
26-
if self.emby.is_inactive():
26+
if not self.emby.get_user():
2727
return False, "无法连接Emby,请检查参数配置"
2828
return True, ""
2929

app/modules/jellyfin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def test(self) -> Tuple[bool, str]:
3434
"""
3535
if self.jellyfin.is_inactive():
3636
self.jellyfin.reconnect()
37-
if self.jellyfin.is_inactive():
37+
if not self.jellyfin.get_user():
3838
return False, "无法连接Jellyfin,请检查参数配置"
3939
return True, ""
4040

app/modules/plex/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test(self) -> Tuple[bool, str]:
2323
"""
2424
if self.plex.is_inactive():
2525
self.plex.reconnect()
26-
if self.plex.is_inactive():
26+
if not self.plex.get_librarys():
2727
return False, "无法连接Plex,请检查参数配置"
2828
return True, ""
2929

version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
APP_VERSION = 'v1.6.9'
1+
APP_VERSION = 'v1.7.0'

0 commit comments

Comments
 (0)