From 1ac6baffe012c424263aad7910fc4d6ce2ba8554 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sun, 10 Aug 2025 11:54:43 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E6=8F=92=E4=BB=B6=E6=89=93=E5=8C=85?= =?UTF-8?q?=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e37cdf9..95ccb8e 100644 --- a/README.md +++ b/README.md @@ -1183,6 +1183,12 @@ def get_actions(self) -> List[Dict[str, Any]]: } ``` - 新增加的插件请配置在`package.json`中的末尾,这样可被识别为最新增加,可用于用户排序。 +- 如果插件文件较多,可以使用release包的方式发布插件,package对应的插件描述中增加`release`字段,指向release的tag名称: +```json +{ + "release": "XxxPlugin v1.0.0" +} +``` ### 2. 如何开发V2版本的插件以及实现插件多版本兼容?