@recallai/desktop-sdk 1.0.3 → 1.0.4

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 CHANGED
@@ -1,3 +1,8 @@
1
+ ### 1.0.4 [patch] (MacOS) - 2025-08-07
2
+
3
+ - Fixes a bug with faulty echo cancellation that allowed mic bleed to affect active speaker detection in transcription.
4
+ - Fixes a bug with audio pipeline that turns off transcription after a minute or so.
5
+
1
6
  ### 1.0.3 [patch] (Windows) - 2025-07-30
2
7
 
3
8
  - Fixes a bug with an internal version mismatch between the bot library and the windows OS interfaces.
package/index.js CHANGED
@@ -129,8 +129,9 @@ function startProcess() {
129
129
  proc = spawn(exe_path, {
130
130
  stdio: "pipe",
131
131
  env: {
132
- "GST_DEBUG": "2",
133
- "GST_DEBUG_DUMP_DOT_DIR": process.env.RECALLAI_DESKTOP_SDK_DEV ? "/tmp/gst.nocommit" : os.tmpdir(),
132
+ GST_DEBUG: "2",
133
+ GST_DEBUG_DUMP_DOT_DIR: process.env.RECALLAI_DESKTOP_SDK_DEV ? "/tmp/gst.nocommit" : os.tmpdir(),
134
+ RUST_BACKTRACE: true,
134
135
  // "DYLD_INSERT_LIBRARIES":"/opt/homebrew/lib/libjemalloc.dylib",
135
136
  // "MALLOC_CONF":"prof:true,prof_active:true,prof_prefix:jeprof",
136
137
  // "DYLD_FORCE_FLAT_NAMESPACE":"1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Recall Desktop SDK",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -18,5 +18,5 @@
18
18
  "devDependencies": {
19
19
  "typescript": "^5.3.3"
20
20
  },
21
- "commit_sha": "61d8c40211f7fa4d66fff6f33e5f5bcab43d5400"
21
+ "commit_sha": "cc953aa01050ecdd0552951a8c8ad09680bef5e9"
22
22
  }