From 361597e76f5ad84e2cfb8aaa3bd7656f4f48f7eb Mon Sep 17 00:00:00 2001 From: thsrite Date: Wed, 22 Nov 2023 10:09:54 +0800 Subject: [PATCH] fix README.md --- README.md | 41 +++++++--------------------- package.json | 2 +- plugins/downloadtorrent/__init__.py | 2 +- plugins_record/CloudStrm.md | 13 +++++++++ plugins_record/DownloadTorrent.md | 5 ++++ plugins_record/PluginAutoUpdate.md | 7 +++++ plugins_record/PluginReInstall.md | 7 +++++ plugins_record/SiteRemoveSafe.md | 5 ++++ plugins_record/SiteStatisticNoMsg.md | 5 ++++ plugins_record/SiteUnreadMsg.md | 7 +++++ plugins_record/SubscribeClear.md | 5 ++++ plugins_record/SynologyNotify.md | 6 ++++ 12 files changed, 72 insertions(+), 33 deletions(-) create mode 100644 plugins_record/CloudStrm.md create mode 100644 plugins_record/DownloadTorrent.md create mode 100644 plugins_record/PluginAutoUpdate.md create mode 100644 plugins_record/PluginReInstall.md create mode 100644 plugins_record/SiteRemoveSafe.md create mode 100644 plugins_record/SiteStatisticNoMsg.md create mode 100644 plugins_record/SiteUnreadMsg.md create mode 100644 plugins_record/SubscribeClear.md create mode 100644 plugins_record/SynologyNotify.md diff --git a/README.md b/README.md index 0915c50..dda27d1 100644 --- a/README.md +++ b/README.md @@ -9,35 +9,14 @@ MoviePilot三方插件市场:https://github.com/thsrite/MoviePilot-Plugins/ ### 插件新增 -- 站点数据统计 - - 1.0 自动统计和展示站点数据(无站点未读消息) -- 站点未读消息 - - 1.0 定时获取站点消息 - - 1.1 防止同一消息重复发送 - - 1.2 站点消息历史存库 -- 云盘strm生成 - - 1.0 监控文件创建,生成strm文件 - - 1.1 支持alist链接模式 - - 1.2 支持本地模式 - - 1.3 支持全量运行一次 - - 1.4 异步开启目录监控 - - 1.5 优化异步执行 - - 1.6 支持开启监控延迟 -- 清理订阅缓存 - - 1.0 清理订阅已下载集数 -- 下载种子 - - 1.0 选择下载器,添加种子任务 -- 安全删除站点 - - 1.0 删除下载器中该站点辅种,保留该站点没有辅种的种子 -- 插件自动更新 - - 1.0 监测已安装插件,自动更新最新版本 - - 1.1 修复插件重载 - - 1.2 重启后立即执行一遍更新插件 -- 插件强制重装 - - 1.0 卸载当前插件,强制重装 - - 1.1 修复插件重载 - - 1.2 支持指定插件仓库地址 -- 群辉Webhook通知 - - 1.0 接收群辉webhook通知并推送 - - 1.1 修复bug +- [站点数据统计 1.0](plugins_record%2FSiteStatisticNoMsg.md) +- [站点未读消息 1.2](plugins_record%2FSiteUnreadMsg.md) +- [云盘strm生成 1.7](plugins_record%2FCloudStrm.md) +- [清理订阅缓存 1.0](plugins_record%2FSubscribeClear.md) +- [添加种子下载 1.0](plugins_record%2FDownloadTorrent.md) +- [安全删除站点 1.0](plugins_record%2FSiteRemoveSafe.md) +- [插件自动更新 1.2](plugins_record%2FPluginAutoUpdate.md) +- [插件强制重装 1.2](plugins_record%2FPluginReInstall.md) +- [群辉Webhook通知 1.1](plugins_record%2FSynologyNotify.md) + diff --git a/package.json b/package.json index f7be468..8d67116 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "level": 2 }, "DownloadTorrent": { - "name": "下载种子", + "name": "添加种子下载", "description": "选择下载器,添加种子任务。", "version": "1.0", "icon": "https://raw.githubusercontent.com/thsrite/MoviePilot-Plugins/main/icons/download.png", diff --git a/plugins/downloadtorrent/__init__.py b/plugins/downloadtorrent/__init__.py index 5025d45..b32a0d3 100644 --- a/plugins/downloadtorrent/__init__.py +++ b/plugins/downloadtorrent/__init__.py @@ -9,7 +9,7 @@ from app.utils.string import StringUtils class DownloadTorrent(_PluginBase): # 插件名称 - plugin_name = "下载种子" + plugin_name = "添加种子下载" # 插件描述 plugin_desc = "选择下载器,添加种子任务。" # 插件图标 diff --git a/plugins_record/CloudStrm.md b/plugins_record/CloudStrm.md new file mode 100644 index 0000000..4ef4d9d --- /dev/null +++ b/plugins_record/CloudStrm.md @@ -0,0 +1,13 @@ +# 云盘strm生成 + +### 更新记录 + +- 1.6 支持开启监控延迟 +- 1.5 优化异步执行 +- 1.4 异步开启目录监控 +- 1.3 支持全量运行一次 +- 1.2 支持本地模式 +- 1.1 支持alist链接模式 +- 1.0 监控文件创建,生成strm文件 + +### 使用说明 \ No newline at end of file diff --git a/plugins_record/DownloadTorrent.md b/plugins_record/DownloadTorrent.md new file mode 100644 index 0000000..797e4a9 --- /dev/null +++ b/plugins_record/DownloadTorrent.md @@ -0,0 +1,5 @@ +# 添加种子下载 + +### 更新记录 + +- 1.0 删除下载器中该站点辅种,保留该站点没有辅种的种子 diff --git a/plugins_record/PluginAutoUpdate.md b/plugins_record/PluginAutoUpdate.md new file mode 100644 index 0000000..b268c38 --- /dev/null +++ b/plugins_record/PluginAutoUpdate.md @@ -0,0 +1,7 @@ +# 插件自动更新 + +### 更新记录 + +- 1.2 重启后立即执行一遍更新插件 +- 1.1 修复插件重载 +- 1.0 监测已安装插件,自动更新最新版本 diff --git a/plugins_record/PluginReInstall.md b/plugins_record/PluginReInstall.md new file mode 100644 index 0000000..34f8021 --- /dev/null +++ b/plugins_record/PluginReInstall.md @@ -0,0 +1,7 @@ +# 插件强制重装 + +### 更新记录 + +- 1.2 支持指定插件仓库地址 +- 1.1 修复插件重载 +- 1.0 卸载当前插件,强制重装 diff --git a/plugins_record/SiteRemoveSafe.md b/plugins_record/SiteRemoveSafe.md new file mode 100644 index 0000000..ef12a58 --- /dev/null +++ b/plugins_record/SiteRemoveSafe.md @@ -0,0 +1,5 @@ +# 安全删除站点 + +### 更新记录 + +- 1.0 选择下载器,添加种子任务 diff --git a/plugins_record/SiteStatisticNoMsg.md b/plugins_record/SiteStatisticNoMsg.md new file mode 100644 index 0000000..61520ae --- /dev/null +++ b/plugins_record/SiteStatisticNoMsg.md @@ -0,0 +1,5 @@ +# 站点数据统计 + +### 更新记录 + +- 1.0 自动统计和展示站点数据(无站点未读消息) diff --git a/plugins_record/SiteUnreadMsg.md b/plugins_record/SiteUnreadMsg.md new file mode 100644 index 0000000..3d28bb6 --- /dev/null +++ b/plugins_record/SiteUnreadMsg.md @@ -0,0 +1,7 @@ +# 站点未读消息 + +### 更新记录 + +- 1.2 站点消息历史存库 +- 1.1 防止同一消息重复发送 +- 1.0 定时获取站点消息 diff --git a/plugins_record/SubscribeClear.md b/plugins_record/SubscribeClear.md new file mode 100644 index 0000000..e6b22ad --- /dev/null +++ b/plugins_record/SubscribeClear.md @@ -0,0 +1,5 @@ +# 清理订阅缓存 + +### 更新记录 + +- 1.0 清理订阅已下载集数 diff --git a/plugins_record/SynologyNotify.md b/plugins_record/SynologyNotify.md new file mode 100644 index 0000000..6faf0f4 --- /dev/null +++ b/plugins_record/SynologyNotify.md @@ -0,0 +1,6 @@ +# 群辉Webhook通知 + +### 更新记录 + +- 1.1 修复bug +- 1.0 接收群辉webhook通知并推送