@lvce-editor/shared-process 0.55.4 → 0.55.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/shared-process",
3
- "version": "0.55.4",
3
+ "version": "0.55.6",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -18,12 +18,12 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@lvce-editor/assert": "1.4.0",
21
- "@lvce-editor/extension-host-helper-process": "0.55.4",
21
+ "@lvce-editor/extension-host-helper-process": "0.55.6",
22
22
  "@lvce-editor/ipc": "14.3.0",
23
23
  "@lvce-editor/json-rpc": "6.2.0",
24
24
  "@lvce-editor/jsonc-parser": "1.5.0",
25
25
  "@lvce-editor/pretty-error": "2.0.0",
26
- "@lvce-editor/rpc-registry": "2.49.0",
26
+ "@lvce-editor/rpc-registry": "2.51.0",
27
27
  "@lvce-editor/verror": "1.7.0",
28
28
  "debug": "^4.4.1",
29
29
  "is-object": "^1.0.2",
@@ -2,6 +2,6 @@ import { join } from 'path';
2
2
  import { fileURLToPath } from 'url';
3
3
  export const getBuiltinExtensionsPath = () => {
4
4
  const staticServerPath = fileURLToPath(import.meta.resolve('@lvce-editor/static-server'));
5
- const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'a4ebc82', 'extensions');
5
+ const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'b26b9e6', 'extensions');
6
6
  return builtinExtensionsPath;
7
7
  };
@@ -11,6 +11,7 @@ export const launchEmbedsProcess = async () => {
11
11
  isElectron: IsElectron.isElectron,
12
12
  settingName: 'develop.embedsProcessPath',
13
13
  });
14
+ // TODO embeds worker itself should connect to main process
14
15
  await ConnectIpcToElectron.connectIpcToMainProcess2(ipc, IpcId.EmbedsProcess);
15
16
  return ipc;
16
17
  };
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
41
41
  export const getSetupName = () => {
42
42
  return 'Lvce-Setup';
43
43
  };
44
- export const version = '0.55.4';
45
- export const commit = 'a4ebc82';
46
- export const date = '2025-07-09T22:22:43.000Z';
44
+ export const version = '0.55.6';
45
+ export const commit = 'b26b9e6';
46
+ export const date = '2025-07-11T18:21:22.000Z';
47
47
  export const getVersion = () => {
48
48
  return version;
49
49
  };