mocode-ai 0.5.0 → 0.5.1
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/ui/render.js +4 -4
- package/package.json +1 -1
package/dist/ui/render.js
CHANGED
|
@@ -236,10 +236,10 @@ const LOGO_W = 35; // logo 区显示宽度
|
|
|
236
236
|
const LOGO_GAP = 0; // logo 与信息区之间的间隔
|
|
237
237
|
// 块字符画 4 行:M / o / C / o / d / e,块字符上半/下半合并两个 ASCII 行
|
|
238
238
|
const LOGO_LINES = [
|
|
239
|
-
'
|
|
240
|
-
'
|
|
241
|
-
'█ █ █ █ █ █
|
|
242
|
-
'▀ ▀ ▀ ▀▀▀▀
|
|
239
|
+
' ▄ ',
|
|
240
|
+
'█▀█▀█ █▀▀█ ▄▄▄▄ ▄▄▄▄ ▄▄▄█ ▄▄▄▄',
|
|
241
|
+
'█ █ █ █ █ █ ▀ █ █ █ █ █▄▄█',
|
|
242
|
+
'▀ ▀ ▀ ▀▀▀▀ █▄▄█ █▄▄█ █▄▄█ █▄▄▄',
|
|
243
243
|
];
|
|
244
244
|
/** 取第 idx 行 logo(着色 + 补宽 + LOGO_GAP 间隔),与 info 行直接拼接(neofetch 风)。 */
|
|
245
245
|
function logoLine(idx) {
|