wormclaude 1.0.41 → 1.0.42

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.41';
19
+ export const VERSION = '1.0.42';
package/dist/tui.js CHANGED
@@ -131,10 +131,11 @@ export async function runTui() {
131
131
  let answer = '';
132
132
  let toolCalls = [];
133
133
  for await (const ev of streamChat(history, allToolSchemas(), config)) {
134
+ // NOT: token başına drawFooter ÇAĞIRMA (uzun cevapta binlerce çizim → titreme/kaybolma).
135
+ // streamChars güncellenir; footer'ı 120ms'lik spinTimer çizer; yazma anında keypress çizer.
134
136
  if (ev.type === 'text') {
135
137
  answer += ev.text;
136
138
  streamChars = answer.length;
137
- drawFooter();
138
139
  }
139
140
  else if (ev.type === 'done')
140
141
  toolCalls = ev.toolCalls || [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wormclaude",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "WormClaude CLI - uncensored security+code assistant (ink TUI, Claude-style)",
5
5
  "type": "module",
6
6
  "bin": {