feat: add notification sounds
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 52s
CI / Lint & Test (pull_request) Failing after 7m33s
CI / Build Linux (pull_request) Has been skipped
CI / Build Windows (cross-compile) (pull_request) Has been skipped

This commit is contained in:
2026-01-19 15:24:20 -08:00
parent 0065bb4afc
commit fa04d066e5
32 changed files with 1510 additions and 29 deletions
+4
View File
@@ -2,6 +2,7 @@
import { invoke } from "@tauri-apps/api/core";
import { claudeStore } from "$lib/stores/claude";
import { characterState } from "$lib/stores/character";
import { handleNewUserMessage } from "$lib/notifications/rules";
let inputValue = $state("");
let isSubmitting = $state(false);
@@ -20,6 +21,9 @@
isSubmitting = true;
inputValue = "";
// Reset notification state for new user message
handleNewUserMessage();
claudeStore.addLine("user", message);
characterState.setState("thinking");