diff --git a/astrbot/core/config/default.py b/astrbot/core/config/default.py index f8d21e35c..d8a15836d 100644 --- a/astrbot/core/config/default.py +++ b/astrbot/core/config/default.py @@ -6,7 +6,7 @@ import os from astrbot.core.utils.astrbot_path import get_astrbot_data_path -VERSION = "4.1.4" +VERSION = "4.1.5" DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db") # 默认配置 diff --git a/changelogs/v4.1.5.md b/changelogs/v4.1.5.md new file mode 100644 index 000000000..224a021e5 --- /dev/null +++ b/changelogs/v4.1.5.md @@ -0,0 +1,11 @@ +# What's Changed + +0. feat: 新增 Misskey 平台适配器 ([#2774](https://github.com/AstrBotDevs/AstrBot/issues/2774)) +1. fix: 修复aiocqhttp适配器at会获取群昵称而消息不会获取的逻辑不一致 ([#2769](https://github.com/AstrBotDevs/AstrBot/issues/2769)) +2. fix: 修复「对话管理」页面的关键词搜索功能失效的问题并优化一些 UI 样式 ([#2837](https://github.com/AstrBotDevs/AstrBot/issues/2837)) +3. fix: 识别「引用消息」的图片时优先使用默认图片转述提供商 ([#2836](https://github.com/AstrBotDevs/AstrBot/issues/2836)) +5. fix: 修复 Telegram 下流式传输时,第一次输出的内容会被覆盖掉的问题 +6. perf: 优化统计页内存占用和消息数据趋势的样式 ([#2826](https://github.com/AstrBotDevs/AstrBot/issues/2826)) +7. perf: 优化 「插件页」、「对话管理页」、「会话管理页」的样式 +8. fix: on_tool_end hook unavailable +9. feat: add audioop-lts dependencies ([#2809](https://github.com/AstrBotDevs/AstrBot/issues/2809)) diff --git a/pyproject.toml b/pyproject.toml index b1ca762f4..1b402f48d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.1.4" +version = "4.1.5" description = "易上手的多平台 LLM 聊天机器人及开发框架" readme = "README.md" requires-python = ">=3.10"