Release v3.3.2: Fix auto-update on chat switch & restore character removal

This commit is contained in:
Spicy_Marinara
2026-01-09 10:04:29 +01:00
parent 659b5bb82b
commit ddc02d9bbc
7 changed files with 156 additions and 50 deletions
+10
View File
@@ -308,6 +308,12 @@ export let isGenerating = false;
*/
export let isPlotProgression = false;
/**
* Flag indicating if we're actively expecting a new message from generation
* (as opposed to loading chat history)
*/
export let isAwaitingNewMessage = false;
/**
* Temporary storage for pending dice roll (not saved until user clicks "Save Roll")
*/
@@ -408,6 +414,10 @@ export function setIsPlotProgression(value) {
isPlotProgression = value;
}
export function setIsAwaitingNewMessage(value) {
isAwaitingNewMessage = value;
}
export function setPendingDiceRoll(roll) {
pendingDiceRoll = roll;
}