aihezu 2.3.1 → 2.3.2

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.
@@ -95,7 +95,7 @@ function asNumber(value) {
95
95
  function formatCost(value) {
96
96
  const n = asNumber(value);
97
97
  if (n === null) return '-';
98
- return n.toFixed(2);
98
+ return `$${n.toFixed(2)}`;
99
99
  }
100
100
 
101
101
  function formatPercent(current, limit) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aihezu",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "AI 开发环境配置工具 - 支持 Claude Code, Codex, Google Gemini 的本地化配置、代理设置与缓存清理",
5
5
  "main": "bin/aihezu.js",
6
6
  "bin": {