chore: bump version to 4.25.1

This commit is contained in:
Soulter
2026-05-17 15:01:59 +08:00
parent a1e95081be
commit d609f23b71
4 changed files with 29 additions and 3 deletions

View File

@@ -1 +1 @@
__version__ = "4.25.0"
__version__ = "4.25.1"

View File

@@ -5,7 +5,7 @@ import os
from astrbot.core.computer.booters.cua_defaults import CUA_DEFAULT_CONFIG
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
VERSION = "4.25.0"
VERSION = "4.25.1"
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v4.db")
PERSONAL_WECHAT_CONFIG_METADATA = {
"weixin_oc_base_url": {

26
changelogs/v4.25.1.md Normal file
View File

@@ -0,0 +1,26 @@
- [更新日志(简体中文)](#chinese)
- [Changelog(English)](#english)
<a id="chinese"></a>
## What's Changed
### 优化
- 个人微信和钉钉扫码创建成功后,平台配置 ID 会自动追加随机 4 位小写字母后缀,例如 `_abcd`,降低多个扫码创建配置之间的 ID 冲突概率。
### 修复
- 修复 WebUI 全局字体栈未完整覆盖西里尔文字场景的问题,改善俄文等多语言文本显示效果。([#8205](https://github.com/AstrBotDevs/AstrBot/pull/8205)
<a id="english"></a>
## What's Changed (EN)
### Improvements
- Personal WeChat and DingTalk QR setup now append a random four-letter lowercase suffix to the generated platform config ID, such as `_abcd`, reducing ID conflicts across multiple scan-created configs.
### Bug Fixes
- Fixed the WebUI global font-family stack so Cyrillic text and other multilingual content render more consistently. ([#8205](https://github.com/AstrBotDevs/AstrBot/pull/8205))

View File

@@ -1,6 +1,6 @@
[project]
name = "AstrBot"
version = "4.25.0"
version = "4.25.1"
description = "Easy-to-use multi-platform LLM chatbot and development framework"
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }