ccstatusline 2.1.6 → 2.1.8
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 +8 -3
- package/dist/ccstatusline.js +1044 -779
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -46,15 +46,17 @@
|
|
|
46
46
|
|
|
47
47
|
## 🆕 Recent Updates
|
|
48
48
|
|
|
49
|
-
### v2.1.0 - v2.1.
|
|
49
|
+
### v2.1.0 - v2.1.8 - Usage widgets, links, new git insertions / deletions widgets, and reliability fixes
|
|
50
50
|
|
|
51
|
-
- **🧩 New Usage widgets (v2.1.0)** - Added **Session Usage**, **Weekly Usage**, **Reset Timer**, and **Context Bar** widgets.
|
|
51
|
+
- **🧩 New Usage widgets (v2.1.0)** - Added **Session Usage**, **Weekly Usage**, **Block 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.
|
|
53
53
|
- **🪟 Windows empty file bug fix (v2.1.1)** - Fixed a Windows issue that could create an empty `c:\dev\null` file.
|
|
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
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.
|
|
58
|
+
- **⏳ Weekly reset timer split (v2.1.7)** - Added a separate `Weekly Reset Timer` widget.
|
|
59
|
+
- **⚙️ Custom config file flag (v2.1.8)** - Added `--config <path>` support so ccstatusline can load/save settings from a custom file location.
|
|
58
60
|
|
|
59
61
|
### v2.0.26 - v2.0.29 - Performance, git internals, and workflow improvements
|
|
60
62
|
|
|
@@ -426,7 +428,8 @@ bun run example
|
|
|
426
428
|
- **Session Name** - Shows the session name set via `/rename` command in Claude Code
|
|
427
429
|
- **Claude Session ID** - Shows the current Claude Code session ID from status JSON
|
|
428
430
|
- **Block Timer** - Shows time elapsed in current 5-hour block or progress bar
|
|
429
|
-
- **Reset Timer** - Shows time remaining until the current 5-hour block resets
|
|
431
|
+
- **Block Reset Timer** - Shows time remaining until the current 5-hour block resets
|
|
432
|
+
- **Weekly Reset Timer** - Shows time remaining until the weekly usage window resets
|
|
430
433
|
- **Current Working Directory** - Shows current working directory with segment limit, fish-style abbreviation, and optional `~` home abbreviation
|
|
431
434
|
- **Version** - Shows Claude Code version
|
|
432
435
|
- **Output Style** - Shows the currently set output style in Claude Code
|
|
@@ -528,6 +531,8 @@ Widget-specific shortcuts:
|
|
|
528
531
|
- **Git widgets**: `h` toggle hide `no git` output
|
|
529
532
|
- **Context % widgets**: `u` toggle used vs remaining display
|
|
530
533
|
- **Block Timer**: `p` cycle display mode (time/full bar/short bar)
|
|
534
|
+
- **Block Reset Timer**: `p` cycle display mode (time/full bar/short bar)
|
|
535
|
+
- **Weekly Reset Timer**: `p` cycle display mode (time/full bar/short bar)
|
|
531
536
|
- **Current Working Dir**: `h` home abbreviation, `s` segment editor, `f` fish-style path
|
|
532
537
|
- **Custom Command**: `e` command, `w` max width, `t` timeout, `p` preserve ANSI colors
|
|
533
538
|
- **Link**: `u` URL, `e` link text
|