@recallai/desktop-sdk 2025.5.30-c1ee674ebff5b7edb2d63a414253f137fb263419 → 2025.6.2-c472678f6e8e1a7d565a15379610803c2f011352
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/desktop_sdk_macos_exe +0 -0
- package/desktop_sdk_macos_frameworks.tar +0 -0
- package/index.js +8 -4
- package/package.json +1 -1
package/desktop_sdk_macos_exe
CHANGED
|
Binary file
|
|
Binary file
|
package/index.js
CHANGED
|
@@ -4,9 +4,6 @@ const readline = require('node:readline');
|
|
|
4
4
|
const fs = require('node:fs');
|
|
5
5
|
const { v4: uuidv4 } = require('uuid');
|
|
6
6
|
|
|
7
|
-
process.env["GST_DEBUG"] = "2";
|
|
8
|
-
process.env["GST_DEBUG_DUMP_DOT_DIR"] = "/tmp";
|
|
9
|
-
|
|
10
7
|
// HACK: This is needed because of https://github.com/electron/electron/issues/6262
|
|
11
8
|
|
|
12
9
|
// Search for the unpacked directory first, since fs.existsSync actually reports
|
|
@@ -86,7 +83,14 @@ function startProcess() {
|
|
|
86
83
|
return;
|
|
87
84
|
}
|
|
88
85
|
|
|
89
|
-
proc = spawn(exe_path, {
|
|
86
|
+
proc = spawn(exe_path, {
|
|
87
|
+
stdio: ['pipe', 'pipe', 'pipe', 'pipe'],
|
|
88
|
+
env: {
|
|
89
|
+
"GST_DEBUG": "2",
|
|
90
|
+
"GST_DEBUG_DUMP_DOT_DIR": "/tmp"
|
|
91
|
+
|
|
92
|
+
}
|
|
93
|
+
});
|
|
90
94
|
|
|
91
95
|
const extraStream = proc.stdio[3];
|
|
92
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "2025.
|
|
3
|
+
"version": "2025.06.02-c472678f6e8e1a7d565a15379610803c2f011352",
|
|
4
4
|
"description": "Recall Desktop SDK (Alpha)",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|