ccstatusline-usage 2.3.6 → 2.3.7
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 +6 -2
- package/dist/ccstatusline.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,8 +40,8 @@ This fork adds API-based usage widgets beyond the upstream:
|
|
|
40
40
|
### Enhanced Status Line Preview
|
|
41
41
|
|
|
42
42
|
```
|
|
43
|
-
Session: [████░░░░░░░░░░░] 27.0% | Weekly: [
|
|
44
|
-
Context: [
|
|
43
|
+
Session: [████░░░░░░░░░░░] 27.0% | Weekly: [████░░░░░░░░░░░] 34.0% | 2:03 hr | Model: Opus 4.6 | Session ID: 0109b99d...
|
|
44
|
+
Context: [██████░░░░░░░░░] 389k/1M (39%) | Pace: [░░░░░░█|░░░░░░░] D4/7 -8% | Off-peak (4:03 hr)
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|

|
|
@@ -66,6 +66,10 @@ Session: [████░░░░░░░░░░░] 27.0% | Weekly: [██
|
|
|
66
66
|
|
|
67
67
|
## 🆕 Recent Updates
|
|
68
68
|
|
|
69
|
+
### [v2.3.7](https://github.com/pcvelz/ccstatusline-usage/releases/tag/v2.3.7) - Weekly Pace as default layout
|
|
70
|
+
|
|
71
|
+
- [pcvelz/ccstatusline-usage](https://github.com/pcvelz/ccstatusline-usage): **Default layout update** — Weekly Pace widget (pendulum mode) is now included in the default status line layout on line 2, between the context bar and off-peak indicator. Model widget color changed to magenta.
|
|
72
|
+
|
|
69
73
|
### [v2.3.6](https://github.com/pcvelz/ccstatusline-usage/releases/tag/v2.3.6) - Remove expired 2x promo code
|
|
70
74
|
|
|
71
75
|
- [pcvelz/ccstatusline-usage](https://github.com/pcvelz/ccstatusline-usage): **Off-Peak cleanup** — Removed expired March 2026 promo (2x) code path, leaving only the permanent peak/off-peak indicator
|
package/dist/ccstatusline.js
CHANGED
|
@@ -52423,12 +52423,14 @@ var init_Settings = __esm(() => {
|
|
|
52423
52423
|
{ id: "sep-battery", type: "separator" },
|
|
52424
52424
|
{ id: "battery", type: "battery", color: "yellow" },
|
|
52425
52425
|
{ id: "sep3", type: "separator" },
|
|
52426
|
-
{ id: "model", type: "model", color: "
|
|
52426
|
+
{ id: "model", type: "model", color: "magenta" },
|
|
52427
52427
|
{ id: "sep4", type: "separator" },
|
|
52428
52428
|
{ id: "session-id", type: "claude-session-id", color: "cyan" }
|
|
52429
52429
|
],
|
|
52430
52430
|
[
|
|
52431
52431
|
{ id: "context-bar", type: "context-bar", color: "blue" },
|
|
52432
|
+
{ id: "sep-weekly-pace", type: "separator" },
|
|
52433
|
+
{ id: "weekly-pace", type: "weekly-pace", color: "brightBlue", metadata: { display: "pendulum" } },
|
|
52432
52434
|
{ id: "sep-off-peak", type: "separator" },
|
|
52433
52435
|
{ id: "off-peak", type: "off-peak", color: "green" }
|
|
52434
52436
|
],
|
|
@@ -54072,7 +54074,7 @@ function getTerminalWidth() {
|
|
|
54072
54074
|
function canDetectTerminalWidth() {
|
|
54073
54075
|
return probeTerminalWidth() !== null;
|
|
54074
54076
|
}
|
|
54075
|
-
var __dirname = "/Users/peter/Documents/Code/ccstatusline-usage/src/utils", PACKAGE_VERSION = "2.3.
|
|
54077
|
+
var __dirname = "/Users/peter/Documents/Code/ccstatusline-usage/src/utils", PACKAGE_VERSION = "2.3.7";
|
|
54076
54078
|
var init_terminal = () => {};
|
|
54077
54079
|
|
|
54078
54080
|
// src/utils/renderer.ts
|