cctally 1.92.2 → 1.93.0
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 +43 -0
- package/bin/_cctally_cache.py +354 -0
- package/bin/_cctally_core.py +180 -3
- package/bin/_cctally_dashboard.py +71 -1
- package/bin/_cctally_dashboard_envelope.py +28 -2
- package/bin/_cctally_dashboard_share.py +75 -19
- package/bin/_cctally_dashboard_sources.py +12 -0
- package/bin/_cctally_db.py +89 -1
- package/bin/_cctally_doctor.py +31 -0
- package/bin/_cctally_forecast.py +4 -2
- package/bin/_cctally_journal.py +3482 -258
- package/bin/_cctally_journal_repair.py +123 -32
- package/bin/_cctally_milestone_history.py +4 -1
- package/bin/_cctally_project.py +8 -6
- package/bin/_cctally_quota.py +420 -20
- package/bin/_cctally_rederive.py +57 -23
- package/bin/_cctally_reporting.py +8 -6
- package/bin/_cctally_share.py +74 -37
- package/bin/_cctally_source_analytics.py +6 -8
- package/bin/_cctally_store.py +13 -2
- package/bin/_cctally_tui.py +53 -0
- package/bin/_lib_cache_coverage.py +547 -0
- package/bin/_lib_doctor.py +54 -2
- package/bin/_lib_journal.py +235 -95
- package/bin/_lib_journal_router.py +21 -0
- package/bin/_lib_segment_summary.py +374 -0
- package/bin/_lib_selector_state.py +959 -0
- package/bin/_lib_share.py +1073 -165
- package/bin/_lib_share_templates.py +35 -11
- package/bin/_lib_stats_wal.py +327 -0
- package/bin/_lib_view_models.py +2 -1
- package/dashboard/static/assets/index-DwWJOYxd.css +1 -0
- package/dashboard/static/assets/{index-Dat-mza6.js → index-HlIK7k8Q.js} +47 -47
- package/dashboard/static/dashboard.html +2 -2
- package/package.json +5 -1
- package/dashboard/static/assets/index-DnWdv8um.css +0 -1
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
6
6
|
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
|
|
7
7
|
<title>cctally dashboard</title>
|
|
8
|
-
<script type="module" crossorigin src="/static/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/static/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/static/assets/index-HlIK7k8Q.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/static/assets/index-DwWJOYxd.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cctally",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.93.0",
|
|
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": {
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"bin/_lib_background_mcp.py",
|
|
68
68
|
"bin/_lib_blocks.py",
|
|
69
69
|
"bin/_lib_budget.py",
|
|
70
|
+
"bin/_lib_cache_coverage.py",
|
|
70
71
|
"bin/_lib_cache_report.py",
|
|
71
72
|
"bin/_lib_cache_report_wire.py",
|
|
72
73
|
"bin/_lib_cache_writer_lock.py",
|
|
@@ -119,6 +120,8 @@
|
|
|
119
120
|
"bin/_lib_record.py",
|
|
120
121
|
"bin/_lib_rederive.py",
|
|
121
122
|
"bin/_lib_render.py",
|
|
123
|
+
"bin/_lib_segment_summary.py",
|
|
124
|
+
"bin/_lib_selector_state.py",
|
|
122
125
|
"bin/_lib_semver.py",
|
|
123
126
|
"bin/_lib_share.py",
|
|
124
127
|
"bin/_lib_share_templates.py",
|
|
@@ -127,6 +130,7 @@
|
|
|
127
130
|
"bin/_lib_source_identity.py",
|
|
128
131
|
"bin/_lib_stats_damage.py",
|
|
129
132
|
"bin/_lib_stats_publish.py",
|
|
133
|
+
"bin/_lib_stats_wal.py",
|
|
130
134
|
"bin/_lib_statusline.py",
|
|
131
135
|
"bin/_lib_statusline_candidates.py",
|
|
132
136
|
"bin/_lib_subscription_weeks.py",
|