ccstatusline 2.0.5 → 2.0.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/LICENSE +6 -2
- package/README.md +19 -1
- package/dist/ccstatusline.js +694 -503
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025
|
|
3
|
+
Copyright (c) 2025 Matthew Breedlove (https://github.com/sirmalloc)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,8 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
Original author: Matthew Breedlove (https://github.com/sirmalloc)
|
|
25
|
+
Official repository: https://github.com/sirmalloc/ccstatusline
|
package/README.md
CHANGED
|
@@ -42,6 +42,24 @@
|
|
|
42
42
|
|
|
43
43
|
## 🆕 Recent Updates
|
|
44
44
|
|
|
45
|
+
### v2.0.7 - Current Working Directory & Session Cost
|
|
46
|
+
|
|
47
|
+

|
|
48
|
+
|
|
49
|
+
- **📁 Current Working Directory** - Display the current working directory with configurable segment display
|
|
50
|
+
- Set the number of path segments to show (e.g., show only last 2 segments: `.../Personal/ccstatusline`)
|
|
51
|
+
- Supports raw value mode for compact display
|
|
52
|
+
- Automatically truncates long paths with ellipsis
|
|
53
|
+
- **💰 Session Cost Widget** - Track your Claude Code session costs (requires Claude Code 1.0.85+)
|
|
54
|
+
- Displays total session cost in USD
|
|
55
|
+
- Supports raw value mode (shows just `$X.YZ` vs `Cost: $X.YZ`)
|
|
56
|
+
- Real-time cost tracking from Claude Code session data
|
|
57
|
+
- Note: Cost may not update properly when using `/resume` (Claude Code limitation)
|
|
58
|
+
- **🐛 Bug Fixes**
|
|
59
|
+
- Fixed Block Timer calculations for accurate time tracking across block boundaries
|
|
60
|
+
- Improved widget editor stability with proper Ctrl+S handling
|
|
61
|
+
- Enhanced cursor display in numeric input fields
|
|
62
|
+
|
|
45
63
|
### v2.0.2 - Block Timer Widget
|
|
46
64
|
|
|
47
65
|

|
|
@@ -343,7 +361,7 @@ Contributions are welcome! Please feel free to submit a Pull Request.
|
|
|
343
361
|
## 🔗 Related Projects
|
|
344
362
|
|
|
345
363
|
- [tweakcc](https://github.com/Piebald-AI/tweakcc) - Customize Claude Code themes, thinking verbs, and more.
|
|
346
|
-
- [ccusage](https://github.com/
|
|
364
|
+
- [ccusage](https://github.com/ryoppippi/ccusage) - Track and display Claude Code usage metrics.
|
|
347
365
|
|
|
348
366
|
---
|
|
349
367
|
|