ccstatusline 2.2.8 → 2.2.9
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 +16 -1
- package/dist/ccstatusline.js +1522 -955
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -47,6 +47,17 @@
|
|
|
47
47
|
|
|
48
48
|
## 🆕 Recent Updates
|
|
49
49
|
|
|
50
|
+
### v2.2.9 - GitLab support, refresh intervals, and TUI polish
|
|
51
|
+
|
|
52
|
+
- **🦊 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.
|
|
53
|
+
- **🔄 Status line refresh interval** - Installed configs can set Claude Code's `statusLine.refreshInterval` from the TUI when Claude Code >=2.1.97 supports it.
|
|
54
|
+
- **🧭 Wrap-around TUI navigation** - Menu/list navigation and move/reorder modes now wrap at the first and last items.
|
|
55
|
+
- **📋 Clone widget shortcut** - Press `k` in the item editor to duplicate the selected widget, with fresh Powerline background color for cloned Powerline items.
|
|
56
|
+
- **🧠 Thinking Effort updates** - Added `xhigh`, show `default` when no effort is set, and mark unknown future effort levels with `?`.
|
|
57
|
+
- **🧮 More accurate token counts** - Streaming duplicate JSONL entries are deduped so token widgets do not overcount live Claude Code output.
|
|
58
|
+
- **🏷️ Cleaner model display** - The Model widget strips trailing context suffixes like `(1M context)`; use Context Length when you want the window size shown.
|
|
59
|
+
- **🧱 More resilient Git helpers** - Git widgets handle missing or unusual git command output more defensively.
|
|
60
|
+
|
|
50
61
|
### v2.2.8 - Git widgets, smarter picker search, and minimalist mode
|
|
51
62
|
|
|
52
63
|
- **🔀 New Git PR widget** - Added a `Git PR` widget with clickable PR links plus optional status and title display for the current branch.
|
|
@@ -220,6 +231,7 @@ The interactive configuration tool provides a terminal UI where you can:
|
|
|
220
231
|
- Add/remove/reorder status line widgets
|
|
221
232
|
- Customize colors for each widget
|
|
222
233
|
- Configure flex separator behavior
|
|
234
|
+
- Configure Claude Code status line refresh interval when supported
|
|
223
235
|
- Edit custom text widgets
|
|
224
236
|
- Install/uninstall to Claude Code settings
|
|
225
237
|
- Preview your status line in real-time
|
|
@@ -248,11 +260,14 @@ When you install from the TUI, ccstatusline writes a `statusLine` command object
|
|
|
248
260
|
"statusLine": {
|
|
249
261
|
"type": "command",
|
|
250
262
|
"command": "npx -y ccstatusline@latest",
|
|
251
|
-
"padding": 0
|
|
263
|
+
"padding": 0,
|
|
264
|
+
"refreshInterval": 10
|
|
252
265
|
}
|
|
253
266
|
}
|
|
254
267
|
```
|
|
255
268
|
|
|
269
|
+
`refreshInterval` is written only when your Claude Code version supports it (>=2.1.97). The TUI can set it to `1-60` seconds, or remove it by leaving the input empty.
|
|
270
|
+
|
|
256
271
|
Other supported command values are:
|
|
257
272
|
- `bunx -y ccstatusline@latest`
|
|
258
273
|
- `ccstatusline` (for self-managed/global installs)
|