Updated Change log script, and builder script.

This commit is contained in:
2026-06-18 10:40:41 -04:00
parent eecc3c805f
commit bf5c887c6c
3 changed files with 15 additions and 1 deletions
+3 -1
View File
@@ -28,7 +28,9 @@
if (!seenAlerts[key]) {
console.log('[DuressGuard] NEW ALERT:', key);
if (window.__TAURI_INTERNALS__) {
window.__TAURI_INTERNALS__.invoke('alert_detected', { name: key });
window.__TAURI_INTERNALS__.invoke('alert_detected', { name: key })
.then(function () { console.log('[DuressGuard] Invoke succeeded'); })
.catch(function (e) { console.log('[DuressGuard] Invoke failed:', e); });
}
try {
var ctx = new AudioContext();