diff --git a/package.json b/package.json index b55af69..2c608ca 100644 --- a/package.json +++ b/package.json @@ -600,12 +600,12 @@ "name": "CloudDrive2助手", "description": "监控上传任务,检测是否有异常,发送通知。", "labels": "云盘", - "version": "1.8.5", + "version": "1.8.6", "icon": "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/clouddrive.png", "author": "thsrite", "level": 2, "history": { - "v1.8.5": "解决依赖安装问题", + "v1.8.6": "解决依赖安装问题", "v1.8.4": "添加115 429消息通知", "v1.8.3": "添加异常处理,解决cd2上本地目录获取存储空间失败的问题", "v1.8.2": "插件页面密码类型设置为pasword", diff --git a/package.v2.json b/package.v2.json index 7ced846..2d9a0f5 100644 --- a/package.v2.json +++ b/package.v2.json @@ -286,12 +286,12 @@ "name": "CloudDrive2助手", "description": "监控上传任务,检测是否有异常,发送通知。", "labels": "云盘", - "version": "2.0.4", + "version": "2.0.5", "icon": "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/clouddrive.png", "author": "thsrite", "level": 2, "history": { - "v2.0.4": "依赖问题", + "v2.0.5": "依赖问题", "v2.0.3": "优化执行周期输入,需要MoviePilot v2.2.1+", "v2.0.2": "HomePage API支持参数name指定配置(默认取第一个)", "v2.0.1": "修复HomePage API", diff --git a/plugins.v2/cd2assistant/__init__.py b/plugins.v2/cd2assistant/__init__.py index c93a8cc..ef5de90 100644 --- a/plugins.v2/cd2assistant/__init__.py +++ b/plugins.v2/cd2assistant/__init__.py @@ -12,7 +12,7 @@ except ImportError: from sys import executable from subprocess import run - run([executable, "-m", "pip", "install", "clouddrive-0.0.12.7.1.tar.gz"], check=True) + run([executable, "-m", "pip", "install", "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/refs/heads/main/data/clouddrive-0.0.12.7.1.tar.gz"], check=True) from app import schemas from app.core.config import settings @@ -31,7 +31,7 @@ class Cd2Assistant(_PluginBase): # 插件图标 plugin_icon = "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/clouddrive.png" # 插件版本 - plugin_version = "2.0.4" + plugin_version = "2.0.5" # 插件作者 plugin_author = "thsrite" # 作者主页 diff --git a/plugins.v2/cd2assistant/clouddrive-0.0.12.7.1.tar.gz b/plugins.v2/cd2assistant/clouddrive-0.0.12.7.1.tar.gz deleted file mode 100644 index 5d63d16..0000000 Binary files a/plugins.v2/cd2assistant/clouddrive-0.0.12.7.1.tar.gz and /dev/null differ diff --git a/plugins/cd2assistant/__init__.py b/plugins/cd2assistant/__init__.py index d53f1ad..9e52836 100644 --- a/plugins/cd2assistant/__init__.py +++ b/plugins/cd2assistant/__init__.py @@ -10,7 +10,7 @@ except ImportError: from sys import executable from subprocess import run - run([executable, "-m", "pip", "install", "clouddrive-0.0.12.7.1.tar.gz"], check=True) + run([executable, "-m", "pip", "install", "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/refs/heads/main/data/clouddrive-0.0.12.7.1.tar.gz"], check=True) from app import schemas from app.core.config import settings from app.core.event import eventmanager, Event @@ -32,7 +32,7 @@ class Cd2Assistant(_PluginBase): # 插件图标 plugin_icon = "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/clouddrive.png" # 插件版本 - plugin_version = "1.8.5" + plugin_version = "1.8.6" # 插件作者 plugin_author = "thsrite" # 作者主页