Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added icons/webhooknotify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package.v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
Expand Down
2 changes: 1 addition & 1 deletion plugins.v2/webhooknotify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## 版本更新日志

- v1.0
- 新增通用 Webhook 通知入口,支持 GET、POST 和消息类型配置
- 新增通用 Webhook 通知入口。

## 功能概览

Expand Down
2 changes: 1 addition & 1 deletion plugins.v2/webhooknotify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down