wormclaude 1.0.63 → 1.0.64
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/ansi.js +3 -4
- package/dist/theme.js +1 -1
- package/package.json +1 -1
package/dist/ansi.js
CHANGED
|
@@ -81,11 +81,10 @@ export function bannerAnsi(cols) {
|
|
|
81
81
|
// İmza: "✶✶ By S.Y® ✶✶" — büyük WORMCLAUDE'un SAĞ ucuna (CLAUDE'un "DE"si) hizalı.
|
|
82
82
|
// İki-tonlu yıldız: tek glif yarı-renk yapılamaz → yan yana 1 kırmızı + 1 beyaz (iki yanda ayna).
|
|
83
83
|
const sign = (process.env.WORMCLAUDE_SIGN || 'S.Y').trim();
|
|
84
|
-
const
|
|
85
|
-
const left =
|
|
86
|
-
const right = st(theme.red) + st(theme.white); // ✶kırmızı ✶beyaz (ayna)
|
|
84
|
+
const star = paint('✶', theme.redBright, true);
|
|
85
|
+
const left = star, right = star; // tek yıldız: solda + sağda
|
|
87
86
|
const sigCore = paint(' By ' + sign, theme.greyDim) + paint('®', theme.red, true) + ' ';
|
|
88
|
-
const plain = '
|
|
87
|
+
const plain = '✶ By ' + sign + '® ✶'; // genişlik hesabı (ANSI'siz)
|
|
89
88
|
const bannerW = Math.min(Math.max(...rows.map((r) => r.length)), w);
|
|
90
89
|
const pad = ' '.repeat(Math.max(2, bannerW - plain.length)); // sağa hizala → "DE" altına
|
|
91
90
|
const sig = pad + left + sigCore + right;
|
package/dist/theme.js
CHANGED