@volter-ai-dev/supercode-ui 0.1.10 → 0.1.11
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/components.mjs +1 -1
- package/core.mjs +1 -1
- package/embed.mjs +1 -1
- package/messenger.mjs +1 -1
- package/package.json +1 -1
package/components.mjs
CHANGED
|
@@ -545,7 +545,7 @@ function canContinueHere(state) {
|
|
|
545
545
|
}
|
|
546
546
|
function operationLabel(operation) {
|
|
547
547
|
if (!operation) return "";
|
|
548
|
-
const labels = { discover: "Refreshing chats\u2026", attach: "Opening chat\u2026", resume: "Continuing here\u2026", branch: "Starting continuation\u2026", reduce: "Reducing context and verifying reversibility\u2026", terminal: "Preparing terminal handoff\u2026", export: "Exporting losslessly\u2026", refresh: "Retrying\u2026" };
|
|
548
|
+
const labels = { discover: "Refreshing chats\u2026", observe: "Loading recent messages\u2026", attach: "Opening chat\u2026", resume: "Continuing here\u2026", branch: "Starting continuation\u2026", reduce: "Reducing context and verifying reversibility\u2026", terminal: "Preparing terminal handoff\u2026", export: "Exporting losslessly\u2026", refresh: "Retrying\u2026" };
|
|
549
549
|
return labels[operation] ?? `${operation.replaceAll("_", " ")}\u2026`;
|
|
550
550
|
}
|
|
551
551
|
function terminalCommand(handoff) {
|
package/core.mjs
CHANGED
|
@@ -636,7 +636,7 @@ export function canContinueHere(state) {
|
|
|
636
636
|
|
|
637
637
|
export function operationLabel(operation) {
|
|
638
638
|
if (!operation) return '';
|
|
639
|
-
const labels = { discover: 'Refreshing chats…', attach: 'Opening chat…', resume: 'Continuing here…', branch: 'Starting continuation…', reduce: 'Reducing context and verifying reversibility…', terminal: 'Preparing terminal handoff…', export: 'Exporting losslessly…', refresh: 'Retrying…' };
|
|
639
|
+
const labels = { discover: 'Refreshing chats…', observe: 'Loading recent messages…', attach: 'Opening chat…', resume: 'Continuing here…', branch: 'Starting continuation…', reduce: 'Reducing context and verifying reversibility…', terminal: 'Preparing terminal handoff…', export: 'Exporting losslessly…', refresh: 'Retrying…' };
|
|
640
640
|
return labels[operation] ?? `${operation.replaceAll('_', ' ')}…`;
|
|
641
641
|
}
|
|
642
642
|
|
package/embed.mjs
CHANGED
|
@@ -548,7 +548,7 @@ function canContinueHere(state) {
|
|
|
548
548
|
}
|
|
549
549
|
function operationLabel(operation) {
|
|
550
550
|
if (!operation) return "";
|
|
551
|
-
const labels = { discover: "Refreshing chats\u2026", attach: "Opening chat\u2026", resume: "Continuing here\u2026", branch: "Starting continuation\u2026", reduce: "Reducing context and verifying reversibility\u2026", terminal: "Preparing terminal handoff\u2026", export: "Exporting losslessly\u2026", refresh: "Retrying\u2026" };
|
|
551
|
+
const labels = { discover: "Refreshing chats\u2026", observe: "Loading recent messages\u2026", attach: "Opening chat\u2026", resume: "Continuing here\u2026", branch: "Starting continuation\u2026", reduce: "Reducing context and verifying reversibility\u2026", terminal: "Preparing terminal handoff\u2026", export: "Exporting losslessly\u2026", refresh: "Retrying\u2026" };
|
|
552
552
|
return labels[operation] ?? `${operation.replaceAll("_", " ")}\u2026`;
|
|
553
553
|
}
|
|
554
554
|
function terminalCommand(handoff) {
|
package/messenger.mjs
CHANGED
|
@@ -545,7 +545,7 @@ function canContinueHere(state) {
|
|
|
545
545
|
}
|
|
546
546
|
function operationLabel(operation) {
|
|
547
547
|
if (!operation) return "";
|
|
548
|
-
const labels = { discover: "Refreshing chats\u2026", attach: "Opening chat\u2026", resume: "Continuing here\u2026", branch: "Starting continuation\u2026", reduce: "Reducing context and verifying reversibility\u2026", terminal: "Preparing terminal handoff\u2026", export: "Exporting losslessly\u2026", refresh: "Retrying\u2026" };
|
|
548
|
+
const labels = { discover: "Refreshing chats\u2026", observe: "Loading recent messages\u2026", attach: "Opening chat\u2026", resume: "Continuing here\u2026", branch: "Starting continuation\u2026", reduce: "Reducing context and verifying reversibility\u2026", terminal: "Preparing terminal handoff\u2026", export: "Exporting losslessly\u2026", refresh: "Retrying\u2026" };
|
|
549
549
|
return labels[operation] ?? `${operation.replaceAll("_", " ")}\u2026`;
|
|
550
550
|
}
|
|
551
551
|
function terminalCommand(handoff) {
|