@foxden-app/foxclaw 0.5.40 → 0.5.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/dist/controller/controller.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable FoxClaw changes are listed here. Each release note is bilingual so GitHub Releases and the npm package are useful to both Chinese and English readers.
|
|
4
4
|
|
|
5
|
+
## 0.5.41 - 2026-06-18
|
|
6
|
+
|
|
7
|
+
### 中文
|
|
8
|
+
- 将 FoxClaw 的普通 Telegram 回复统一升级为 RichMessage Markdown 优先发送,覆盖短提示、usage、操作结果、升级开始/完成、错误通知和大多数诊断文本。
|
|
9
|
+
- 保持稳定降级:Telegram rich markdown 失败时自动回普通文本;`/status`、`/auth`、`/update` 阻塞诊断等结构化面板继续使用已验证的 RichMessage HTML 表格/列表/details。
|
|
10
|
+
|
|
11
|
+
### English
|
|
12
|
+
- Upgraded FoxClaw's normal Telegram replies to prefer RichMessage Markdown, covering short notices, usage text, action results, update start/completion messages, error notifications, and most diagnostic text.
|
|
13
|
+
- Stable fallback is preserved: Telegram rich markdown failures automatically return to plain text, while structured panels such as `/status`, `/auth`, and blocked `/update` diagnostics continue using the verified RichMessage HTML tables/lists/details path.
|
|
14
|
+
|
|
5
15
|
## 0.5.40 - 2026-06-18
|
|
6
16
|
|
|
7
17
|
### 中文
|
|
@@ -3361,7 +3361,7 @@ export class BridgeSessionCore {
|
|
|
3361
3361
|
writeRuntimeStatus(this.config.statusPath, status);
|
|
3362
3362
|
}
|
|
3363
3363
|
async sendMessage(scopeId, text, inlineKeyboard) {
|
|
3364
|
-
return this.
|
|
3364
|
+
return this.sendRichMarkdownMessage(scopeId, text, inlineKeyboard);
|
|
3365
3365
|
}
|
|
3366
3366
|
async sendHtmlMessage(scopeId, text, inlineKeyboard) {
|
|
3367
3367
|
return this.messaging.sendHtml(scopeId, text, inlineKeyboard);
|