lumira 1.12.1 → 1.12.2
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.
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
},
|
|
6
6
|
"metadata": {
|
|
7
7
|
"description": "Real-time statusline HUD for Claude Code and Qwen Code — analytics, quota projection, themes, powerline",
|
|
8
|
-
"version": "1.12.
|
|
8
|
+
"version": "1.12.2"
|
|
9
9
|
},
|
|
10
10
|
"plugins": [
|
|
11
11
|
{
|
|
12
12
|
"name": "lumira",
|
|
13
13
|
"source": "./",
|
|
14
14
|
"description": "Real-time statusline HUD for Claude Code and Qwen Code. Session analytics, API latency widget, 7-day quota projection, auto-compact warnings, 7 themes, powerline support. Zero runtime dependencies. Run /lumira:setup after install to activate.",
|
|
15
|
-
"version": "1.12.
|
|
15
|
+
"version": "1.12.2",
|
|
16
16
|
"author": {
|
|
17
17
|
"name": "Carlos Cativo"
|
|
18
18
|
},
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
]
|
|
33
33
|
}
|
|
34
34
|
],
|
|
35
|
-
"version": "1.12.
|
|
35
|
+
"version": "1.12.2"
|
|
36
36
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lumira",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"description": "Real-time statusline HUD for Claude Code and Qwen Code — session analytics, API latency, 7-day quota projection, auto-compact warnings, 7 themes, powerline. Zero runtime deps.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Carlos Cativo"
|
package/dist/render/icons.js
CHANGED
|
@@ -59,9 +59,9 @@ export const NERD_ICONS = {
|
|
|
59
59
|
checkmark: '✓', // checkmark
|
|
60
60
|
car: '🏎️', // racing car — pace-ahead indicator
|
|
61
61
|
turtle: '🐢', // turtle — pace-behind indicator
|
|
62
|
-
lightning: '
|
|
62
|
+
lightning: '', // U+F140B — nerd lightning-bolt (was ⚡ emoji); cache hit rate
|
|
63
63
|
pr: '', // nf-cod-git_pull_request
|
|
64
|
-
thinking: '
|
|
64
|
+
thinking: '', // U+F09D1 — clearer "thinking" glyph; nf-md-brain (U+F1824) renders faint in many fonts
|
|
65
65
|
battery: nerdBattery,
|
|
66
66
|
};
|
|
67
67
|
export const EMOJI_ICONS = {
|
package/dist/render/line2.js
CHANGED
|
@@ -247,7 +247,7 @@ export function renderLine2(ctx, c) {
|
|
|
247
247
|
rightParts.push(c.dim(`^${effort}`));
|
|
248
248
|
}
|
|
249
249
|
if (display.thinking && input.thinkingEnabled) {
|
|
250
|
-
rightParts.push(c.
|
|
250
|
+
rightParts.push(c.magenta(icons.thinking));
|
|
251
251
|
}
|
|
252
252
|
// Config health hints (opt-in, default off). Sit on the right side as
|
|
253
253
|
// auxiliary signals next to vim/effort, and are dropped silently when the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lumira",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"description": "Real-time statusline HUD for Claude Code and Qwen Code. Includes session analytics CLI, API latency overhead widget, 7d quota projection, auto-compact proximity warnings, themes, and powerline. Zero deps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|