cctally 1.83.0 → 1.83.1
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/CHANGELOG.md +5 -0
- package/bin/_cctally_doctor.py +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [1.83.1] - 2026-07-28
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Doctor golden fixtures now pin the macOS backup/sync classifier as well as the `tmutil` response, keeping the public Linux CI matrix byte-stable across platforms.
|
|
12
|
+
|
|
8
13
|
## [1.83.0] - 2026-07-28
|
|
9
14
|
|
|
10
15
|
### Added
|
package/bin/_cctally_doctor.py
CHANGED
|
@@ -130,7 +130,11 @@ def _gather_backup_sync_state(
|
|
|
130
130
|
run=subprocess.run,
|
|
131
131
|
) -> dict:
|
|
132
132
|
"""Classify known macOS file-level backup/sync coverage without mutation."""
|
|
133
|
-
platform_name =
|
|
133
|
+
platform_name = (
|
|
134
|
+
platform_name
|
|
135
|
+
or os.environ.get("CCTALLY_DOCTOR_FIXTURE_PLATFORM")
|
|
136
|
+
or sys.platform
|
|
137
|
+
)
|
|
134
138
|
if platform_name != "darwin":
|
|
135
139
|
return {"status": "unsupported", "provider": None}
|
|
136
140
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cctally",
|
|
3
|
-
"version": "1.83.
|
|
3
|
+
"version": "1.83.1",
|
|
4
4
|
"description": "Claude Code usage tracker and local dashboard for Pro/Max subscription limits - weekly cost-per-percent trend, quota forecasts, threshold alerts. ccusage-compatible.",
|
|
5
5
|
"homepage": "https://github.com/omrikais/cctally",
|
|
6
6
|
"repository": {
|