@lvce-editor/main-process 2.9.0 → 2.10.0
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/dist/mainProcessMain.js +3 -3
- package/package.json +2 -2
package/dist/mainProcessMain.js
CHANGED
|
@@ -5544,7 +5544,7 @@ const createPidMap = () => {
|
|
|
5544
5544
|
};
|
|
5545
5545
|
|
|
5546
5546
|
const rpcs = Object.create(null);
|
|
5547
|
-
const set$
|
|
5547
|
+
const set$a = (id, rpc) => {
|
|
5548
5548
|
rpcs[id] = rpc;
|
|
5549
5549
|
};
|
|
5550
5550
|
const get = id => {
|
|
@@ -5557,7 +5557,7 @@ const createUtilityProcessRpc = async options => {
|
|
|
5557
5557
|
...options
|
|
5558
5558
|
});
|
|
5559
5559
|
const rpcId = options.targetRpcId || options.rpcId || options.ipcId;
|
|
5560
|
-
set$
|
|
5560
|
+
set$a(rpcId, rpc);
|
|
5561
5561
|
};
|
|
5562
5562
|
|
|
5563
5563
|
const serializeDeskopCapturerSource = source => {
|
|
@@ -7008,7 +7008,7 @@ const handleElectronMessagePort = async (messagePort, rpcId) => {
|
|
|
7008
7008
|
requiresSocket: requiresSocket
|
|
7009
7009
|
});
|
|
7010
7010
|
if (rpcId) {
|
|
7011
|
-
set$
|
|
7011
|
+
set$a(rpcId, rpc);
|
|
7012
7012
|
}
|
|
7013
7013
|
};
|
|
7014
7014
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/main-process",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lvce-editor",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"type": "module",
|
|
16
16
|
"main": "dist/mainProcessMain.js",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"electron": "36.
|
|
18
|
+
"electron": "36.4.0"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=22"
|