From 2d76209c8ae27506a8996dd7ed2e62dcc8a52e50 Mon Sep 17 00:00:00 2001 From: synodriver Date: Wed, 9 Dec 2020 03:52:26 +0000 Subject: [PATCH 1/4] =?UTF-8?q?:beers:=20publish=20=E5=9B=BE=E7=89=87?= =?UTF-8?q?=E6=90=9C=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vuepress/public/plugins.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/.vuepress/public/plugins.json b/docs/.vuepress/public/plugins.json index fdf436a8..5a1dc946 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -54,5 +54,13 @@ "desc": "APScheduler 定时任务插件", "name": "定时任务", "repo": "nonebot/plugin-apscheduler" + }, + { + "id": "nonebot_plugin_picsearcher", + "link": "nonebot-plugin-picsearcher", + "author": "synodriver", + "desc": "从基本上所有你想的出名字的搜图平台找图片", + "name": "图片搜索", + "repo": "synodriver/nonebot_plugin_picsearcher" } ] \ No newline at end of file From ae73facd893a7ac727a7ced477cccde7212d250a Mon Sep 17 00:00:00 2001 From: synodriver Date: Thu, 10 Dec 2020 08:38:28 +0000 Subject: [PATCH 2/4] =?UTF-8?q?:beers:=20publish=20=E9=80=9A=E7=94=A8?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E8=BF=9E=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/.vuepress/public/plugins.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/.vuepress/public/plugins.json b/docs/.vuepress/public/plugins.json index 5a1dc946..d932abfd 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -62,5 +62,13 @@ "desc": "从基本上所有你想的出名字的搜图平台找图片", "name": "图片搜索", "repo": "synodriver/nonebot_plugin_picsearcher" + }, + { + "id": "nonebot_plugin_navicat", + "link": "nonebot-plugin-navicat", + "author": "synodriver", + "desc": "连接至各种数据库,为其他插件导出连接对象", + "name": "通用数据库连接", + "repo": "synodriver/nonebot_plugin_navicat" } ] \ No newline at end of file From f5d3ae9efb8f1f0457ac24f12856996a89a4fbfb Mon Sep 17 00:00:00 2001 From: Lancercmd Date: Tue, 15 Dec 2020 05:43:04 +0000 Subject: [PATCH 3/4] :beers: publish translator --- docs/.vuepress/public/plugins.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/.vuepress/public/plugins.json b/docs/.vuepress/public/plugins.json index d932abfd..0e9abd39 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -70,5 +70,13 @@ "desc": "连接至各种数据库,为其他插件导出连接对象", "name": "通用数据库连接", "repo": "synodriver/nonebot_plugin_navicat" + }, + { + "id": "nonebot_plugin_translator", + "link": "nonebot-plugin-translator", + "author": "Lancercmd", + "desc": "多语种翻译插件", + "name": "translator", + "repo": "Lancercmd/nonebot_plugin_translator" } ] \ No newline at end of file From f53cf80221fdae89a5f0c2ccf137546d36662b13 Mon Sep 17 00:00:00 2001 From: jinser <46820840+jinserrr@users.noreply.github.com> Date: Tue, 29 Dec 2020 02:02:23 +0800 Subject: [PATCH 4/4] Update creating-a-plugin.md --- docs/guide/creating-a-plugin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/creating-a-plugin.md b/docs/guide/creating-a-plugin.md index 0a6678db..5ce12a28 100644 --- a/docs/guide/creating-a-plugin.md +++ b/docs/guide/creating-a-plugin.md @@ -82,10 +82,10 @@ foo 示例: ```python -from pydantic import BaseSetting +from pydantic import BaseSettings -class Config(BaseSetting): +class Config(BaseSettings): # plugin custom config plugin_setting: str = "default"