wormclaude 1.0.64 → 1.0.65

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 CHANGED
@@ -78,17 +78,16 @@ export function bannerAnsi(cols) {
78
78
  const w = Math.max(10, cols);
79
79
  const rows = cols >= 90 ? WORM_ROWS.map((r, i) => r + CLAUDE_ROWS[i]) : [...WORM_ROWS, ...CLAUDE_ROWS];
80
80
  const body = rows.map((r) => paint(r.length > w ? r.slice(0, w) : r, theme.red, true)).join('\n');
81
- // İmza: "✶✶ By S.Y® ✶✶"büyük WORMCLAUDE'un SAĞ ucuna (CLAUDE'un "DE"si) hizalı.
82
- // İki-tonlu yıldız: tek glif yarı-renk yapılamaz → yan yana 1 kırmızı + 1 beyaz (iki yanda ayna).
81
+ // Tek satır: SOLDA alt-yazı (uncensored security + code), SAĞDA imza (✶ By S.Y — "DE" altında).
83
82
  const sign = (process.env.WORMCLAUDE_SIGN || 'S.Y').trim();
84
83
  const star = paint('✶', theme.redBright, true);
85
- const left = star, right = star; // tek yıldız: solda + sağda
86
- const sigCore = paint(' By ' + sign, theme.greyDim) + paint('®', theme.red, true) + ' ';
87
- const plain = '✶ By ' + sign + '® ✶'; // genişlik hesabı (ANSI'siz)
84
+ const subtitle = t('banner.subtitle');
85
+ const sigPlain = ' By ' + sign + ' ';
86
+ const leftPlain = ' ' + subtitle;
88
87
  const bannerW = Math.min(Math.max(...rows.map((r) => r.length)), w);
89
- const pad = ' '.repeat(Math.max(2, bannerW - plain.length)); // sağa hizala → "DE" altına
90
- const sig = pad + left + sigCore + right;
91
- return body + '\n' + sig + '\n' + paint(' ' + t('banner.subtitle'), theme.greyDim);
88
+ const gap = ' '.repeat(Math.max(2, bannerW - leftPlain.length - sigPlain.length));
89
+ const line = paint(leftPlain, theme.greyDim) + gap + star + paint(' By ' + sign + ' ', theme.greyDim) + star;
90
+ return body + '\n' + line;
92
91
  }
93
92
  // ── Markdown bloğu → ANSI (kod blokları sözdizimi-vurgulu) ──
94
93
  export function markdownAnsi(text, cols) {
package/dist/i18n.js CHANGED
@@ -46,7 +46,7 @@ const STR = {
46
46
  'trust.yes': '1. Evet, bu klasöre güveniyorum',
47
47
  'trust.no': '2. Hayır, çık',
48
48
  'trust.hint': 'Enter onayla · Esc iptal · ↑↓ veya 1-2 seç',
49
- 'banner.subtitle': 'uncensored security + code · /help komutlar',
49
+ 'banner.subtitle': 'uncensored security + code',
50
50
  'input.placeholder': 'bir şey yaz... (/ komutlar)',
51
51
  'menu.navHint': '↑↓ gez · Enter seç',
52
52
  'menu.noCmd': '(komut yok)',
@@ -106,7 +106,7 @@ const STR = {
106
106
  'trust.yes': '1. Yes, I trust this folder',
107
107
  'trust.no': '2. No, exit',
108
108
  'trust.hint': 'Enter to confirm · Esc to cancel · ↑↓ or 1-2 to select',
109
- 'banner.subtitle': 'uncensored security + code · /help commands',
109
+ 'banner.subtitle': 'uncensored security + code',
110
110
  'input.placeholder': 'type something... (/ for commands)',
111
111
  'menu.navHint': '↑↓ move · Enter select',
112
112
  'menu.noCmd': '(no command)',
package/dist/theme.js CHANGED
@@ -16,4 +16,4 @@ export const theme = {
16
16
  synType: '#a78bfa', // tip/sınıf adları, sabitler
17
17
  synProp: '#e0e0e0', // özellik/anahtar adları
18
18
  };
19
- export const VERSION = '1.0.64';
19
+ export const VERSION = '1.0.65';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {