feat 自动删种插件新增状态提示

This commit is contained in:
jxxghp
2023-11-12 07:29:43 +08:00
parent 8c032d413f
commit bc5a151312
2 changed files with 42 additions and 2 deletions

View File

@@ -83,7 +83,7 @@
"TorrentRemover": {
"name": "自动删种",
"description": "自动删除下载器中的下载任务。",
"version": "1.0",
"version": "1.1",
"icon": "torrent.png",
"color": "#02853F",
"author": "jxxghp",

View File

@@ -29,7 +29,7 @@ class TorrentRemover(_PluginBase):
# 主题色
plugin_color = "#02853F"
# 插件版本
plugin_version = "1.0"
plugin_version = "1.1"
# 插件作者
plugin_author = "jxxghp"
# 作者主页
@@ -496,6 +496,46 @@ class TorrentRemover(_PluginBase):
]
}
]
},
{
'component': 'VRow',
'content': [
{
'component': 'VCol',
'props': {
'cols': 12,
},
'content': [
{
'component': 'VAlert',
'props': {
'type': 'info',
'variant': 'tonal',
'text': '任务状态QB字典'
'downloading正在下载-传输数据,'
'stalledDL正在下载_未建立连接'
'uploading正在上传-传输数据,'
'stalledUP正在上传-未建立连接,'
'error暂停-发生错误,'
'pausedDL暂停-下载未完成,'
'pausedUP暂停-下载完成,'
'missingFiles暂停-文件丢失,'
'checkingDL检查中-下载未完成,'
'checkingUP检查中-下载完成,'
'checkingResumeData检查中-启动时恢复数据,'
'forcedDL强制下载-忽略队列,'
'queuedDL等待下载-排队,'
'forcedUP强制上传-忽略队列,'
'queuedUP等待上传-排队,'
'allocating分配磁盘空间'
'metaDL获取元数据'
'moving移动文件'
'unknown未知状态'
}
}
]
}
]
}
]
}