wormclaude 1.0.60 → 1.0.61
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 +1 -1
- package/dist/theme.js +1 -1
- package/package.json +1 -1
package/dist/ansi.js
CHANGED
|
@@ -80,7 +80,7 @@ export function bannerAnsi(cols) {
|
|
|
80
80
|
const body = rows.map((r) => paint(r.length > w ? r.slice(0, w) : r, theme.red, true)).join('\n');
|
|
81
81
|
// İmza + ticari marka: "WORMCLAUDE® · by S.Y" (initial env ile değiştirilebilir).
|
|
82
82
|
const sign = (process.env.WORMCLAUDE_SIGN || 'S.Y').trim();
|
|
83
|
-
const sig = paint(' WORMCLAUDE®', theme.red, true) + paint(' ·
|
|
83
|
+
const sig = paint(' WORMCLAUDE®', theme.red, true) + paint(' · By ' + sign, theme.greyDim);
|
|
84
84
|
return body + '\n' + sig + '\n' + paint(' ' + t('banner.subtitle'), theme.greyDim);
|
|
85
85
|
}
|
|
86
86
|
// ── Markdown bloğu → ANSI (kod blokları sözdizimi-vurgulu) ──
|
package/dist/theme.js
CHANGED