@recallai/desktop-sdk 2.0.12 → 2.0.13
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 +8 -0
- package/index.js +9 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 2.0.13 [patch] (MacOS+Windows) - 2026-05-07
|
|
2
|
+
- Fixes for various app hangs on macOS / Windows
|
|
3
|
+
- Performance improvements on macOS / Windows
|
|
4
|
+
- Fixed issue where recording would go black after Meets PIP mode on macOS
|
|
5
|
+
- Support proper window-based screencapturing of the Arc browser on macOS
|
|
6
|
+
- Fixed several audio pipeline issues on macOS
|
|
7
|
+
- Fixed spurious meeting detection issues for Google Meets on macOS
|
|
8
|
+
|
|
1
9
|
### 2.0.12 [patch] (MacOS+Windows) - 2026-04-30
|
|
2
10
|
- Various crash fixes on macOS / Windows
|
|
3
11
|
- Fixed some internal requests to use system tls on macOS/Windows.
|
package/index.js
CHANGED
|
@@ -436,12 +436,19 @@ function startProcess() {
|
|
|
436
436
|
logError("Failed to create gst dump dir:", String(e));
|
|
437
437
|
}
|
|
438
438
|
}
|
|
439
|
+
// The diarization debug dashboard parses smart_annotator's per-word
|
|
440
|
+
// `info!(CAT, "pipeline_2 EMIT…")` and `Speaker transition` lines, which
|
|
441
|
+
// ride on the `transcriptspeakerannotator` GStreamer category. Default
|
|
442
|
+
// level 3 (FIXME) hides them; bump to 4 (INFO) only in dev so production
|
|
443
|
+
// log volume is unchanged.
|
|
444
|
+
const annotatorDebug = process.env.RECALLAI_DESKTOP_SDK_DEV ? ",transcriptspeakerannotator:4" : "";
|
|
439
445
|
proc = (0, child_process_1.spawn)(exe_path, {
|
|
440
446
|
stdio: (process.platform === "darwin" ? ["pipe", "pipe", "pipe", "pipe"] : "pipe"),
|
|
441
447
|
env: {
|
|
442
|
-
GST_RECALL_DEBUG: "2,transcriber:4,rtewebsocketsink:4,rtewebhooksink:4,audiomixer:4,galleryview:4,dsdks3sink:5",
|
|
443
|
-
GST_DEBUG: "3,GST_CAPS:
|
|
448
|
+
GST_RECALL_DEBUG: "2,transcriber:4,rtewebsocketsink:4,rtewebhooksink:4,audiomixer:4,galleryview:4,dsdks3sink:5" + annotatorDebug,
|
|
449
|
+
GST_DEBUG: "3,GST_CAPS:3,GST_SCHEDULING:2,GST_PADS:2,video-scaler:1,transcriber:4,filebuffereds3sink:4,seekables3sink:4,rtpsession:1,audioresample:1,videodecoder:2,basesink:2,webrtcbin:2,websocketsink:4,audiomixer:4,galleryview:4,removeonsinkeosbin:4,fallbackswitch:4,sendmessageonsinkeosbin:4,dsdks3sink:5" + annotatorDebug,
|
|
444
450
|
GST_DEBUG_DUMP_DOT_DIR: gst_dump_dir,
|
|
451
|
+
GST_REGISTRY_FORK: "no",
|
|
445
452
|
RUST_BACKTRACE: "1",
|
|
446
453
|
// "DYLD_INSERT_LIBRARIES":"/opt/homebrew/lib/libjemalloc.dylib",
|
|
447
454
|
// "MALLOC_CONF":"prof:true,prof_active:true,prof_prefix:jeprof",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.13",
|
|
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": "10adc73d42cc9e853e9fb7cd1f8e842182f073fb"
|
|
24
24
|
}
|