Updates
Rolling release / release (push) Successful in 8m31s

This commit is contained in:
2026-09-13 15:08:05 -04:00
parent b56171da9b
commit c5ccaa490b
29 changed files with 933 additions and 146 deletions
+4
View File
@@ -21,6 +21,8 @@ export async function serveOnSessionBus(daemon) {
Arm() { daemon.arm(); }
Sleep() { daemon.sleep(); }
Shutdown() { daemon.close(); }
SetMuted(muted) { daemon.setMuted?.(Boolean(muted)); }
SetListening(on) { daemon.setListening?.(Boolean(on)); }
PushToTalk(pressed) { daemon.setPushToTalk?.(Boolean(pressed)); }
async Say(text) { await daemon.say?.(text); }
async Ask(text) { await daemon.ask(text); }
@@ -73,6 +75,8 @@ export async function serveOnSessionBus(daemon) {
Sleep: { inSignature: '', outSignature: '', method: 'Sleep' },
Shutdown: { inSignature: '', outSignature: '', method: 'Shutdown' },
PushToTalk: { inSignature: 'b', outSignature: '', method: 'PushToTalk' },
SetMuted: { inSignature: 'b', outSignature: '', method: 'SetMuted' },
SetListening: { inSignature: 'b', outSignature: '', method: 'SetListening' },
Say: { inSignature: 's', outSignature: '', method: 'Say' },
Ask: { inSignature: 's', outSignature: '', method: 'Ask' },
ResetContext: { inSignature: '', outSignature: '', method: 'ResetContext' },