ccstatusline 2.1.4 → 2.1.6
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 +4 -3
- package/dist/ccstatusline.js +921 -977
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
|
|
47
47
|
## 🆕 Recent Updates
|
|
48
48
|
|
|
49
|
-
### v2.1.0 - v2.1.
|
|
49
|
+
### v2.1.0 - v2.1.6 - Usage widgets, links, new git insertions / deletions widgets, and reliability fixes
|
|
50
50
|
|
|
51
51
|
- **🧩 New Usage widgets (v2.1.0)** - Added **Session Usage**, **Weekly Usage**, **Reset Timer**, and **Context Bar** widgets.
|
|
52
52
|
- **📊 More accurate counts (v2.1.0)** - Usage/context widgets now use new statusline JSON metrics when available for more accurate token and context counts.
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
- **🔗 New Link widget (v2.1.3)** - Added a new **Link** widget with clickable OSC8 rendering, preview parity, and raw mode support.
|
|
55
55
|
- **➕ New Git Insertions widget (v2.1.4)** - Added a dedicated Git widget that shows only uncommitted insertions (e.g., `+42`).
|
|
56
56
|
- **➖ New Git Deletions widget (v2.1.4)** - Added a dedicated Git widget that shows only uncommitted deletions (e.g., `-10`).
|
|
57
|
+
- **🧠 Context format fallback fix (v2.1.6)** - When `context_window_size` is missing, context widgets now infer 1M models from long-context labels such as `[1m]` and `1M context` in model identifiers.
|
|
57
58
|
|
|
58
59
|
### v2.0.26 - v2.0.29 - Performance, git internals, and workflow improvements
|
|
59
60
|
|
|
@@ -434,8 +435,8 @@ bun run example
|
|
|
434
435
|
- **Tokens Cached** - Shows cached tokens used
|
|
435
436
|
- **Tokens Total** - Shows total tokens used
|
|
436
437
|
- **Context Length** - Shows current context length in tokens
|
|
437
|
-
- **Context Percentage** - Shows percentage of context limit used (dynamic: 1M for model IDs with `[1m]`
|
|
438
|
-
- **Context Percentage (usable)** - Shows percentage of usable context (dynamic: 800k for model IDs with `[1m]`
|
|
438
|
+
- **Context Percentage** - Shows percentage of context limit used (dynamic: 1M for model IDs with long-context labels like `[1m]` or `1M context`, 200k otherwise)
|
|
439
|
+
- **Context Percentage (usable)** - Shows percentage of usable context (dynamic: 800k for model IDs with long-context labels like `[1m]` or `1M context`, 160k otherwise, accounting for auto-compact at 80%)
|
|
439
440
|
- **Context Bar** - Shows context usage as a progress bar with short/full display modes
|
|
440
441
|
- **Terminal Width** - Shows detected terminal width (for debugging)
|
|
441
442
|
- **Memory Usage** - Shows system memory usage (used/total, e.g., "Mem: 12.4G/16.0G")
|