@modelstatus/cli 0.1.58 → 0.1.59
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/app.js +1 -1
- package/src/tui/views/scan.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modelstatus/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.59",
|
|
4
4
|
"description": "Track which AI models you use, where, and never get surprised by a retirement. Free offline model-health for any repo (mm status), browser sign-in for cloud inventory + alerts.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"llm",
|
package/src/tui/app.js
CHANGED
|
@@ -281,7 +281,7 @@ export function App({ apiBase, apiKey, dir, initialView, onSignedIn, fresh }) {
|
|
|
281
281
|
h(Text, {}, ""),
|
|
282
282
|
toast ? h(Text, { color: toast.color }, ` ${toast.msg}`) : h(Text, {}, ""),
|
|
283
283
|
h(StatusBar, { segsLeft, segsRight, width: W }),
|
|
284
|
-
h(KeyBar, { keys: keys.some((k) => k.k === "P") ? keys : [...keys, { k: "P", label: "play" }], width: W }),
|
|
284
|
+
h(KeyBar, { keys: keys.some((k) => k.k === "P") ? keys : [...keys, { k: "P", label: "play 🦍" }], width: W }),
|
|
285
285
|
);
|
|
286
286
|
}
|
|
287
287
|
|
package/src/tui/views/scan.js
CHANGED
|
@@ -45,7 +45,7 @@ export const meta = {
|
|
|
45
45
|
{ k: "/", label: "search" },
|
|
46
46
|
{ k: "g", label: "rescan" },
|
|
47
47
|
{ k: "u", label: "upload all" },
|
|
48
|
-
{ k: "P", label: "play" }, // launches anytime (also the global Shift-P)
|
|
48
|
+
{ k: "P", label: "play 🦍" }, // launches anytime (also the global Shift-P)
|
|
49
49
|
{ k: "N", label: "new project" },
|
|
50
50
|
],
|
|
51
51
|
};
|
|
@@ -319,7 +319,7 @@ export function ScanView({ client, dir, ui, active, width = 78, height = 14, fre
|
|
|
319
319
|
|
|
320
320
|
// While the walk is still running (and the terminal fits a board), nudge the
|
|
321
321
|
// "Play Donkey Kong while you wait" affordance on the showing line.
|
|
322
|
-
const playHint = running && canPlay ? " · P play" : "";
|
|
322
|
+
const playHint = running && canPlay ? " · P play 🦍" : "";
|
|
323
323
|
const showingLine = h(
|
|
324
324
|
Text,
|
|
325
325
|
{ color: C.FG_FAINT },
|