@foxden-app/foxclaw 0.5.64 → 0.5.65
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 -0
- 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.65 - 2026-06-29
|
|
6
|
+
|
|
7
|
+
### 中文
|
|
8
|
+
- 修复 Telegram 运行状态消息在网络/TLS 抖动下可能残留的问题:当 FoxClaw 编辑“正在运行命令”等 preview 消息失败并改发新状态消息时,旧 message id 现在会登记到最终清理列表。
|
|
9
|
+
- 保持“过程汇报”折叠消息的完整内容,不做自动裁剪;用户仍可通过 Telegram 展开、查看更多或弹窗查看全部过程。
|
|
10
|
+
|
|
11
|
+
### English
|
|
12
|
+
- Fixed stale Telegram runtime status messages after transient network/TLS edit failures. When FoxClaw fails to edit a "running command" preview and sends a replacement status message, the old message id is now tracked for final cleanup.
|
|
13
|
+
- Kept collapsed progress summaries complete rather than trimming them, preserving Telegram's expand, "show more", and full-view behavior.
|
|
14
|
+
|
|
5
15
|
## 0.5.64 - 2026-06-29
|
|
6
16
|
|
|
7
17
|
### 中文
|
|
@@ -8152,6 +8152,7 @@ export class BridgeSessionCore {
|
|
|
8152
8152
|
active.previewActive = false;
|
|
8153
8153
|
active.statusMessageText = null;
|
|
8154
8154
|
active.statusNeedsRebase = false;
|
|
8155
|
+
this.recordArchivedMessageId(active, active.previewMessageId);
|
|
8155
8156
|
this.store.removeActiveTurnPreview(active.turnId);
|
|
8156
8157
|
await this.ensureStatusMessage(active, text);
|
|
8157
8158
|
return;
|