Merge pull request #300 from DzAvril/main

This commit is contained in:
jxxghp
2024-05-15 18:22:11 +08:00
committed by GitHub
2 changed files with 7 additions and 2 deletions

View File

@@ -713,11 +713,12 @@
"name": "清理QB无效做种",
"description": "清理已经被站点删除的种子及对应源文件仅支持QB",
"labels": "Qbittorrent",
"version": "1.1",
"version": "1.2",
"icon": "clean_a.png",
"author": "DzAvril",
"level": 1,
"history": {
"v1.2": "修复配置页空白的问题",
"v1.1": "更新使用说明,以防使用不当误删文件",
"v1.0": "定时清理已经被站点删除的种子及对应源文件"
}

View File

@@ -27,7 +27,7 @@ class CleanInvalidSeed(_PluginBase):
# 插件图标
plugin_icon = "clean_a.png"
# 插件版本
plugin_version = "1.1"
plugin_version = "1.2"
# 插件作者
plugin_author = "DzAvril"
# 作者主页
@@ -40,6 +40,10 @@ class CleanInvalidSeed(_PluginBase):
auth_level = 1
# 私有属性
_enabled = False
_cron = None
_notify = False
_onlyonce = False
_qb = None
_detect_invalid_files = False
_delete_invalid_files = False