(feat): add speaking indicator
All checks were successful
/ build-web (push) Successful in 1m19s
/ build-desktop (push) Successful in 13m14s
/ build-mobile (push) Successful in 18m45s
/ release (push) Successful in 25s

(feat): add microphone gate
(qol): update todo
This commit is contained in:
Alois 2026-05-15 15:43:53 +02:00
commit e76c579bb4
5 changed files with 363 additions and 13 deletions

View file

@ -245,6 +245,8 @@ export interface Storage extends SettingsStorageDefaults {
cached_contacts: Contacts;
cached_communities: Communities;
ttp_url: string;
call_mute_range_start: number;
call_mute_range_end: number;
}
export const storageDefaults: Storage = {
@ -278,4 +280,6 @@ export const storageDefaults: Storage = {
cached_contacts: [],
cached_communities: [],
ttp_url: "https://tensamin.net:959",
call_mute_range_start: -50,
call_mute_range_end: -40,
};