Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion desktop/macos/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"unreleased": [],
"unreleased": [
"Recording now captures audio only during meetings by default — the mic and other apps' audio are captured only while you're in a call. Change this anytime in Settings → General → System Audio (Always / Only during meetings / Never)"
],
"releases": [
{
"version": "0.11.467",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class AssistantSettings {
static let shared = AssistantSettings()

/// Controls when system audio (audio from other apps — calls, videos, music) is captured
/// during a recording. `always` = capture for the whole recording (default, prior behavior);
/// `onlyDuringMeetings` = capture only while a conferencing call is detected; `never` = never.
/// during a recording. `always` = capture for the whole recording; `onlyDuringMeetings` =
/// capture only while a conferencing call is detected (default); `never` = never.
enum SystemAudioCaptureMode: String {
case always
case onlyDuringMeetings
Expand Down Expand Up @@ -40,7 +40,7 @@ class AssistantSettings {
private let defaultTranscriptionVocabulary: [String] = []
private let defaultVadGateEnabled = false
private let defaultBatchTranscriptionEnabled = false
private let defaultSystemAudioCaptureMode: SystemAudioCaptureMode = .always
private let defaultSystemAudioCaptureMode: SystemAudioCaptureMode = .onlyDuringMeetings

private init() {
// Register defaults
Expand Down
Loading