This commit is contained in:
2025-04-22 18:31:25 +02:00
parent 4205af4da6
commit cd40d8fe47
4 changed files with 95 additions and 22 deletions

View File

@@ -11,6 +11,7 @@ export interface Settings {
speechPitch: number;
speechVolume: number;
interruptSpeechOnEnter: boolean;
speakAllProfiles: boolean;
};
ui: {
isDarkMode: boolean;
@@ -48,7 +49,8 @@ export class SettingsManager extends EventEmitter {
speechRate: 1,
speechPitch: 1,
speechVolume: 1,
interruptSpeechOnEnter: true
interruptSpeechOnEnter: true,
speakAllProfiles: true
},
ui: {
isDarkMode: true,
@@ -186,7 +188,8 @@ export class SettingsManager extends EventEmitter {
speechRate: 1,
speechPitch: 1,
speechVolume: 1,
interruptSpeechOnEnter: true
interruptSpeechOnEnter: true,
speakAllProfiles: true
},
ui: {
isDarkMode: true,