diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index cfaa00e26..7a8985242 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -5,7 +5,7 @@ import os from astrbot.core.utils.astrbot_path import get_astrbot_data_path -VERSION = "3.5.8" +VERSION = "3.5.9" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v3.db") # 默认配置 diff --git a/changelogs/v3.5.9.md b/changelogs/v3.5.9.md new file mode 100644 index 000000000..a5a803773 --- /dev/null +++ b/changelogs/v3.5.9.md @@ -0,0 +1,13 @@ +# What's Changed + +3. 重构: 采用更好的方式将文件上传到 NapCat 协议端,无需映射路径。**(需要前往 配置->其他配置 中配置`对外可达的回调接口地址`)** @Soulter @anka-afk +1. 修复: 单独发送文件时被认为是空消息导致文件无法发送的问题 @Soulter +2. 修复: Lagrange 下合并转发消息失败的问题 @Soulter +3. 修复: CLI 模式下路径问题导致 WebUI 和 MCP Server 无法加载的问题 @Soulter +4. 修复: 设置 Gemini 的 thinking_budget 前,先检查是否存在 @Raven95676 +8. 修复: 修复企业微信和微信公众平台下无法应用 api_base_url 的问题 @Soulter +6. 优化: 分离 plugin 指令为指令组,优化 plugin 指令权限控制 @Soulter +7. 优化: WebUI 更直观的模型提供商选择 @Soulter +9. 优化: AstrBot 的重启逻辑 @Anchor +5. 新增: CLI 支持部分配置文件项的设定 @Raven95676 +5. 新增: 现已支持 Azure TTS @NanoRocky \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index e514fb0ea..a59826d0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "3.5.8" +version = "3.5.9" description = "易上手的多平台 LLM 聊天机器人及开发框架" readme = "README.md" requires-python = ">=3.10"