diff --git a/icons/webhooknotify.png b/icons/webhooknotify.png new file mode 100644 index 00000000..436ce7c9 Binary files /dev/null and b/icons/webhooknotify.png differ diff --git a/package.v2.json b/package.v2.json index f4baffaf..2e465485 100644 --- a/package.v2.json +++ b/package.v2.json @@ -295,11 +295,11 @@ "description": "接收 Webhook 消息并推送到通知客户端。", "labels": "通知,工具", "version": "1.0", - "icon": "https://raw.githubusercontent.com/InfinityPacer/MoviePilot-Plugins/main/icons/customplugin.png", + "icon": "https://raw.githubusercontent.com/InfinityPacer/MoviePilot-Plugins/main/icons/webhooknotify.png", "author": "InfinityPacer", "level": 1, "history": { - "v1.0": "新增通用 Webhook 通知入口,支持 GET、POST 和消息类型配置。" + "v1.0": "新增通用 Webhook 通知入口。" }, "release": true }, diff --git a/plugins.v2/webhooknotify/README.md b/plugins.v2/webhooknotify/README.md index f7a83f3f..3ebed9ff 100644 --- a/plugins.v2/webhooknotify/README.md +++ b/plugins.v2/webhooknotify/README.md @@ -8,7 +8,7 @@ ## 版本更新日志 - v1.0 - - 新增通用 Webhook 通知入口,支持 GET、POST 和消息类型配置。 + - 新增通用 Webhook 通知入口。 ## 功能概览 diff --git a/plugins.v2/webhooknotify/__init__.py b/plugins.v2/webhooknotify/__init__.py index 8959e7d1..485951fe 100644 --- a/plugins.v2/webhooknotify/__init__.py +++ b/plugins.v2/webhooknotify/__init__.py @@ -34,7 +34,7 @@ class WebhookNotify(_PluginBase): plugin_name = "Webhook消息推送" plugin_desc = "接收 Webhook 消息并推送到通知客户端。" - plugin_icon = "https://raw.githubusercontent.com/InfinityPacer/MoviePilot-Plugins/main/icons/customplugin.png" + plugin_icon = "https://raw.githubusercontent.com/InfinityPacer/MoviePilot-Plugins/main/icons/webhooknotify.png" plugin_version = "1.0" plugin_author = "InfinityPacer" author_url = "https://github.com/InfinityPacer"