@recallai/desktop-sdk 2.0.23 → 2.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -3
  2. package/index.js +4 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,4 +1,22 @@
1
- ### 2.0.23 [patch] (MacOS+Windows) - 2026-06-26
1
+ ### 2.0.25 [patch] (MacOS+Windows) - 2026-07-10
2
+ - Fixed issue tracking which microphone to capture on macOS in some cases
3
+ - Fixed video capture for participants on zoom for macOS
4
+ - Fixed issue where screenshare_off event fired after recording stopped on all meeting platforms for macOS
5
+ - Fixed issue where participants with certain characters in name would be detected as two participants for Zoom on macOS
6
+ - Fixed issue with Zoom video capture not working when Zoom Notetaker pill present on Zoom 7.1.0 on macOS
7
+ - Added support for Zoom compliance messaging on ES Locale for Zoom on macOS
8
+ - Added guardrails to prevent false meeting-closed events for Google Meet on macOS
9
+ - Improved meeting-closed detection speed for Google Meet on macOS
10
+ - Fixed tab screensharing issues for Google Meet on macOS
11
+ - Added guardrails to prevent Google Meet compliance messaging from performing actions on other tabs on macOS
12
+ - Added desktop_sdk_upload_id (and recording_id when available) fields to context for dsdk customer-visible logs
13
+ - Fixed recording of remote screenshare for google meet under safari on macOS
14
+ - Fixed sharing entire desktop in microsoft teams web client on macOS
15
+
16
+ ### 2.0.24 [patch] (MacOS+Windows) - 2026-07-06
17
+ - Fix regression in realtime transcription latency caused in the last update.
18
+
19
+ ### 2.0.23 [patch] (MacOS+Windows) - 2026-07-05
2
20
  - Fix issue with two participant tiles rapidly replacing eachother in PIP mode for Zoom and Google Meet on macOS
3
21
  - Webhook message sent on a transcription failure event from the DSDK
4
22
  - Support for tab and window screenshare on Teams Web for macOS
@@ -21,8 +39,6 @@
21
39
  - Fixed issue with capturing wrong display for specific setups for Google Meet on macOS
22
40
  - Ad Hoc recordings no longer require accessibility privilege on macOS
23
41
 
24
-
25
-
26
42
  ### 2.0.22 [patch] (MacOS+Windows) - 2026-06-26
27
43
  - Support for Teams Web on macOS.
28
44
  - Audio capture pipeline performance improvements on macOS.
package/index.js CHANGED
@@ -191,7 +191,10 @@ async function doLog(level, log, echo = true) {
191
191
  const idx = logIndex++;
192
192
  logBuffer[idx] = logPayload;
193
193
  if (proc && proc.exitCode === null) {
194
- await sendCommand("log", logPayload);
194
+ sendCommand("log", logPayload)
195
+ .catch(() => {
196
+ // Ignore errors logging.
197
+ });
195
198
  delete logBuffer[idx];
196
199
  }
197
200
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2.0.23",
3
+ "version": "2.0.25",
4
4
  "description": "Recall Desktop SDK",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -20,5 +20,5 @@
20
20
  "@types/node": "^24.2.0",
21
21
  "typescript": "^5.3.3"
22
22
  },
23
- "commit_sha": "f4671fc86f7427630c2adb70bee8c940bad0a8b7"
23
+ "commit_sha": "90d670e842200a4d546cbe36cc0b9c48fbe6a204"
24
24
  }