@recallai/desktop-sdk 2025.3.17-074559dc7555aa72447f57b50c4eeb4f8cdda768 → 2025.3.17-765639dacfbd1697463666ac4f627731431b2cec
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_frameworks.tar +0 -0
- package/dummy.node +0 -0
- package/index.js +7 -2
- package/package.json +1 -1
|
Binary file
|
package/dummy.node
ADDED
|
File without changes
|
package/index.js
CHANGED
|
@@ -31,9 +31,14 @@ process.env["GST_DEBUG"] = "2";
|
|
|
31
31
|
// process.env["GST_DEBUG_NO_COLOR"] = "1";
|
|
32
32
|
process.env["GST_DEBUG_DUMP_DOT_DIR"] = "/tmp/gst.nocommit";
|
|
33
33
|
|
|
34
|
+
// HACK: This is needed because of https://github.com/electron/electron/issues/6262
|
|
35
|
+
|
|
36
|
+
// Search for the unpacked directory first, since fs.existsSync actually reports
|
|
37
|
+
// the "virtual" files in the .asar as being present
|
|
38
|
+
|
|
34
39
|
const exe_paths = [
|
|
35
|
-
path.join(__dirname, "desktop_sdk_macos_exe"),
|
|
36
|
-
path.join(__dirname, "desktop_sdk_macos_exe")
|
|
40
|
+
path.join(__dirname, "desktop_sdk_macos_exe").replace('app.asar', 'app.asar.unpacked'),
|
|
41
|
+
path.join(__dirname, "desktop_sdk_macos_exe")
|
|
37
42
|
];
|
|
38
43
|
|
|
39
44
|
let proc;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "2025.03.17-
|
|
3
|
+
"version": "2025.03.17-765639dacfbd1697463666ac4f627731431b2cec",
|
|
4
4
|
"description": "Recall Desktop SDK (Alpha)",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|