@mrquake/quakecode-cli 0.64.7 → 0.64.9
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/modes/interactive/components/assistant-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/assistant-message.js +0 -3
- package/dist/modes/interactive/components/assistant-message.js.map +1 -1
- package/dist/modes/interactive/components/user-message.d.ts.map +1 -1
- package/dist/modes/interactive/components/user-message.js +2 -1
- package/dist/modes/interactive/components/user-message.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +3 -3
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/package.json +2 -2
|
@@ -426,9 +426,9 @@ export class InteractiveMode {
|
|
|
426
426
|
// Add spinner if agent is thinking or working
|
|
427
427
|
const isActive = this.session.agent.state.isStreaming || this.session.agent.state.pendingToolCalls.size > 0;
|
|
428
428
|
if (isActive) {
|
|
429
|
-
const
|
|
430
|
-
const
|
|
431
|
-
this.ui.terminal.setTitle(`${
|
|
429
|
+
const isBlinkOn = Math.floor((Date.now() / 100) / 6) % 2 === 0;
|
|
430
|
+
const dot = isBlinkOn ? "•" : "◦";
|
|
431
|
+
this.ui.terminal.setTitle(`${dot} ${title}`);
|
|
432
432
|
}
|
|
433
433
|
else {
|
|
434
434
|
this.ui.terminal.setTitle(title);
|