From 362b8724fc501780ca73ad112d89df6fa5c7b997 Mon Sep 17 00:00:00 2001 From: iyume Date: Tue, 9 Feb 2021 02:54:24 +0000 Subject: [PATCH 1/5] =?UTF-8?q?:beers:=20publish=20Arcaea=20=E6=9F=A5?= =?UTF-8?q?=E5=88=86=E5=99=A8?= 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 68fc621a..60ea9e26 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -134,5 +134,13 @@ "desc": "通过字符串标签管理字符串资源", "name": "风格化字符串管理", "repo": "jks15satoshi/nonebot_plugin_styledstr" + }, + { + "id": "nonebot_plugin_arcaea", + "link": "nonebot-plugin-arcaea", + "author": "iyume", + "desc": "Arcaea 查分器,可以实现 best30 | recent | songinfo 之类的查询功能并支持 DIY", + "name": "Arcaea 查分器", + "repo": "iyume/nonebot-plugin-arcaea" } ] \ No newline at end of file From ada964e5aa5cedc56ef4bf10dd04f987612b1a29 Mon Sep 17 00:00:00 2001 From: felinae98 Date: Tue, 9 Feb 2021 15:29:52 +0000 Subject: [PATCH 2/5] :beers: publish hk-reporter --- 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 60ea9e26..45de0c45 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -142,5 +142,13 @@ "desc": "Arcaea 查分器,可以实现 best30 | recent | songinfo 之类的查询功能并支持 DIY", "name": "Arcaea 查分器", "repo": "iyume/nonebot-plugin-arcaea" + }, + { + "id": "nonebot_hk_reporter", + "link": "nonebot-hk-reporter", + "author": "felinae98", + "desc": "订阅如微博,bilibili,rss的更新消息", + "name": "hk-reporter", + "repo": "felinae98/nonebot-hk-reporter" } ] \ No newline at end of file From f58eb61f2d0e8c7dd248960f9266eb072773dbb7 Mon Sep 17 00:00:00 2001 From: kitUIN Date: Sat, 13 Feb 2021 10:59:06 +0000 Subject: [PATCH 3/5] =?UTF-8?q?:beers:=20publish=20=E7=BD=91=E6=98=93?= =?UTF-8?q?=E4=BA=91=E6=97=A0=E6=8D=9F=E9=9F=B3=E4=B9=90=E4=B8=8B=E8=BD=BD?= 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 45de0c45..9560a091 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -150,5 +150,13 @@ "desc": "订阅如微博,bilibili,rss的更新消息", "name": "hk-reporter", "repo": "felinae98/nonebot-hk-reporter" + }, + { + "id": "nonebot-plugin-ncm", + "link": "nonebot-plugin-ncm", + "author": "kitUIN", + "desc": "网易云无损音乐下载", + "name": "网易云无损音乐下载", + "repo": "kitUIN/nonebot_tools/tree/master/nonebot_tools/src/nonebot-plugin-ncm" } ] \ No newline at end of file From e76430a43b04c08ff2100f6db415af3a361b2027 Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Wed, 17 Feb 2021 14:21:40 +0800 Subject: [PATCH 4/5] :pencil2: fix plugin ncm repo link --- docs/.vuepress/public/plugins.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vuepress/public/plugins.json b/docs/.vuepress/public/plugins.json index 9560a091..224d447e 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -157,6 +157,6 @@ "author": "kitUIN", "desc": "网易云无损音乐下载", "name": "网易云无损音乐下载", - "repo": "kitUIN/nonebot_tools/tree/master/nonebot_tools/src/nonebot-plugin-ncm" + "repo": "kitUIN/nonebot_tools/tree/master/nonebot_tools/nonebot-plugin-ncm" } -] \ No newline at end of file +] From 70581abcef07d78854b79efa46e1efd08094824f Mon Sep 17 00:00:00 2001 From: StarHeart Date: Wed, 17 Feb 2021 20:55:31 +0800 Subject: [PATCH 5/5] :memo: Add tips for IDE start-ups --- docs/guide/creating-a-project.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/guide/creating-a-project.md b/docs/guide/creating-a-project.md index 7c488a41..6fbf114b 100644 --- a/docs/guide/creating-a-project.md +++ b/docs/guide/creating-a-project.md @@ -34,6 +34,12 @@ AweSome-Bot ## 启动 Bot +:::warning 提示 +如果您使用如 `VSCode` / `PyCharm` 等 IDE 启动 nonebot,请检查 IDE 当前工作空间目录是否与当前侧边栏打开目录一致。 + +* 在二者不一致的环境下可能导致 nonebot 读取配置文件和插件等不符合预期 +::: + 通过 `nb-cli` ```bash