Updates
Rolling release / release (push) Successful in 7m21s

This commit is contained in:
2026-09-12 09:40:42 -04:00
parent a4073b9020
commit f26204505e
23 changed files with 531 additions and 114 deletions
@@ -243,8 +243,9 @@ export default class JarvisExtension extends Extension {
const voice = status.voice;
this._eachView((view) => view.setConnectionStatus(voice ? 'local' : 'voice-unavailable'));
if (voice) {
const input = voice.asr && voice.capture;
this._eachView((view) => view.setVoiceStatus({ tts: voice.tts, input, wake: voice.wake }));
const input = Boolean(voice.capture);
const tts = Boolean(voice.tts || voice.speech);
this._eachView((view) => view.setVoiceStatus({ tts, input, wake: voice.wake }));
}
} catch { this._eachView((view) => view.setConnectionStatus('voice-unavailable')); }
}