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]