@lvce-editor/shared-process 0.80.19 → 0.81.1
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.
|
|
3
|
+
"version": "0.81.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@lvce-editor/assert": "1.5.1",
|
|
21
21
|
"@lvce-editor/auth-process": "1.6.0",
|
|
22
|
-
"@lvce-editor/extension-host-helper-process": "0.
|
|
22
|
+
"@lvce-editor/extension-host-helper-process": "0.81.1",
|
|
23
23
|
"@lvce-editor/ipc": "16.0.0",
|
|
24
24
|
"@lvce-editor/json-rpc": "8.0.0",
|
|
25
25
|
"@lvce-editor/jsonc-parser": "1.5.0",
|
|
@@ -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', '
|
|
5
|
+
const builtinExtensionsPath = join(staticServerPath, '..', '..', 'static', 'd0836a7', 'extensions');
|
|
6
6
|
return builtinExtensionsPath;
|
|
7
7
|
};
|
|
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
|
|
|
41
41
|
export const getSetupName = () => {
|
|
42
42
|
return 'Lvce-Setup';
|
|
43
43
|
};
|
|
44
|
-
export const version = '0.
|
|
45
|
-
export const commit = '
|
|
46
|
-
export const date = '2026-05-
|
|
44
|
+
export const version = '0.81.1';
|
|
45
|
+
export const commit = 'd0836a7';
|
|
46
|
+
export const date = '2026-05-15T22:16:53.000Z';
|
|
47
47
|
export const getVersion = () => {
|
|
48
48
|
return version;
|
|
49
49
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { join } from 'node:path';
|
|
2
2
|
import * as Root from '../Root/Root.js';
|
|
3
3
|
export const getPreloadUrl = () => {
|
|
4
|
-
return join(Root.root, 'static', '
|
|
4
|
+
return join(Root.root, 'static', 'd0836a7', 'packages', 'preload', 'dist', 'index.js');
|
|
5
5
|
};
|
|
@@ -92,9 +92,9 @@
|
|
|
92
92
|
{
|
|
93
93
|
"id": "chatViewModelWorker",
|
|
94
94
|
"fileName": "chatViewModelWorkerMain.js",
|
|
95
|
-
"contentSecurityPolicy": ["default-src 'none'", "
|
|
96
|
-
"defaultPath": "/packages/renderer-worker/node_modules/@lvce-editor/chat-view-model
|
|
97
|
-
"productionPath": "/packages/chat-view-model
|
|
95
|
+
"contentSecurityPolicy": ["default-src 'none'", "sandbox allow-same-origin"],
|
|
96
|
+
"defaultPath": "/packages/renderer-worker/node_modules/@lvce-editor/chat-view-model/dist/chatViewModelWorkerMain.js",
|
|
97
|
+
"productionPath": "/packages/chat-view-model/dist/chatViewModelWorkerMain.js",
|
|
98
98
|
"settingName": "develop.chatViewModelWorkerPath",
|
|
99
99
|
"hotReloadCommand": ""
|
|
100
100
|
},
|
|
@@ -105,8 +105,7 @@
|
|
|
105
105
|
"productionPath": "/packages/chat-view/dist/chatViewWorkerMain.js",
|
|
106
106
|
"settingName": "develop.chatViewWorkerPath",
|
|
107
107
|
"hotReloadCommand": "Chat.hotReload",
|
|
108
|
-
"contentSecurityPolicy": ["default-src 'none'", "
|
|
109
|
-
"comment": "TODO need to adjust csp for connect src. maybe use a separate worker for connections"
|
|
108
|
+
"contentSecurityPolicy": ["default-src 'none'", "sandbox allow-same-origin"]
|
|
110
109
|
},
|
|
111
110
|
{
|
|
112
111
|
"id": "chatCoordinator",
|