diff --git a/docs/.vuepress/public/adapters.json b/docs/.vuepress/public/adapters.json index e05870ce..4788e1b2 100644 --- a/docs/.vuepress/public/adapters.json +++ b/docs/.vuepress/public/adapters.json @@ -22,5 +22,13 @@ "desc": "Mirai-Api-HTTP 协议", "author": "Mix", "repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-mirai" + }, + { + "id": "nonebot_adapter_gocq", + "link": "nonebot-adapter-gocq", + "name": "gocq", + "desc": "在原 CQHTTP Adapter 的基础上进行修改以便更好地适配 go-cqhttp", + "author": "Jigsaw111", + "repo": "Jigsaw111/nonebot-adapter-gocq" } -] +] \ No newline at end of file diff --git a/docs/.vuepress/public/bots.json b/docs/.vuepress/public/bots.json index ad37e766..ad7bbc8d 100644 --- a/docs/.vuepress/public/bots.json +++ b/docs/.vuepress/public/bots.json @@ -10,5 +10,11 @@ "desc": "B站推送Pixiv搜图识番求签抽卡表情包还有其他杂七杂八的功能", "author": "Ailitonia", "repo": "Ailitonia/omega-miya" + }, + { + "name": "Github Bot", + "desc": "在QQ获取/处理Github repo/pr/issue", + "author": "yanyongyu", + "repo": "cscs181/QQ-GitHub-Bot" } -] +] \ No newline at end of file diff --git a/docs/.vuepress/public/plugins.json b/docs/.vuepress/public/plugins.json index 39b9eede..efb49501 100644 --- a/docs/.vuepress/public/plugins.json +++ b/docs/.vuepress/public/plugins.json @@ -232,11 +232,43 @@ "repo": "nonebot/plugin-localstore" }, { - "id": "nonebot_plugin_todo", - "link": "nonebot-plugin-todo", - "name": "待办事项提醒(闹钟)", - "desc": "没十年脑血栓写不出的待办事项提醒", + "id": "nonebot_plugin_puppet", + "link": "nonebot-plugin-puppet", + "name": "nonebot_plugin_puppet", + "desc": "多对多的会话转接", "author": "Jigsaw111", - "repo": "https://github.com/Jigsaw111/nonebot_plugin_todo" + "repo": "Jigsaw111/nonebot_plugin_puppet" + }, + { + "id": "nonebot_plugin_mcstatus", + "link": "nonebot-plugin-mcstatus", + "name": "Minecraft 服务器状态查询", + "desc": "顾名思义", + "author": "Jigsaw111", + "repo": "Jigsaw111/nonebot-plugin-mcstatus" + }, + { + "id": "nonebot_plugin_help", + "link": "nonebot-plugin-help", + "name": "Nonebot2插件轻量帮助列表", + "desc": "读取并提供已加载Nonebot2插件开发者提供的帮助信息(用途)", + "author": "XZhouQD", + "repo": "https://github.com/XZhouQD/nonebot-plugin-help" + }, + { + "id": "nonebot_plugin_gamedraw", + "link": "nonebot-plugin-gamedraw", + "name": "nonebot_plugin_gamedraw", + "desc": "基于爬取bwiki实现自动更新的抽卡,目前支持赛马娘,原神,明日方舟", + "author": "HibiKier", + "repo": "https://github.com/HibiKier/nonebot_plugin_gamedraw" + }, + { + "id": "nonebot_plugin_alias", + "link": "nonebot-plugin-alias", + "name": "nonebot-plugin-alias", + "desc": "为 nonebot2 的指令创建别名", + "author": "MeetWq", + "repo": "https://github.com/MeetWq/nonebot-plugin-alias" } ] \ No newline at end of file diff --git a/docs/guide/mirai-guide.md b/docs/guide/mirai-guide.md index 45eefeb5..ff977626 100644 --- a/docs/guide/mirai-guide.md +++ b/docs/guide/mirai-guide.md @@ -124,6 +124,7 @@ pip install nonebot-adapter-mirai MIRAI_AUTH_KEY=1234567890 MIRAI_HOST=127.0.0.1 # 当MAH运行在本机时 MIRAI_PORT=8080 # MAH的监听端口 + PORT=2333 # 防止与MAH接口冲突 ``` - `bot.py`文件 @@ -170,7 +171,7 @@ pip install nonebot-adapter-mirai - ```shell HOST=127.0.0.1 # 当MAH运行在本机时 - PORT=2333 + PORT=2333 # 防止与MAH接口冲突 MIRAI_AUTH_KEY=1234567890 MIRAI_HOST=127.0.0.1 # 当MAH运行在本机时