@tiens.nguyen/gonext-local-worker 1.0.265 → 1.0.267

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.
Files changed (2) hide show
  1. package/gonext-repl.mjs +4 -3
  2. package/package.json +1 -1
package/gonext-repl.mjs CHANGED
@@ -48,9 +48,10 @@ const white = (s) => `\x1b[37m${s}\x1b[0m`;
48
48
  // code 34 (blue) which many dark-theme palettes render as purple/indigo instead.
49
49
  const codeColor = (s) => `\x1b[90m${s}\x1b[0m`;
50
50
  const bold = (s) => `\x1b[1m${s}\x1b[0m`;
51
- // Hover highlight for the clickable thinking line (task #96): bold + underline + bright
52
- // green so it reads as an interactive "link" the moment the mouse is over it.
53
- const hoverThought = (s) => `\x1b[1;4;92m${s}\x1b[0m`;
51
+ // Hover highlight for the clickable thinking line (task #96): just shift the color a little
52
+ // toward white (no bold/underline/anchor) so it subtly signals "hovered" without looking like
53
+ // a link. 97 = bright white.
54
+ const hoverThought = (s) => `\x1b[97m${s}\x1b[0m`;
54
55
 
55
56
  // The worker's "still thinking" heartbeat lines look like "Caffeinating… (90s)" — we
56
57
  // SWALLOW them from the terminal (the local ticker below drives progress instead), and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.265",
3
+ "version": "1.0.267",
4
4
  "description": "Polls GoNext cloud API for async local LLM jobs and runs them against Ollama/OpenAI-compatible servers on this Mac",
5
5
  "type": "module",
6
6
  "license": "MIT",