@nonbot/cli 0.5.14 → 0.5.15
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/CHANGELOG.md +6 -0
- package/dist/lib/output.js +0 -7
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @nonbot/cli changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.15
|
|
4
|
+
|
|
5
|
+
- Daemon banner tagline is now a single fixed line ("click ▶ on the canvas.
|
|
6
|
+
terminal opens here. that's it.") instead of a rotating pool — same line
|
|
7
|
+
every restart.
|
|
8
|
+
|
|
3
9
|
## 0.5.14
|
|
4
10
|
|
|
5
11
|
- Daemon startup banner: the non.bot wordmark now renders with a colour
|
package/dist/lib/output.js
CHANGED
|
@@ -307,14 +307,7 @@ export function fixBlock(args) {
|
|
|
307
307
|
return lines.join('\n');
|
|
308
308
|
}
|
|
309
309
|
export const DAEMON_TAGLINES = [
|
|
310
|
-
'wired in. every Run lands here.',
|
|
311
|
-
"the canvas thinks. this runs. that's the whole deal.",
|
|
312
310
|
"click ▶ on the canvas. terminal opens here. that's it.",
|
|
313
|
-
'listening for chevrons. it\'s go time.',
|
|
314
|
-
'halfway between intent and shipped. ready when you are.',
|
|
315
|
-
'between the canvas and your terminal — door\'s open.',
|
|
316
|
-
'you click, this catches. no rituals required.',
|
|
317
|
-
'standing by. nothing fancy, just nothing missed.',
|
|
318
311
|
];
|
|
319
312
|
export function pickDaemonTagline(seed, pool = DAEMON_TAGLINES) {
|
|
320
313
|
const n = pool.length;
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.5.
|
|
1
|
+
export const VERSION = '0.5.15';
|
package/package.json
CHANGED