From dbfbbbc71151283396fe72a7b1c165fad8407136 Mon Sep 17 00:00:00 2001 From: Asankilp Date: Thu, 3 Oct 2024 02:05:57 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B0v0.2.3.3=EF=BC=8C=E9=BB=98=E8=AE=A4?= =?UTF-8?q?pagesize=E6=94=B9=E4=B8=BA10=EF=BC=8C=E7=BA=AF=E7=BA=AF?= =?UTF-8?q?=E7=9A=84=E6=B0=B4=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nonebot_plugin_acgnshow/config.py | 2 +- pyproject.toml | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/nonebot_plugin_acgnshow/config.py b/nonebot_plugin_acgnshow/config.py index 3b0c0ea..a46b781 100644 --- a/nonebot_plugin_acgnshow/config.py +++ b/nonebot_plugin_acgnshow/config.py @@ -9,7 +9,7 @@ BGIMAGE_PATH = RES_PATH / "bgimage" class ConfigModel(BaseModel): - acgnshow_pagesize: int = 8 + acgnshow_pagesize: int = 10 acgnshow_bgimage_path: str = BGIMAGE_PATH acgnshow_send_show_details_html: bool = False acgnshow_show_details_html_scale: float = 0.6 diff --git a/pyproject.toml b/pyproject.toml index b585313..ddee9de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [project] name = "nonebot-plugin-acgnshow" -version = "0.2.3.2" +version = "0.2.3.3" description = "Nonebot2插件,从哔哩哔哩会员购获取简易展览数据" readme = "README.md" requires-python = "<4.0,>=3.9" authors = [{ name = "Asankilp", email = "asankilp@outlook.com" }] dependencies = [ - "nonebot2[fastapi, websockets]>=2.2.0", + "nonebot2>=2.2.0", "nonebot-plugin-alconna>=0.48.0", "nonebot-plugin-htmlrender>=0.3.2", "jinja2>=3.1.4", @@ -20,10 +20,6 @@ Homepage = "https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow" [tool.nonebot] plugins = ["nonebot_plugin_acgnshow"] -adapters = [ - { name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" }, - -] [tool.pdm]