@recallai/desktop-sdk 2.0.24 → 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.
- package/CHANGELOG.md +15 -0
- package/index.js +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
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
|
+
|
|
1
16
|
### 2.0.24 [patch] (MacOS+Windows) - 2026-07-06
|
|
2
17
|
- Fix regression in realtime transcription latency caused in the last update.
|
|
3
18
|
|
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
|
-
|
|
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.
|
|
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": "
|
|
23
|
+
"commit_sha": "90d670e842200a4d546cbe36cc0b9c48fbe6a204"
|
|
24
24
|
}
|