@recallai/desktop-sdk 2.0.24 → 2.0.26

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 +23 -0
  2. package/index.js +4 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,26 @@
1
+ ### 2.0.26 [patch] (MacOS+Windows) - 2026-07-10
2
+ - Fixed issue where meeting titles included non-title text for Teams Web on macOS
3
+ - Fixed issue with screenshares not being captured for Teams Desktop on macOS
4
+ - Fixed issue where recordings would prematurely finalize on macOS / Windows
5
+ - Fixed issue where display screenshares not captured on Safari on macOS
6
+ - Fixed issue where recordings go black after tabbing back into meeting for Safari on macOS
7
+ - Fixed issue where Safari window screenshare not captured for Safari on macOS
8
+
9
+ ### 2.0.25 [patch] (MacOS+Windows) - 2026-07-10
10
+ - Fixed issue tracking which microphone to capture on macOS in some cases
11
+ - Fixed video capture for participants on zoom for macOS
12
+ - Fixed issue where screenshare_off event fired after recording stopped on all meeting platforms for macOS
13
+ - Fixed issue where participants with certain characters in name would be detected as two participants for Zoom on macOS
14
+ - Fixed issue with Zoom video capture not working when Zoom Notetaker pill present on Zoom 7.1.0 on macOS
15
+ - Added support for Zoom compliance messaging on ES Locale for Zoom on macOS
16
+ - Added guardrails to prevent false meeting-closed events for Google Meet on macOS
17
+ - Improved meeting-closed detection speed for Google Meet on macOS
18
+ - Fixed tab screensharing issues for Google Meet on macOS
19
+ - Added guardrails to prevent Google Meet compliance messaging from performing actions on other tabs on macOS
20
+ - Added desktop_sdk_upload_id (and recording_id when available) fields to context for dsdk customer-visible logs
21
+ - Fixed recording of remote screenshare for google meet under safari on macOS
22
+ - Fixed sharing entire desktop in microsoft teams web client on macOS
23
+
1
24
  ### 2.0.24 [patch] (MacOS+Windows) - 2026-07-06
2
25
  - Fix regression in realtime transcription latency caused in the last update.
3
26
 
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.24",
3
+ "version": "2.0.26",
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": "5e72245898ef9ad6992b10fbe383f4a1c8853f3a"
23
+ "commit_sha": "482cad45d71ed45aa5f111f4a7b5a56ec0fc1362"
24
24
  }