smolcoder 0.4.2 → 0.4.3
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/dist/index.js +6 -6
- package/dist/web/page.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -256,12 +256,12 @@ function sessionLine(m, mode) {
|
|
|
256
256
|
}
|
|
257
257
|
const MODE_ORDER = ["ro", "edit", "bypass"];
|
|
258
258
|
const LOGO_ROWS = [
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
" ██║
|
|
262
|
-
" ██║
|
|
263
|
-
"
|
|
264
|
-
"
|
|
259
|
+
"███████╗ ███╗ ███╗ ██████╗ ██╗ ",
|
|
260
|
+
"██╔════╝ ████╗ ████║ ██╔═══██╗ ██║ ",
|
|
261
|
+
"███████╗ ██╔████╔██║ ██║ ██║ ██║ ",
|
|
262
|
+
"╚════██║ ██║╚██╔╝██║ ██║ ██║ ██║ ",
|
|
263
|
+
"███████║ ██║ ╚═╝ ██║ ╚██████╔╝ ███████╗",
|
|
264
|
+
"╚══════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝",
|
|
265
265
|
];
|
|
266
266
|
function printLogo() {
|
|
267
267
|
const cols = process.stdout.columns || 80;
|
package/dist/web/page.js
CHANGED
|
@@ -88,12 +88,12 @@ exports.PAGE_HTML = `<!doctype html>
|
|
|
88
88
|
</head>
|
|
89
89
|
<body>
|
|
90
90
|
<div id="wrap">
|
|
91
|
-
<div id="logo"
|
|
92
|
-
|
|
93
|
-
██║
|
|
94
|
-
██║
|
|
95
|
-
|
|
96
|
-
|
|
91
|
+
<div id="logo">███████╗ ███╗ ███╗ ██████╗ ██╗
|
|
92
|
+
██╔════╝ ████╗ ████║ ██╔═══██╗ ██║
|
|
93
|
+
███████╗ ██╔████╔██║ ██║ ██║ ██║
|
|
94
|
+
╚════██║ ██║╚██╔╝██║ ██║ ██║ ██║
|
|
95
|
+
███████║ ██║ ╚═╝ ██║ ╚██████╔╝ ███████╗
|
|
96
|
+
╚══════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ <span class="coder">coder — web</span></div>
|
|
97
97
|
<div id="log"></div>
|
|
98
98
|
<div id="busy"><span class="spin">⠋</span> <span id="busylabel">thinking…</span> <span id="busysecs"></span></div>
|
|
99
99
|
</div>
|