🏗️ change doc theme
@ -1,286 +0,0 @@
|
||||
const path = require("path");
|
||||
|
||||
module.exports = (context) => ({
|
||||
base: process.env.VUEPRESS_BASE || "/",
|
||||
title: "NoneBot",
|
||||
description: "跨平台 Python 异步 QQ 机器人框架",
|
||||
markdown: {
|
||||
lineNumbers: true,
|
||||
},
|
||||
/**
|
||||
* Extra tags to be injected to the page HTML `<head>`
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/config/#head
|
||||
*/
|
||||
head: [
|
||||
["link", { rel: "icon", href: "/logo.png" }],
|
||||
["link", { rel: "manifest", href: "/manifest.json" }],
|
||||
["meta", { name: "theme-color", content: "#ea5252" }],
|
||||
["meta", { name: "application-name", content: "NoneBot" }],
|
||||
["meta", { name: "apple-mobile-web-app-title", content: "NoneBot" }],
|
||||
["meta", { name: "apple-mobile-web-app-capable", content: "yes" }],
|
||||
[
|
||||
"meta",
|
||||
{ name: "apple-mobile-web-app-status-bar-style", content: "black" },
|
||||
],
|
||||
[
|
||||
"link",
|
||||
{ rel: "apple-touch-icon", href: "/icons/apple-touch-icon-180x180.png" },
|
||||
],
|
||||
[
|
||||
"link",
|
||||
{
|
||||
rel: "mask-icon",
|
||||
href: "/icons/safari-pinned-tab.svg",
|
||||
color: "#ea5252",
|
||||
},
|
||||
],
|
||||
[
|
||||
"meta",
|
||||
{
|
||||
name: "msapplication-TileImage",
|
||||
content: "/icons/mstile-150x150.png",
|
||||
},
|
||||
],
|
||||
["meta", { name: "msapplication-TileColor", content: "#ea5252" }],
|
||||
[
|
||||
"link",
|
||||
{
|
||||
rel: "stylesheet",
|
||||
href:
|
||||
"https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5/css/all.min.css",
|
||||
},
|
||||
],
|
||||
],
|
||||
locales: {
|
||||
"/": {
|
||||
lang: "zh-CN",
|
||||
title: "NoneBot",
|
||||
description: "跨平台 Python 异步 QQ 机器人框架",
|
||||
},
|
||||
},
|
||||
|
||||
theme: "nonebot",
|
||||
themeConfig: {
|
||||
logo: "/logo.png",
|
||||
repo: "nonebot/nonebot2",
|
||||
docsDir: "docs",
|
||||
docsBranch: "dev",
|
||||
docsDirVersioned: "archive",
|
||||
docsDirPages: "pages",
|
||||
editLinks: true,
|
||||
smoothScroll: true,
|
||||
|
||||
algolia: {
|
||||
apiKey: "ef449608d0ad6e81b9efd05db6367040",
|
||||
indexName: "nonebot",
|
||||
algoliaOptions: {
|
||||
facetFilters: ["lang:zh-CN"],
|
||||
},
|
||||
},
|
||||
|
||||
locales: {
|
||||
"/": {
|
||||
label: "简体中文",
|
||||
selectText: "Languages",
|
||||
editLinkText: "在 GitHub 上编辑此页",
|
||||
lastUpdated: "上次更新",
|
||||
nav: [
|
||||
{ text: "主页", link: "/" },
|
||||
{ text: "指南", link: "/guide/" },
|
||||
{ text: "进阶", link: "/advanced/" },
|
||||
{ text: "API", link: "/api/" },
|
||||
{ text: "商店", link: "/store" },
|
||||
{ text: "更新日志", link: "/changelog" },
|
||||
],
|
||||
sidebarDepth: 2,
|
||||
sidebar: {
|
||||
"/guide/": [
|
||||
{
|
||||
title: "开始",
|
||||
collapsable: false,
|
||||
sidebar: "auto",
|
||||
children: [
|
||||
"",
|
||||
"installation",
|
||||
"getting-started",
|
||||
"creating-a-project",
|
||||
"basic-configuration",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "编写插件",
|
||||
collapsable: false,
|
||||
sidebar: "auto",
|
||||
children: [
|
||||
"loading-a-plugin",
|
||||
"creating-a-plugin",
|
||||
"creating-a-matcher",
|
||||
"creating-a-handler",
|
||||
"end-or-start",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "协议适配",
|
||||
collapsable: false,
|
||||
sidebar: "auto",
|
||||
children: [
|
||||
"cqhttp-guide",
|
||||
"ding-guide",
|
||||
"mirai-guide",
|
||||
"feishu-guide",
|
||||
],
|
||||
},
|
||||
],
|
||||
"/advanced/": [
|
||||
{
|
||||
title: "进阶",
|
||||
collapsable: false,
|
||||
sidebar: "auto",
|
||||
children: [
|
||||
"",
|
||||
"scheduler",
|
||||
"permission",
|
||||
"runtime-hook",
|
||||
"export-and-require",
|
||||
"overloaded-handlers",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "发布",
|
||||
collapsable: false,
|
||||
sidebar: "auto",
|
||||
children: ["publish-plugin"],
|
||||
},
|
||||
],
|
||||
"/api/": [
|
||||
{
|
||||
title: "NoneBot Api Reference",
|
||||
path: "",
|
||||
collapsable: false,
|
||||
children: [
|
||||
{
|
||||
title: "nonebot 模块",
|
||||
path: "nonebot",
|
||||
},
|
||||
{
|
||||
title: "nonebot.config 模块",
|
||||
path: "config",
|
||||
},
|
||||
{
|
||||
title: "nonebot.plugin 模块",
|
||||
path: "plugin",
|
||||
},
|
||||
{
|
||||
title: "nonebot.message 模块",
|
||||
path: "message",
|
||||
},
|
||||
{
|
||||
title: "nonebot.matcher 模块",
|
||||
path: "matcher",
|
||||
},
|
||||
{
|
||||
title: "nonebot.handler 模块",
|
||||
path: "handler",
|
||||
},
|
||||
{
|
||||
title: "nonebot.rule 模块",
|
||||
path: "rule",
|
||||
},
|
||||
{
|
||||
title: "nonebot.permission 模块",
|
||||
path: "permission",
|
||||
},
|
||||
{
|
||||
title: "nonebot.log 模块",
|
||||
path: "log",
|
||||
},
|
||||
{
|
||||
title: "nonebot.utils 模块",
|
||||
path: "utils",
|
||||
},
|
||||
{
|
||||
title: "nonebot.typing 模块",
|
||||
path: "typing",
|
||||
},
|
||||
{
|
||||
title: "nonebot.exception 模块",
|
||||
path: "exception",
|
||||
},
|
||||
{
|
||||
title: "nonebot.drivers 模块",
|
||||
path: "drivers/",
|
||||
},
|
||||
{
|
||||
title: "nonebot.drivers.fastapi 模块",
|
||||
path: "drivers/fastapi",
|
||||
},
|
||||
{
|
||||
title: "nonebot.drivers.quart 模块",
|
||||
path: "drivers/quart",
|
||||
},
|
||||
{
|
||||
title: "nonebot.drivers.aiohttp 模块",
|
||||
path: "drivers/aiohttp",
|
||||
},
|
||||
{
|
||||
title: "nonebot.adapters 模块",
|
||||
path: "adapters/",
|
||||
},
|
||||
{
|
||||
title: "nonebot.adapters.cqhttp 模块",
|
||||
path: "adapters/cqhttp",
|
||||
},
|
||||
{
|
||||
title: "nonebot.adapters.ding 模块",
|
||||
path: "adapters/ding",
|
||||
},
|
||||
{
|
||||
title: "nonebot.adapters.mirai 模块",
|
||||
path: "adapters/mirai",
|
||||
},
|
||||
{
|
||||
title: "nonebot.adapters.feishu 模块",
|
||||
path: "adapters/feishu",
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
plugins: [
|
||||
"@vuepress/plugin-back-to-top",
|
||||
"@vuepress/plugin-medium-zoom",
|
||||
[
|
||||
"@vuepress/pwa",
|
||||
{
|
||||
serviceWorker: true,
|
||||
updatePopup: {
|
||||
message: "发现新内容",
|
||||
buttonText: "刷新",
|
||||
},
|
||||
},
|
||||
],
|
||||
[
|
||||
"versioning",
|
||||
{
|
||||
versionedSourceDir: path.resolve(context.sourceDir, "..", "archive"),
|
||||
pagesSourceDir: path.resolve(context.sourceDir, "..", "pages"),
|
||||
onNewVersion(version, versionDestPath) {
|
||||
console.log(`Created version ${version} in ${versionDestPath}`);
|
||||
},
|
||||
},
|
||||
],
|
||||
[
|
||||
"container",
|
||||
{
|
||||
type: "vue",
|
||||
before: '<pre class="vue-container"><code>',
|
||||
after: "</code></pre>",
|
||||
},
|
||||
],
|
||||
],
|
||||
});
|
@ -1,42 +0,0 @@
|
||||
/**
|
||||
* Client app enhancement file.
|
||||
*
|
||||
* https://v1.vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements
|
||||
*/
|
||||
|
||||
import Vuetify from "vuetify";
|
||||
import "vuetify/dist/vuetify.min.css";
|
||||
|
||||
export default ({
|
||||
Vue, // the version of Vue being used in the VuePress app
|
||||
options, // the options for the root Vue instance
|
||||
router, // the router instance for the app
|
||||
siteData // site metadata
|
||||
}) => {
|
||||
Vue.use(Vuetify);
|
||||
options.vuetify = new Vuetify({
|
||||
icons: {
|
||||
iconfont: "fa",
|
||||
values: {
|
||||
//
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
if (typeof process === "undefined" || process.env.VUE_ENV !== "server") {
|
||||
router.onReady(() => {
|
||||
const { app } = router;
|
||||
app.$once("hook:mounted", () => {
|
||||
// temporary fix for https://github.com/vuejs/vuepress/issues/2428
|
||||
setTimeout(() => {
|
||||
const { hash } = document.location;
|
||||
if (hash.length > 1) {
|
||||
const id = decodeURI(hash.substring(1));
|
||||
const element = document.getElementById(id);
|
||||
if (element) element.scrollIntoView();
|
||||
}
|
||||
}, 500);
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
@ -1,34 +0,0 @@
|
||||
[
|
||||
{
|
||||
"id": "nonebot.adapters.cqhttp",
|
||||
"link": "nonebot-adapter-cqhttp",
|
||||
"name": "cqhttp",
|
||||
"desc": "OneBot(CQHTTP) 协议",
|
||||
"author": "yanyongyu",
|
||||
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-cqhttp"
|
||||
},
|
||||
{
|
||||
"id": "nonebot.adapters.ding",
|
||||
"link": "nonebot-adapter-ding",
|
||||
"name": "ding",
|
||||
"desc": "钉钉协议",
|
||||
"author": "Artin",
|
||||
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-ding"
|
||||
},
|
||||
{
|
||||
"id": "nonebot.adapters.mirai",
|
||||
"link": "nonebot-adapter-mirai",
|
||||
"name": "mirai",
|
||||
"desc": "Mirai-Api-HTTP 协议",
|
||||
"author": "Mix",
|
||||
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-mirai"
|
||||
},
|
||||
{
|
||||
"id": "nonebot.adapters.feishu",
|
||||
"link": "nonebot-adapter-feishu",
|
||||
"name": "feishu",
|
||||
"desc": "飞书协议",
|
||||
"author": "StarHeartHunt",
|
||||
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-adapter-feishu"
|
||||
}
|
||||
]
|
@ -1,62 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "HarukaBot",
|
||||
"desc": "将B站UP主的动态和直播信息推送至QQ",
|
||||
"author": "SK-415",
|
||||
"repo": "SK-415/HarukaBot"
|
||||
},
|
||||
{
|
||||
"name": "Omega Miya",
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"name": "YanXiBot",
|
||||
"desc": "动漫资源查找与娱乐机器人",
|
||||
"author": "Melodyknit",
|
||||
"repo": "https://github.com/Melodyknit/YanXiBot"
|
||||
},
|
||||
{
|
||||
"name": "绪山真寻bot",
|
||||
"desc": "含有不少的娱乐功能同时稍稍有一些实用的功能 :P",
|
||||
"author": "HibiKier",
|
||||
"repo": "https://github.com/HibiKier/zhenxun_bot"
|
||||
},
|
||||
{
|
||||
"name": "ATRI",
|
||||
"desc": "高性能文爱萝卜子,糅杂了各类有趣小功能",
|
||||
"author": "Kyomotoi",
|
||||
"repo": "https://github.com/Kyomotoi/ATRI"
|
||||
},
|
||||
{
|
||||
"name": "dumbot傻瓜机器人",
|
||||
"desc": "猜一猜游戏、新闻一览、英文每日一词一短语等等,含一键启动及docker容器部署就绪",
|
||||
"author": "ffreemt",
|
||||
"repo": "https://github.com/ffreemt/koyeb-nb2"
|
||||
},
|
||||
{
|
||||
"name": "DicePP",
|
||||
"desc": "TRPG骰娘, 带先攻, 查询等功能, 主要面向DND5E. 面对骰主推出的船新版本, 内置Windows/Linux详细部署指南以及方便的自定义骰娘方法, 从回复文本到查询资料库都可轻松配置~",
|
||||
"author": "pear-studio",
|
||||
"repo": "https://github.com/pear-studio/nonebot-dicepp"
|
||||
},
|
||||
{
|
||||
"name": "SetuBot",
|
||||
"desc": "每个群配置文件独立,可以控制频率,socks http代理,R18开关,支持多tag,自建API lolicon Pixiv热度榜",
|
||||
"author": "yuban10703",
|
||||
"repo": "https://github.com/yuban10703/setu-nonebot2"
|
||||
},
|
||||
{
|
||||
"name": "Takker",
|
||||
"desc": "综合了各种娱乐功能的Bot",
|
||||
"author": "FYWinds",
|
||||
"repo": "https://github.com/FYWinds/takker"
|
||||
}
|
||||
]
|
Before Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 626 B |
Before Width: | Height: | Size: 1008 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 3.0 KiB |
@ -1,29 +0,0 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="500.000000pt" height="500.000000pt" viewBox="0 0 500.000000 500.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
<metadata>
|
||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
||||
</metadata>
|
||||
<g transform="translate(0.000000,500.000000) scale(0.100000,-0.100000)"
|
||||
fill="#000000" stroke="none">
|
||||
<path d="M2478 4525 c-2 -1 -57 -5 -122 -9 -65 -4 -122 -8 -125 -10 -3 -2 -30
|
||||
-7 -60 -11 -141 -18 -404 -102 -561 -180 -68 -34 -238 -132 -250 -145 -3 -3
|
||||
-32 -25 -65 -49 -246 -182 -465 -442 -604 -719 -212 -422 -271 -933 -159
|
||||
-1377 11 -44 21 -88 23 -97 8 -38 86 -238 120 -308 206 -415 542 -749 952
|
||||
-945 90 -43 265 -111 309 -119 11 -2 48 -12 84 -21 82 -21 94 -24 155 -31 28
|
||||
-4 53 -8 56 -10 11 -6 172 -17 264 -17 88 -1 239 9 282 17 11 3 43 8 70 12
|
||||
280 40 611 181 855 363 118 87 221 181 311 284 173 195 309 424 392 657 14 41
|
||||
28 82 30 90 2 8 13 51 25 95 25 93 27 103 34 159 3 22 8 52 11 65 9 46 16 166
|
||||
17 276 1 704 -363 1359 -960 1728 -201 125 -484 234 -677 263 -16 3 -52 9 -79
|
||||
15 -27 5 -92 12 -145 15 -53 3 -115 7 -138 8 -23 2 -43 2 -45 1z m162 -89
|
||||
c691 -39 1330 -482 1622 -1121 74 -163 137 -364 152 -490 4 -27 9 -63 11 -80
|
||||
17 -106 21 -305 10 -430 -8 -84 -49 -307 -60 -325 -2 -4 -6 -20 -9 -36 -3 -17
|
||||
-23 -77 -44 -135 -194 -521 -605 -937 -1124 -1135 -562 -214 -1202 -155 -1713
|
||||
160 -317 195 -564 466 -735 806 -60 120 -141 358 -156 465 -3 17 -9 55 -15 85
|
||||
-11 61 -23 217 -22 295 3 525 201 1002 571 1373 340 340 782 542 1247 568 55
|
||||
3 101 7 102 8 2 1 20 1 40 0 21 -2 76 -5 123 -8z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 9.2 KiB |
@ -1,20 +0,0 @@
|
||||
{
|
||||
"name": "NoneBot",
|
||||
"short_name": "NoneBot",
|
||||
"background-color": "#ffffff",
|
||||
"theme-color": "#ea5252",
|
||||
"description": "跨平台 Python 异步 QQ 机器人框架",
|
||||
"display": "standalone",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/icons/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/icons/android-chrome-384x384.png",
|
||||
"sizes": "384x384",
|
||||
"type": "image/png"
|
||||
}
|
||||
]
|
||||
}
|
@ -1,418 +0,0 @@
|
||||
[
|
||||
{
|
||||
"id": "nonebot_plugin_status",
|
||||
"link": "nonebot-plugin-status",
|
||||
"name": "服务器状态查看",
|
||||
"desc": "通过戳一戳获取服务器状态",
|
||||
"author": "yanyongyu",
|
||||
"repo": "cscs181/QQ-GitHub-Bot/tree/master/src/plugins/nonebot_plugin_status"
|
||||
},
|
||||
{
|
||||
"id": "haruka_bot",
|
||||
"link": "haruka-bot",
|
||||
"name": "HarukaBot",
|
||||
"desc": "将B站UP主的动态和直播信息推送至QQ",
|
||||
"author": "SK-415",
|
||||
"repo": "SK-415/HarukaBot"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_rauthman",
|
||||
"link": "nonebot-plugin-rauthman",
|
||||
"name": "RAM 授权管理",
|
||||
"desc": "基于规则的授权管理",
|
||||
"author": "Lancercmd",
|
||||
"repo": "Lancercmd/nonebot_plugin_rauthman"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_docs",
|
||||
"link": "nonebot-plugin-docs",
|
||||
"author": "nonebot",
|
||||
"desc": "在本地浏览NoneBot文档",
|
||||
"name": "NoneBot离线文档",
|
||||
"repo": "nonebot/nonebot2/tree/master/packages/nonebot-plugin-docs"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_sentry",
|
||||
"link": "nonebot-plugin-sentry",
|
||||
"author": "yanyongyu",
|
||||
"desc": "使用Sentry监控机器人日志并处理报错",
|
||||
"name": "Sentry日志监控",
|
||||
"repo": "cscs181/QQ-GitHub-Bot/tree/master/src/plugins/nonebot_plugin_sentry"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_test",
|
||||
"link": "nonebot-plugin-test",
|
||||
"author": "yanyongyu",
|
||||
"desc": "在浏览器中测试你的 NoneBot 机器人",
|
||||
"name": "前端测试机器人插件",
|
||||
"repo": "nonebot/plugin-test"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_apscheduler",
|
||||
"link": "nonebot-plugin-apscheduler",
|
||||
"author": "yanyongyu",
|
||||
"desc": "APScheduler 定时任务插件",
|
||||
"name": "定时任务",
|
||||
"repo": "nonebot/plugin-apscheduler"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_picsearcher",
|
||||
"link": "nonebot-plugin-picsearcher",
|
||||
"author": "synodriver",
|
||||
"desc": "从基本上所有你想的出名字的搜图平台找图片",
|
||||
"name": "图片搜索",
|
||||
"repo": "synodriver/nonebot_plugin_picsearcher"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_navicat",
|
||||
"link": "nonebot-plugin-navicat",
|
||||
"author": "synodriver",
|
||||
"desc": "连接至各种数据库,为其他插件导出连接对象",
|
||||
"name": "通用数据库连接",
|
||||
"repo": "synodriver/nonebot_plugin_navicat"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_translator",
|
||||
"link": "nonebot-plugin-translator",
|
||||
"author": "Lancercmd",
|
||||
"desc": "基于腾讯机器翻译 TMT",
|
||||
"name": "多语种翻译插件",
|
||||
"repo": "Lancercmd/nonebot_plugin_translator"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_web",
|
||||
"link": "nonebot-plugin-web",
|
||||
"author": "abrahum",
|
||||
"desc": "Web Monitor 时刻视奸你的bot",
|
||||
"name": "Web监视器",
|
||||
"repo": "abrahum/nonebot_plugin_web"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_wordbank",
|
||||
"link": "nonebot-plugin-wordbank",
|
||||
"author": "Joenothing-lst",
|
||||
"desc": "无数据库的轻量问答插件,支持模糊问答",
|
||||
"name": "nonebot-plugin-wordbank",
|
||||
"repo": "Joenothing-lst/word-bank"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_cooldown",
|
||||
"link": "nonebot-plugin-cooldown",
|
||||
"author": "jks15satoshi",
|
||||
"desc": "为用户调用功能添加冷却时间(调用频率限制)功能",
|
||||
"name": "冷却事件",
|
||||
"repo": "jks15satoshi/nonebot-plugin-cooldown"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_mqtt",
|
||||
"link": "nonebot-plugin-mqtt",
|
||||
"author": "synodriver",
|
||||
"desc": "接入mqtt网络,订阅和发布消息",
|
||||
"name": "mqtt接入",
|
||||
"repo": "synodriver/nonebot_plugin_mqtt"
|
||||
},
|
||||
{
|
||||
"id": "nonebot-plugin-ipypreter",
|
||||
"link": "nonebot-plugin-ipypreter",
|
||||
"author": "iyume",
|
||||
"desc": "消息交互式 python 解释器",
|
||||
"name": "消息交互式 python 解释器",
|
||||
"repo": "iyume/nonebot-plugin-ipypreter"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_songpicker2",
|
||||
"link": "nonebot-plugin-songpicker2",
|
||||
"author": "maxesisn",
|
||||
"desc": "点播歌曲,支持候选菜单、热评显示,数据源为网易云",
|
||||
"name": "songpicker2",
|
||||
"repo": "maxesisn/nonebot_plugin_songpicker2"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_styledstr",
|
||||
"link": "nonebot-plugin-styledstr",
|
||||
"author": "jks15satoshi",
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_hk_reporter",
|
||||
"link": "nonebot-hk-reporter",
|
||||
"author": "felinae98",
|
||||
"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/nonebot-plugin-ncm"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_cocdicer",
|
||||
"link": "nonebot-plugin-cocdicer",
|
||||
"author": "abrahum",
|
||||
"desc": "COC跑团骰子娘",
|
||||
"name": "nonebot-plugin-cocdicer",
|
||||
"repo": "abrahum/nonebot_plugin_cocdicer"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_trpglogger",
|
||||
"link": "nonebot-plugin-trpglogger",
|
||||
"author": "Jigsaw111",
|
||||
"desc": "记录跑团记录并上传",
|
||||
"name": "跑团记录记录器",
|
||||
"repo": "thereisnodice/TRPGLogger"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_r6s",
|
||||
"link": "nonebot-plugin-r6s",
|
||||
"author": "abrahum",
|
||||
"desc": "查询彩虹六号玩家信息",
|
||||
"name": "nonebot-plugin-r6s",
|
||||
"repo": "abrahum/nonebot_plugin_r6s"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_guess",
|
||||
"link": "nonebot-plugin-guess",
|
||||
"author": "ffreemt",
|
||||
"desc": "多次互动猜名字游戏,自带猜城市名,可定制",
|
||||
"name": "猜猜看",
|
||||
"repo": "ffreemt/nonebot-plugin-guess-game"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_abbrreply",
|
||||
"link": "nonebot_plugin_abbrreply",
|
||||
"author": "anlen123",
|
||||
"desc": "输入拼音首字母,猜测文字",
|
||||
"name": "缩写查询器",
|
||||
"repo": "anlen123/nonebot_plugin_abbrreply"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_biliav",
|
||||
"link": "nonebot_plugin_biliav",
|
||||
"author": "knva",
|
||||
"desc": "将用户发的av号或者bv号转成小程序返回",
|
||||
"name": "biliav小程序转换器",
|
||||
"repo": "knva/nonebot_plugin_biliav"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_manager",
|
||||
"link": "nonebot-plugin-manager",
|
||||
"name": "插件管理器",
|
||||
"desc": "基于 import hook 的插件管理",
|
||||
"author": "Jigsaw111",
|
||||
"repo": "Jigsaw111/nonebot_plugin_manager"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_analysis_bilibili",
|
||||
"link": "nonebot-plugin-analysis-bilibili",
|
||||
"name": "bilibili视频、番剧解析",
|
||||
"desc": "自动解析bilibili视频、番剧解析",
|
||||
"author": "mengshouer",
|
||||
"repo": "mengshouer/nonebot_plugin_analysis_bilibili"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_localstore",
|
||||
"link": "nonebot-plugin-localstore",
|
||||
"name": "本地数据存储",
|
||||
"desc": "存储插件数据至本地文件",
|
||||
"author": "yanyongyu",
|
||||
"repo": "nonebot/plugin-localstore"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_puppet",
|
||||
"link": "nonebot-plugin-puppet",
|
||||
"name": "nonebot_plugin_puppet",
|
||||
"desc": "多对多的会话转接",
|
||||
"author": "Jigsaw111",
|
||||
"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": "基于爬取wiki实现自动更新的抽卡,目前支持赛马娘,原神,明日方舟,坎公骑冠剑,公主连结(国/台),碧蓝航线,FGO,阴阳师",
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_withdraw",
|
||||
"link": "nonebot-plugin-withdraw",
|
||||
"name": "Nonebot2 消息撤回插件",
|
||||
"desc": "用于让机器人撤回自己发出的消息",
|
||||
"author": "MeetWq",
|
||||
"repo": "https://github.com/MeetWq/nonebot-plugin-withdraw"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_pixivrank_search",
|
||||
"link": "nonebot-plugin-pixivrank-search",
|
||||
"name": "nonebot_plugin_pixivrank_search",
|
||||
"desc": "基于RSSHUB阅读器的P站排行和P站搜图",
|
||||
"author": "HibiKier",
|
||||
"repo": "https://github.com/HibiKier/nonebot_plugin_pixivrank_search"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_russian",
|
||||
"link": "nonebot-plugin-russian",
|
||||
"name": "nonebot_plugin_russian",
|
||||
"desc": "群内小游戏,使用金币赌注的俄罗斯轮盘",
|
||||
"author": "HibiKier",
|
||||
"repo": "https://github.com/HibiKier/nonebot_plugin_russian"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_statistical",
|
||||
"link": "nonebot-plugin-statistical",
|
||||
"name": "nonebot_plugin_statistical",
|
||||
"desc": "一个简单的功能调用统计以及可视化插件",
|
||||
"author": "HibiKier",
|
||||
"repo": "https://github.com/HibiKier/nonebot_plugin_statistical"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_setu",
|
||||
"link": "nonebot_plugin_setu",
|
||||
"name": "nonebot_plugin_setu",
|
||||
"desc": "基于loliconImage Api的涩图插件,内置涩图CD",
|
||||
"author": "ayanamiblhx",
|
||||
"repo": "https://github.com/ayanamiblhx/nonebot_plugin_setu"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_fr24",
|
||||
"link": "nonebot-plugin-fr24",
|
||||
"name": "FlightRadar24查询模块",
|
||||
"desc": "通过FlightRadar24查询航班信息",
|
||||
"author": "IronWolf-K",
|
||||
"repo": "https://github.com/IronWolf-K/nonebot_plugin_fr24"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_heweather",
|
||||
"link": "nonebot-plugin-heweather",
|
||||
"name": "和风天气",
|
||||
"desc": "获取和风天气信息并转换为图片",
|
||||
"author": "kexue-z",
|
||||
"repo": "https://github.com/kexue-z/nonebot-plugin-heweather"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_autohelp",
|
||||
"link": "nonebot-plugin-autohelp",
|
||||
"name": "nonebot-plugin-autohelp",
|
||||
"desc": "响应help/菜单/帮助(群消息或私信)并提供已载入插件的帮助信息(如命令名,aliases,模块文档)",
|
||||
"author": "ffreemt",
|
||||
"repo": "https://github.com/ffreemt/nonebot-plugin-autohelp"
|
||||
},
|
||||
{
|
||||
"id": "gugua_bot",
|
||||
"link": "gugua_bot",
|
||||
"name": "孤寡机器人",
|
||||
"desc": "让你的孤寡朋友露出阳光的笑容",
|
||||
"author": "Sclock",
|
||||
"repo": "https://github.com/Sclock/gugua"
|
||||
},
|
||||
{
|
||||
"id": "bugu_bot",
|
||||
"link": "bugu_bot",
|
||||
"name": "布谷机器人",
|
||||
"desc": "增进你和你单身朋友的友谊",
|
||||
"author": "Sclock",
|
||||
"repo": "https://github.com/Sclock/bugu_bot"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_flexperm",
|
||||
"link": "nonebot-plugin-flexperm",
|
||||
"name": "nonebot-plugin-flexperm",
|
||||
"desc": "精细化的 NoneBot 权限管理插件",
|
||||
"author": "rmuchan",
|
||||
"repo": "https://github.com/rmuchan/nonebot-plugin-flexperm"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_epicfree",
|
||||
"link": "nonebot_plugin_epicfree",
|
||||
"name": "Epic 限免游戏资讯",
|
||||
"desc": "EpicGameStore 喜加一资讯插件,发送「喜加一」逝世看吧!",
|
||||
"author": "monsterxcn",
|
||||
"repo": "https://github.com/monsterxcn/nonebot_plugin_epicfree"
|
||||
},
|
||||
{
|
||||
"id": "ELF_RSS2",
|
||||
"link": "ELF-RSS",
|
||||
"name": "ELF_RSS",
|
||||
"desc": "QQ机器人 RSS订阅 插件,订阅源建议选择 RSSHub",
|
||||
"author": "Quan666",
|
||||
"repo": "https://github.com/Quan666/ELF_RSS"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_atri",
|
||||
"link": "nonebot-plugin-atri",
|
||||
"name": "ATRI语音包",
|
||||
"desc": "一个ATRI语音包,基于文本相似度匹配回复",
|
||||
"author": "FYWinds",
|
||||
"repo": "https://github.com/FYWinds/nonebot-plugin-atri"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_hanayori",
|
||||
"link": "nonebot-plugin-hanayori",
|
||||
"name": "HanayoriBot",
|
||||
"desc": "B站动态推送与开播提醒插件",
|
||||
"author": "kanomahoro",
|
||||
"repo": "https://github.com/kanomahoro/nonebot-hanayori"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_filehost",
|
||||
"link": "nonebot-plugin-filehost",
|
||||
"name": "HTTP静态文件托管",
|
||||
"desc": "一款 HTTP 静态文件托管插件, 为跨机文件传输提供了优雅的解决方案",
|
||||
"author": "mnixry",
|
||||
"repo": "https://github.com/mnixry/nonebot-plugin-filehost"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_simplemusic",
|
||||
"link": "nonebot-plugin-simplemusic",
|
||||
"name": "SimpleMusic",
|
||||
"desc": "最简Q群点歌插件,支持网易云、QQ音乐",
|
||||
"author": "kanomahoro",
|
||||
"repo": "https://github.com/kanomahoro/nonebot-simplemusic"
|
||||
},
|
||||
{
|
||||
"id": "nonebot_plugin_phlogo",
|
||||
"link": "nonebot-plugin-phlogo",
|
||||
"name": "pornhub风格图标生成",
|
||||
"desc": "生成pornhub风格logo",
|
||||
"author": "kexue-z",
|
||||
"repo": "https://github.com/kexue-z/nonebot-plugin-phlogo"
|
||||
}
|
||||
]
|
@ -1,8 +0,0 @@
|
||||
/**
|
||||
* Custom Styles here.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/config/#index-styl
|
||||
*/
|
||||
|
||||
.home .hero img
|
||||
max-width 450px!important
|
@ -1,10 +0,0 @@
|
||||
/**
|
||||
* Custom palette here.
|
||||
*
|
||||
* ref:https://v1.vuepress.vuejs.org/zh/config/#palette-styl
|
||||
*/
|
||||
|
||||
$accentColor = #ea5252
|
||||
$textColor = #2c3e50
|
||||
$borderColor = #eaecef
|
||||
$codeBgColor = #282c34
|
@ -1,5 +0,0 @@
|
||||
[
|
||||
"2.0.0a16",
|
||||
"2.0.0a15",
|
||||
"2.0.0a13.post1"
|
||||
]
|