ccstatusline 2.2.12 → 2.2.14
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 +18 -1
- package/dist/ccstatusline.js +3429 -529
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -47,6 +47,18 @@
|
|
|
47
47
|
|
|
48
48
|
## 🆕 Recent Updates
|
|
49
49
|
|
|
50
|
+
### v2.2.14 - Version pinning
|
|
51
|
+
|
|
52
|
+
- **📌 Version pinning support** - Added support for pinned global installs so Claude Code can keep running a specific ccstatusline version.
|
|
53
|
+
- **🔄 Moving from auto-update installs** - If you currently use an auto-updating install, use the TUI uninstall option first, then reinstall to go through the version pinning flow. Your ccstatusline settings are preserved when uninstalling.
|
|
54
|
+
|
|
55
|
+
### v2.2.13 - Weekly model usage, voice status, hooks, and docs
|
|
56
|
+
|
|
57
|
+
- **📊 Weekly Sonnet/Opus usage widgets** - Added separate weekly usage widgets for Sonnet and Opus API buckets, matching Claude Code's `/usage` model split.
|
|
58
|
+
- **🎤 Voice Status widget** - Added a widget that shows whether Claude Code voice input is enabled, with icon, text, word, and optional Nerd Font display modes.
|
|
59
|
+
- **📉 Timer short bars** - Block Timer, Block Reset Timer, and Weekly Reset Timer now support compact short-bar progress displays.
|
|
60
|
+
- **🔕 Quieter hook output** - Hook handling now suppresses no-op JSON output so non-status updates stay silent.
|
|
61
|
+
|
|
50
62
|
### v2.2.9 - v2.2.12 - GitLab support, reset timers, context, compaction, and git widgets
|
|
51
63
|
|
|
52
64
|
- **🦊 GitLab PR/MR support** - `Git Branch` and `Git PR/MR` now support GitHub, GitLab, and compatible self-hosted remotes, using `gh` or `glab` as appropriate.
|
|
@@ -197,7 +209,7 @@
|
|
|
197
209
|
|
|
198
210
|
## ✨ Features
|
|
199
211
|
|
|
200
|
-
- **📊 Real-time Metrics** - Display model name, git branch, token usage, session duration, compaction count, block timer, and more
|
|
212
|
+
- **📊 Real-time Metrics** - Display model name, git branch, token usage, per-model weekly usage, voice input state, session duration, compaction count, block timer, and more
|
|
201
213
|
- **🎨 Fully Customizable** - Choose what to display and customize colors for each element
|
|
202
214
|
- **⚡ Powerline Support** - Beautiful Powerline-style rendering with arrow separators, caps, and custom fonts
|
|
203
215
|
- **📐 Multi-line Support** - Configure multiple independent status lines
|
|
@@ -231,6 +243,8 @@ npx -y ccstatusline@latest
|
|
|
231
243
|
bunx -y ccstatusline@latest
|
|
232
244
|
```
|
|
233
245
|
|
|
246
|
+
Both commands launch the same TUI. During the initial setup flow, choose **Pinned global install** if you want Claude Code to stay on the ccstatusline version you are running instead of following `@latest`; the TUI will install that version globally with npm or Bun and write the pinned `ccstatusline` command to Claude Code settings. After a pinned install, you can run `ccstatusline` directly to launch the TUI in the future.
|
|
247
|
+
|
|
234
248
|
<br />
|
|
235
249
|
<details>
|
|
236
250
|
<summary><b>Configure ccstatusline</b></summary>
|
|
@@ -281,6 +295,8 @@ Other supported command values are:
|
|
|
281
295
|
- `bunx -y ccstatusline@latest`
|
|
282
296
|
- `ccstatusline` (for self-managed/global installs)
|
|
283
297
|
|
|
298
|
+
For pinned installs, launch the TUI with `npx -y ccstatusline@latest` or `bunx -y ccstatusline@latest`, then choose **Pinned global install**. The TUI pins the active version by installing it globally and writing `"command": "ccstatusline"` to `settings.json`; afterward, you can run `ccstatusline` directly to open the TUI.
|
|
299
|
+
|
|
284
300
|
</details>
|
|
285
301
|
|
|
286
302
|
## 🤝 Contributing
|
|
@@ -318,6 +334,7 @@ If ccstatusline is useful to you, consider buying me a coffee:
|
|
|
318
334
|
- [tweakcc](https://github.com/Piebald-AI/tweakcc) - Customize Claude Code themes, thinking verbs, and more.
|
|
319
335
|
- [ccusage](https://github.com/ryoppippi/ccusage) - Track and display Claude Code usage metrics.
|
|
320
336
|
- [codachi](https://github.com/vincent-k2026/codachi) - A tamagotchi-style statusline pet that grows with your context window.
|
|
337
|
+
- [AIWatch](https://ai-watch.dev) - Live status monitor for 30+ AI APIs and apps; pairs with a Custom Command widget to surface provider outages in your status line.
|
|
321
338
|
|
|
322
339
|
|
|
323
340
|
## 🙏 Acknowledgments
|