@foxden-app/foxclaw 0.5.36 → 0.5.37

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 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.37 - 2026-06-17
6
+
7
+ ### 中文
8
+ - 精简 `/auth` RichMessage 表格的 `Quota A` / `Quota B` 单元格:只显示剩余额度百分比,例如 `26%`,窗口含义交给列和后续套餐/状态信息理解。
9
+ - 保持原始文本 fallback 和按钮文本不变,避免影响旧命令、微信复制路径和 auth 切换回调。
10
+
11
+ ### English
12
+ - Simplified the `/auth` RichMessage `Quota A` / `Quota B` cells to show only the remaining percentage, such as `26%`, leaving the window context to the columns and following plan/status fields.
13
+ - Kept the plain-text fallback and button labels unchanged so legacy commands, Weixin copy-paste flows, and auth switching callbacks remain stable.
14
+
5
15
  ## 0.5.36 - 2026-06-17
6
16
 
7
17
  ### 中文
@@ -8609,7 +8609,7 @@ function formatRichAuthQuotaCell(value) {
8609
8609
  if (!windowLabel || percent === undefined) {
8610
8610
  return trimmed;
8611
8611
  }
8612
- return `${windowLabel} ${percent}%`;
8612
+ return `${percent}%`;
8613
8613
  }
8614
8614
  function parseRichInternalKeyValue(line) {
8615
8615
  const separator = line.includes(':') ? ':' : ':';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foxden-app/foxclaw",
3
- "version": "0.5.36",
3
+ "version": "0.5.37",
4
4
  "description": "Foxden local execution claw for controlling Codex from trusted chat interfaces.",
5
5
  "type": "module",
6
6
  "main": "dist/main.js",