added an option to fix the "Zoom can't capture the sound" problem (it is IMPORTANT to choose "share sound" when share screen in Zoom).

This commit is contained in:
Xiaohan-Tian
2025-08-20 15:48:26 -07:00
parent 365acdae7e
commit c1112f41d5
4 changed files with 78 additions and 0 deletions
+6
View File
@@ -60,6 +60,9 @@ interface AppConfig {
chatbox: {
default_open: boolean;
};
audio: {
enable_audio_capture_for_screen_sharing: boolean;
};
templates: {
custom_instructions: string;
};
@@ -205,6 +208,9 @@ export class ConfigManager {
chatbox: {
default_open: true
},
audio: {
enable_audio_capture_for_screen_sharing: false
},
templates: {
custom_instructions: ''
}