wormclaude 1.0.34 → 1.0.35

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/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.34';
19
+ export const VERSION = '1.0.35';
package/dist/tui.js CHANGED
@@ -78,9 +78,12 @@ export async function runTui() {
78
78
  function redrawAll() {
79
79
  setRegion();
80
80
  process.stdout.write('\x1b[2J\x1b[3J\x1b[H');
81
- process.stdout.write(headerLines(cols()).join('\n') + '\n');
82
- for (const it of displayItems)
83
- process.stdout.write(itemAnsi(it, cols()) + '\n');
81
+ const W = cols();
82
+ // Sıra: BANNER (+ alt yazı) → model/plan/mail/cwd başlığı → mesajlar.
83
+ process.stdout.write(itemAnsi(displayItems[0], W) + '\n'); // banner (displayItems[0])
84
+ process.stdout.write(headerLines(W).join('\n') + '\n'); // banner ALTINA: model/sürüm/plan/mail/cwd
85
+ for (let i = 1; i < displayItems.length; i++)
86
+ process.stdout.write(itemAnsi(displayItems[i], W) + '\n');
84
87
  drawFooter();
85
88
  }
86
89
  // İçerik öğesini ekle + içerik alanına bas (taşarsa scrollback'e → kopyalanır). Footer sabit kalır.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {