ccstatusline 2.2.8 → 2.2.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 +20 -1
- package/dist/ccstatusline.js +3658 -1768
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -47,6 +47,21 @@
|
|
|
47
47
|
|
|
48
48
|
## 🆕 Recent Updates
|
|
49
49
|
|
|
50
|
+
### v2.2.9 - v2.2.10 - GitLab support, reset timers, context, and git widgets
|
|
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
|
+
- **📊 Short bar display modes** - Context percentage, Context Bar, Session Usage, Weekly Usage, Block Timer, and reset timer widgets can use compact bar variants.
|
|
57
|
+
- **🕒 Reset timer timestamps** - Block and Weekly Reset Timer widgets can show exact reset timestamps with compact formatting, 12/24-hour display, IANA time zones, and locale selection.
|
|
58
|
+
- **🪟 Context Window widget** - Added a `Context Window` widget for total model window size, keeping `Context Length` focused on current context usage.
|
|
59
|
+
- **🧮 Git file status widgets** - Added `Git Staged Files`, `Git Unstaged Files`, `Git Untracked Files`, and `Git Clean Status` for file counts and clean/dirty state.
|
|
60
|
+
- **🧠 Thinking Effort updates** - Added `xhigh`, show `default` when no effort is set, and mark unknown future effort levels with `?`.
|
|
61
|
+
- **🧮 More accurate token counts** - Streaming duplicate JSONL entries are deduped so token widgets do not overcount live Claude Code output.
|
|
62
|
+
- **🏷️ Cleaner model display** - The Model widget strips trailing context suffixes like `(1M context)`; use `Context Window` when you want the total window size shown.
|
|
63
|
+
- **🧱 More resilient Git helpers** - Git widgets handle missing or unusual git command output more defensively.
|
|
64
|
+
|
|
50
65
|
### v2.2.8 - Git widgets, smarter picker search, and minimalist mode
|
|
51
66
|
|
|
52
67
|
- **🔀 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 +235,7 @@ The interactive configuration tool provides a terminal UI where you can:
|
|
|
220
235
|
- Add/remove/reorder status line widgets
|
|
221
236
|
- Customize colors for each widget
|
|
222
237
|
- Configure flex separator behavior
|
|
238
|
+
- Configure Claude Code status line refresh interval when supported
|
|
223
239
|
- Edit custom text widgets
|
|
224
240
|
- Install/uninstall to Claude Code settings
|
|
225
241
|
- Preview your status line in real-time
|
|
@@ -248,11 +264,14 @@ When you install from the TUI, ccstatusline writes a `statusLine` command object
|
|
|
248
264
|
"statusLine": {
|
|
249
265
|
"type": "command",
|
|
250
266
|
"command": "npx -y ccstatusline@latest",
|
|
251
|
-
"padding": 0
|
|
267
|
+
"padding": 0,
|
|
268
|
+
"refreshInterval": 10
|
|
252
269
|
}
|
|
253
270
|
}
|
|
254
271
|
```
|
|
255
272
|
|
|
273
|
+
`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.
|
|
274
|
+
|
|
256
275
|
Other supported command values are:
|
|
257
276
|
- `bunx -y ccstatusline@latest`
|
|
258
277
|
- `ccstatusline` (for self-managed/global installs)
|