claude-quota-bar-linux-arm64 0.3.1 → 0.3.3

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 CHANGED
@@ -2,10 +2,10 @@
2
2
 
3
3
  Fast Rust statusline for [Claude Code](https://github.com/anthropics/claude-code).
4
4
  Battery-style 5-hour / 7-day quota bars, context-window indicator, prompt-cache
5
- state, and `dir:branch *N` — at ~2.5ms cold start and a 459KB binary.
5
+ state, and `dir:branch *N` — at ~2.5ms cold start and a ~0.5MB binary.
6
6
 
7
7
  ```
8
- 5h[███42%░░░░]⏰26m | 7d[███35%░░░░]⏰8d3h | Opus 4.7(71.0k/200.0k) | cache 4m12s | proj:main *3
8
+ 5h[███42%░░░░]⏰26m | 7d[███35%░░░░]⏰8d3h | Opus 4.7(71.0k/1.0M) | cache 4m12s | proj:main *3
9
9
  ```
10
10
 
11
11
  ## Why this and not the Python ones
@@ -50,7 +50,7 @@ Default layout: `5h,7d,model,cache,dir`.
50
50
  |---------|--------|---------------|
51
51
  | `5h` | `rate_limits.five_hour` | Battery bar with `%` inside, plus `⏰` countdown to reset |
52
52
  | `7d` | `rate_limits.seven_day` | Same, weekly window |
53
- | `model` | `model` + `context_window` | `Opus 4.7(71k/200k)` — model + ctx tokens used / window |
53
+ | `model` | `model` + `context_window` | `Opus 4.7(71.0k/1.0M)` — model + ctx tokens used / window |
54
54
  | `cache` | transcript scan | Time left on the prompt cache (`4m12s`), or `COLD` once it has expired |
55
55
  | `dir` | `workspace.current_dir` + git | `proj:main *3 ↑1 ↓2` — dir, branch, dirty count, ahead/behind |
56
56
 
@@ -76,7 +76,7 @@ Severity thresholds (green / yellow / red) flip at 30% and 70% quota used.
76
76
  Requires Rust ≥ 1.85 (Edition 2024).
77
77
 
78
78
  ```sh
79
- cargo test # 70 tests
79
+ cargo test
80
80
  cargo clippy --all-targets -- -D warnings
81
81
  cargo fmt --all -- --check
82
82
 
@@ -90,6 +90,9 @@ cat <<EOF | cargo run --release
90
90
  EOF
91
91
  ```
92
92
 
93
+ Releases are fully automated (release-plz Release PR → crates.io + npm + GitHub
94
+ Release via OIDC). See [docs/RELEASING.md](docs/RELEASING.md).
95
+
93
96
  ## License
94
97
 
95
98
  MIT — see [LICENSE](./LICENSE).
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-quota-bar-linux-arm64",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
4
4
  "description": "Native binary for claude-quota-bar (Linux arm64 glibc)",
5
5
  "license": "MIT",
6
6
  "repository": "git+https://github.com/xrf9268-hue/claude-quota-bar.git",