chore: bump version to 4.9.1

This commit is contained in:
Soulter
2025-12-15 16:07:10 +08:00
parent 02cd5e396b
commit 0916177a57
4 changed files with 19 additions and 3 deletions

View File

@@ -1 +1 @@
__version__ = "4.9.0"
__version__ = "4.9.1"

View File

@@ -4,7 +4,7 @@ import os
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
VERSION = "4.9.0"
VERSION = "4.9.1"
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
WEBHOOK_SUPPORTED_PLATFORMS = [

16
changelogs/v4.9.1.md Normal file
View File

@@ -0,0 +1,16 @@
## What's Changed
### 修复
- 企业自部署飞书(自定义 domain可以接收消息但无法发送消息的问题。
- 安装插件 Dialog 的深色样式问题。
### 优化
- 避免某些插件在流式响应结束后重复发送消息的问题。
### 新增
- 支持在对话管理批量导出对话轨迹数据为 `jsonl` 格式文件。入口WebUI -> 对话管理 -> 批量选中 -> 导出。
- 支持对 TTS文本转语音设置概率触发。
- (插件开发)支持在 schema 中对 float 和 int 类型设置 `slider` 滑块控件。例如 `slider: {min: 0, max: 1, step: 0.1}`

View File

@@ -1,6 +1,6 @@
[project]
name = "AstrBot"
version = "4.9.0"
version = "4.9.1"
description = "Easy-to-use multi-platform LLM chatbot and development framework"
readme = "README.md"
requires-python = ">=3.10"