🔖 更新4.6.1

This commit is contained in:
KimigaiiWuyi 2024-05-16 04:43:03 +08:00
parent ec59143a03
commit 60798d9b30
2 changed files with 11 additions and 1 deletions

View File

@ -12,6 +12,7 @@ from nonebot.log import logger
from nonebot.adapters import Bot from nonebot.adapters import Bot
from nonebot.matcher import Matcher from nonebot.matcher import Matcher
from nonebot.permission import SUPERUSER from nonebot.permission import SUPERUSER
from nonebot.plugin import PluginMetadata
from nonebot.internal.adapter import Event from nonebot.internal.adapter import Event
from websockets.exceptions import ConnectionClosed from websockets.exceptions import ConnectionClosed
from nonebot import on, require, on_notice, on_message, on_fullmatch from nonebot import on, require, on_notice, on_message, on_fullmatch
@ -43,6 +44,15 @@ connect_core = on_fullmatch(
block=True, block=True,
) )
__plugin_meta__ = PluginMetadata(
name="GenshinUID",
description="SayuCore连接器, 支持大部分适配器的全功能插件",
usage="支持大部分适配器连接SayuCore",
type="application",
homepage="https://docs.sayu-bot.com",
supported_adapters=None,
)
gsclient: Optional[GsClient] = None gsclient: Optional[GsClient] = None
command_start = deepcopy(driver.config.command_start) command_start = deepcopy(driver.config.command_start)
command_start.discard('') command_start.discard('')

View File

@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry] [tool.poetry]
name = "nonebot-plugin-genshinuid" name = "nonebot-plugin-genshinuid"
version = "4.6.0" version = "4.6.1"
description = "支持OneBot(QQ)、OneBotV12、QQ频道、微信、KOOK开黑啦、Telegram电报、FeiShu飞书、DoDo、Villa米游社大别野、Discord的全功能NoneBot2原神插件" description = "支持OneBot(QQ)、OneBotV12、QQ频道、微信、KOOK开黑啦、Telegram电报、FeiShu飞书、DoDo、Villa米游社大别野、Discord的全功能NoneBot2原神插件"
authors = ["KimigaiiWuyi <444835641@qq.com>"] authors = ["KimigaiiWuyi <444835641@qq.com>"]
license = "GPL-3.0-or-later" license = "GPL-3.0-or-later"