This commit is contained in:
thsrite
2024-07-04 13:37:00 +08:00
parent 848717a251
commit 3ca23e94ab
3 changed files with 26 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ class CloudAssistant(_PluginBase):
# 插件图标
plugin_icon = "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/cloudassistant.png"
# 插件版本
plugin_version = "2.0.6"
plugin_version = "2.0.7"
# 插件作者
plugin_author = "thsrite"
# 作者主页
@@ -714,7 +714,7 @@ class CloudAssistant(_PluginBase):
# 剧集季集信息 S01 E01-E04 || S01 E01、E02、E04
season_episode = None
# 处理文件多,说明是剧集,显示季入库消息
if mtype == MediaType.TV.name:
if str(mtype) == str(MediaType.TV.name):
# 季集文本
season_episode = f"{season} {StringUtils.format_ep(episodes)}"
# 发送消息
@@ -1347,6 +1347,27 @@ class CloudAssistant(_PluginBase):
}
]
},
{
'component': 'VRow',
'content': [
{
'component': 'VCol',
'props': {
'cols': 12,
},
'content': [
{
'component': 'VAlert',
'props': {
'type': 'error',
'variant': 'tonal',
'text': '插件没想公开,传的快,死的快。'
}
}
]
}
]
},
{
'component': 'VRow',
'props': {