sunrize 1.8.21 → 1.8.22

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,7 +1,7 @@
1
1
  {
2
2
  "name": "sunrize",
3
3
  "productName": "Sunrize X3D Editor",
4
- "version": "1.8.21",
4
+ "version": "1.8.22",
5
5
  "description": "A Multi-Platform X3D Editor",
6
6
  "main": "src/main.js",
7
7
  "bin": {
@@ -110,7 +110,7 @@
110
110
  "string-similarity": "^4.0.4",
111
111
  "tweakpane": "^3.1.10",
112
112
  "update-electron-app": "^3.1.1",
113
- "x_ite": "^11.6.6",
113
+ "x_ite": "^12.0.0",
114
114
  "x3d-traverse": "^1.0.13"
115
115
  }
116
116
  }
@@ -1032,7 +1032,7 @@ module .exports = class Application
1032
1032
  this .pushMenu (this .createDialogMenu ());
1033
1033
 
1034
1034
  const response = await electron .dialog .showOpenDialog ({
1035
- defaultPath: defaultPath,
1035
+ defaultPath,
1036
1036
  properties: ["openFile", ... properties],
1037
1037
  filters: filters ?? [
1038
1038
  {
@@ -1053,7 +1053,7 @@ module .exports = class Application
1053
1053
  this .pushMenu (this .createDialogMenu ());
1054
1054
 
1055
1055
  const response = await electron .dialog .showSaveDialog ({
1056
- defaultPath: defaultPath,
1056
+ defaultPath,
1057
1057
  properties: ["createDirectory", "showOverwriteConfirmation", ... properties],
1058
1058
  filters: filters ?? [
1059
1059
  { name: _("X3D XML Document"), extensions: ["x3d"] },
@@ -1075,7 +1075,7 @@ module .exports = class Application
1075
1075
  this .pushMenu (this .createDialogMenu ());
1076
1076
 
1077
1077
  const response = await electron .dialog .showSaveDialog ({
1078
- defaultPath: defaultPath,
1078
+ defaultPath,
1079
1079
  properties: ["createDirectory", "showOverwriteConfirmation"],
1080
1080
  filters : [
1081
1081
  { name: "HTML Document", extensions: ["html"] },