ccstatusline-usage 2.3.8 → 2.3.10
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/README.md +25 -4
- package/dist/ccstatusline.js +3139 -986
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ Session: [████░░░░░░░░░░░] 27.0% | Weekly: [██
|
|
|
52
52
|
|
|
53
53
|
- [Recent Updates](#-recent-updates)
|
|
54
54
|
- [Features](#-features)
|
|
55
|
+
- [Localizations](#-localizations)
|
|
55
56
|
- [Quick Start](#-quick-start)
|
|
56
57
|
- [Windows Support](#-windows-support)
|
|
57
58
|
- [Usage](#-usage)
|
|
@@ -66,6 +67,15 @@ Session: [████░░░░░░░░░░░] 27.0% | Weekly: [██
|
|
|
66
67
|
|
|
67
68
|
## 🆕 Recent Updates
|
|
68
69
|
|
|
70
|
+
### [v2.3.10](https://github.com/pcvelz/ccstatusline-usage/releases/tag/v2.3.10) - Extra usage on session limit, fix empty separator for null widgets
|
|
71
|
+
|
|
72
|
+
- [pcvelz/ccstatusline-usage](https://github.com/pcvelz/ccstatusline-usage): **Extra usage on session limit** — Reset Timer now shows extra usage spending when session limit reaches 100% (not just weekly limit or charged 1M model).
|
|
73
|
+
- [pcvelz/ccstatusline-usage](https://github.com/pcvelz/ccstatusline-usage): **Fix empty separator for null widgets** — Separators adjacent to widgets that return null (e.g. Battery when charging) are now suppressed correctly. Previously showed a visible `| |` gap.
|
|
74
|
+
|
|
75
|
+
### [v2.3.9](https://github.com/pcvelz/ccstatusline-usage/releases/tag/v2.3.9) - Medium display size for mid-width terminals
|
|
76
|
+
|
|
77
|
+
- [pcvelz/ccstatusline-usage](https://github.com/pcvelz/ccstatusline-usage): **Three-tier display sizing** — New medium display size for terminals between 134–177 chars wide. Progress bars render at 8 chars (between mobile's 4 and full's 15). Model and Session ID use compact format in medium mode. Weekly Pace pendulum bar scales to halfWidth=4 in medium.
|
|
78
|
+
|
|
69
79
|
### [v2.3.8](https://github.com/pcvelz/ccstatusline-usage/releases/tag/v2.3.8) - Fix off-peak countdown + Windows EEXIST fix
|
|
70
80
|
|
|
71
81
|
- [pcvelz/ccstatusline-usage](https://github.com/pcvelz/ccstatusline-usage): **Off-peak countdown fix** — Friday evening now correctly counts to Monday peak instead of Saturday noon. Added test coverage for the off-peak time calculation logic.
|
|
@@ -288,6 +298,14 @@ Session: [████░░░░░░░░░░░] 27.0% | Weekly: [██
|
|
|
288
298
|
|
|
289
299
|
---
|
|
290
300
|
|
|
301
|
+
## 🌐 Localizations
|
|
302
|
+
|
|
303
|
+
The localizations in this section are third-party forks maintained outside this repository. They are not maintained, reviewed, or endorsed by this repository, so review their code and releases before using them.
|
|
304
|
+
|
|
305
|
+
- 🌏 **中文版 (Chinese):** [ccstatusline-zh](https://github.com/huangguang1999/ccstatusline-zh)
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
291
309
|
## 🚀 Quick Start
|
|
292
310
|
|
|
293
311
|
### No installation needed! Use directly with npx or bunx:
|
|
@@ -386,10 +404,12 @@ For optimal Powerline rendering on Windows:
|
|
|
386
404
|
# Install JetBrains Mono Nerd Font via winget
|
|
387
405
|
winget install DEVCOM.JetBrainsMonoNerdFont
|
|
388
406
|
|
|
389
|
-
# Alternative: Install base JetBrains Mono font
|
|
390
|
-
winget install "JetBrains.JetBrainsMono"
|
|
391
|
-
|
|
392
407
|
# Or download manually from: https://www.nerdfonts.com/font-downloads
|
|
408
|
+
|
|
409
|
+
# Alternative: Download and install base JetBrains Mono font
|
|
410
|
+
# from [JetBrains](https://www.jetbrains.com/lp/mono/)
|
|
411
|
+
# or [GitHub](https://github.com/JetBrains/JetBrainsMono)
|
|
412
|
+
# or [Google Fonts](https://fonts.google.com/specimen/JetBrains+Mono)
|
|
393
413
|
```
|
|
394
414
|
|
|
395
415
|
#### Path Handling
|
|
@@ -406,7 +426,7 @@ ccstatusline automatically handles Windows-specific paths:
|
|
|
406
426
|
**Issue**: Powerline symbols showing as question marks or boxes
|
|
407
427
|
```powershell
|
|
408
428
|
# Solution: Install a compatible Nerd Font
|
|
409
|
-
winget install
|
|
429
|
+
winget install DEVCOM.JetBrainsMonoNerdFont
|
|
410
430
|
# Then set the font in your terminal settings
|
|
411
431
|
```
|
|
412
432
|
|
|
@@ -908,6 +928,7 @@ jq 'del(.statusLine)' ~/.claude/settings.json > /tmp/cs.json && cat /tmp/cs.json
|
|
|
908
928
|
|
|
909
929
|
- [tweakcc](https://github.com/Piebald-AI/tweakcc) - Customize Claude Code themes, thinking verbs, and more.
|
|
910
930
|
- [ccusage](https://github.com/ryoppippi/ccusage) - Track and display Claude Code usage metrics.
|
|
931
|
+
- [codachi](https://github.com/vincent-k2026/codachi) - A tamagotchi-style statusline pet that grows with your context window.
|
|
911
932
|
|
|
912
933
|
---
|
|
913
934
|
|