claude-cup 0.2.5 → 0.2.6
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/package.json +1 -1
- package/src/tui.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-cup",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Claude Jar v2 — native desktop visual companion (Tauri + Svelte) with MCP/hook integration for live Claude activity. Beautiful accumulating jar + live intensity meter. The jar is the usage meter.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
package/src/tui.js
CHANGED
|
@@ -332,7 +332,7 @@ function drawFootball(g, mx, my, scene, cols) {
|
|
|
332
332
|
};
|
|
333
333
|
for (const c of scene.confetti) paint(c.x, c.y, '\u00b7', { fg: c.color, bold: true });
|
|
334
334
|
for (const t of scene.trail) paint(t.x, t.y, '\u00b7', { fg: CLOUD, dim: true });
|
|
335
|
-
if (scene.ball) paint(scene.ball.x, scene.ball.y, '\u25cf', { fg:
|
|
335
|
+
if (scene.ball) paint(scene.ball.x, scene.ball.y, '\u25cf', { fg: CLAY, bold: true });
|
|
336
336
|
if (scene.goal) {
|
|
337
337
|
const text = 'GOAL!';
|
|
338
338
|
for (let i = 0; i < text.length; i++) paint(mx + 15 + i, my + 1, text[i], { fg: KRAFT, bold: true });
|