ccstatusline-usage 2.3.9 → 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 +21 -4
- package/dist/ccstatusline.js +3106 -968
- 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,11 @@ 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
|
+
|
|
69
75
|
### [v2.3.9](https://github.com/pcvelz/ccstatusline-usage/releases/tag/v2.3.9) - Medium display size for mid-width terminals
|
|
70
76
|
|
|
71
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.
|
|
@@ -292,6 +298,14 @@ Session: [████░░░░░░░░░░░] 27.0% | Weekly: [██
|
|
|
292
298
|
|
|
293
299
|
---
|
|
294
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
|
+
|
|
295
309
|
## 🚀 Quick Start
|
|
296
310
|
|
|
297
311
|
### No installation needed! Use directly with npx or bunx:
|
|
@@ -390,10 +404,12 @@ For optimal Powerline rendering on Windows:
|
|
|
390
404
|
# Install JetBrains Mono Nerd Font via winget
|
|
391
405
|
winget install DEVCOM.JetBrainsMonoNerdFont
|
|
392
406
|
|
|
393
|
-
# Alternative: Install base JetBrains Mono font
|
|
394
|
-
winget install "JetBrains.JetBrainsMono"
|
|
395
|
-
|
|
396
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)
|
|
397
413
|
```
|
|
398
414
|
|
|
399
415
|
#### Path Handling
|
|
@@ -410,7 +426,7 @@ ccstatusline automatically handles Windows-specific paths:
|
|
|
410
426
|
**Issue**: Powerline symbols showing as question marks or boxes
|
|
411
427
|
```powershell
|
|
412
428
|
# Solution: Install a compatible Nerd Font
|
|
413
|
-
winget install
|
|
429
|
+
winget install DEVCOM.JetBrainsMonoNerdFont
|
|
414
430
|
# Then set the font in your terminal settings
|
|
415
431
|
```
|
|
416
432
|
|
|
@@ -912,6 +928,7 @@ jq 'del(.statusLine)' ~/.claude/settings.json > /tmp/cs.json && cat /tmp/cs.json
|
|
|
912
928
|
|
|
913
929
|
- [tweakcc](https://github.com/Piebald-AI/tweakcc) - Customize Claude Code themes, thinking verbs, and more.
|
|
914
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.
|
|
915
932
|
|
|
916
933
|
---
|
|
917
934
|
|