@askalf/dario 5.4.9 → 5.4.10
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.
|
@@ -61,7 +61,10 @@ export const AnalyticsTab = {
|
|
|
61
61
|
const lines = [];
|
|
62
62
|
const w = dimv.cols;
|
|
63
63
|
const barWidth = Math.min(36, w - 32);
|
|
64
|
-
|
|
64
|
+
// Bounded like every other row. This is a `required` panel, so the row
|
|
65
|
+
// budget never clips it — without a truncate it overflows a very narrow
|
|
66
|
+
// terminal (25 wide at 24 cols). Found by tools/tui-audit.
|
|
67
|
+
lines.push(truncate(' ' + brand('Analytics') + dim(` — last ${state.summary?.window.minutes ?? 60} min`), w));
|
|
65
68
|
if (!state.summary && state.loading) {
|
|
66
69
|
lines.push('');
|
|
67
70
|
lines.push(' ' + dim('Loading…'));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askalf/dario",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.10",
|
|
4
4
|
"description": "Use your Claude Pro/Max subscription in any tool — Cursor, Cline, Aider, the Agent SDK, your scripts — at subscription pricing, not per-token API bills. One local Anthropic + OpenAI-compatible endpoint.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"drift:wire": "node scripts/check-wire-drift.mjs",
|
|
36
36
|
"check:overage": "node scripts/check-overage-live.mjs",
|
|
37
37
|
"cch:calibrate": "node scripts/cch-calibrate.mjs",
|
|
38
|
-
"fix:pkg": "node -e \"const fs=require('fs');fs.writeFileSync('package.json',JSON.stringify(JSON.parse(fs.readFileSync('package.json','utf-8')),null,2)+'\\n')\""
|
|
38
|
+
"fix:pkg": "node -e \"const fs=require('fs');fs.writeFileSync('package.json',JSON.stringify(JSON.parse(fs.readFileSync('package.json','utf-8')),null,2)+'\\n')\"",
|
|
39
|
+
"audit:tui": "node tools/tui-audit/audit.mjs"
|
|
39
40
|
},
|
|
40
41
|
"keywords": [
|
|
41
42
|
"llm",
|