@lvce-editor/shared-process 0.33.10 → 0.33.11

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.33.10",
3
+ "version": "0.33.11",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@lvce-editor/assert": "^1.3.0",
21
- "@lvce-editor/extension-host-helper-process": "0.33.10",
21
+ "@lvce-editor/extension-host-helper-process": "0.33.11",
22
22
  "@lvce-editor/ipc": "^10.2.1",
23
23
  "@lvce-editor/json-rpc": "^3.0.0",
24
24
  "@lvce-editor/jsonc-parser": "^1.4.0",
@@ -25,7 +25,7 @@ const getFrameAncestors = () => {
25
25
  export const value = GetContentSecurityPolicy.getContentSecurityPolicy([
26
26
  `default-src 'none'`,
27
27
  `font-src 'self'`,
28
- `img-src 'self' https: data:`, // TODO maybe disallow https and data images
28
+ `img-src 'self' https: data: blob:`, // TODO maybe disallow https and data images
29
29
  `media-src 'self'`,
30
30
  `script-src 'self'`,
31
31
  `style-src 'self'`,
@@ -41,9 +41,9 @@ export const getAppImageName = () => {
41
41
  export const getSetupName = () => {
42
42
  return 'Lvce-Setup';
43
43
  };
44
- export const version = '0.33.10';
45
- export const commit = '65becc8';
46
- export const date = '2024-09-07T20:14:21.000Z';
44
+ export const version = '0.33.11';
45
+ export const commit = 'ea07792';
46
+ export const date = '2024-09-08T15:15:25.000Z';
47
47
  export const getVersion = () => {
48
48
  return version;
49
49
  };