sunrize 2.0.4 → 2.0.5
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 +3 -3
- package/src/Editors/CannonExterior.avif +0 -0
- package/src/Editors/Library.js +1 -1
- package/src/Editors/Materials.x3d +1738 -1699
- package/src/Editors/MaterialsLibrary.js +129 -7
- package/src/Editors/NodesLibrary.js +3 -3
- package/src/Editors/Panel.js +27 -1
- package/src/Editors/Primitives.js +3 -3
- package/src/Editors/PrimitivesLibrary.js +2 -2
- package/src/Undo/Editor.js +4 -4
- package/src/assets/themes/default.css +4 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sunrize",
|
|
3
3
|
"productName": "Sunrize X3D Editor",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.5",
|
|
5
5
|
"description": "A Multi-Platform X3D Editor",
|
|
6
6
|
"main": "src/main.js",
|
|
7
7
|
"bin": {
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@vscode/codicons": "^0.0.44",
|
|
92
92
|
"capitalize": "^2.0.4",
|
|
93
93
|
"console": "^0.7.2",
|
|
94
|
-
"electron": "^40.6.
|
|
94
|
+
"electron": "^40.6.1",
|
|
95
95
|
"electron-prompt": "^1.7.0",
|
|
96
96
|
"electron-squirrel-startup": "^1.0.1",
|
|
97
97
|
"electron-tabs": "^1.0.4",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"string-similarity": "^4.0.4",
|
|
111
111
|
"tweakpane": "^3.1.10",
|
|
112
112
|
"update-electron-app": "^3.1.2",
|
|
113
|
-
"x_ite": "^14.0.
|
|
113
|
+
"x_ite": "^14.0.5",
|
|
114
114
|
"x3d-traverse": "^1.0.22"
|
|
115
115
|
}
|
|
116
116
|
}
|
|
Binary file
|
package/src/Editors/Library.js
CHANGED
|
@@ -188,7 +188,7 @@ module .exports = new class Library extends Dialog
|
|
|
188
188
|
const node = nodes .find (node => node .text () .toLowerCase () === input)
|
|
189
189
|
?? nodes .sort ((a, b) => a .data ("similarity") - b .data ("similarity")) .at (-1);
|
|
190
190
|
|
|
191
|
-
node .trigger ("
|
|
191
|
+
node .trigger ("click");
|
|
192
192
|
}
|
|
193
193
|
|
|
194
194
|
update ()
|