sunrize 1.7.28 → 1.7.30
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.7.
|
|
4
|
+
"version": "1.7.30",
|
|
5
5
|
"description": "A Multi-Platform X3D Editor",
|
|
6
6
|
"main": "src/main.js",
|
|
7
7
|
"bin": {
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"dependencies": {
|
|
91
91
|
"capitalize": "^2.0.4",
|
|
92
92
|
"console": "^0.7.2",
|
|
93
|
-
"electron": "^33.0.
|
|
93
|
+
"electron": "^33.0.2",
|
|
94
94
|
"electron-prompt": "^1.7.0",
|
|
95
95
|
"electron-squirrel-startup": "^1.0.1",
|
|
96
96
|
"electron-tabs": "^1.0.4",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"jquery-ui-dist": "^1.13.3",
|
|
100
100
|
"jstree": "^3.3.17",
|
|
101
101
|
"material-icons": "^1.13.12",
|
|
102
|
-
"material-symbols": "^0.
|
|
102
|
+
"material-symbols": "^0.26.0",
|
|
103
103
|
"md5": "^2.3.0",
|
|
104
104
|
"mime-types": "^2.1.35",
|
|
105
105
|
"monaco-editor": "^0.50.0",
|
|
@@ -109,46 +109,6 @@
|
|
|
109
109
|
"string-similarity": "^4.0.4",
|
|
110
110
|
"tweakpane": "^3.1.10",
|
|
111
111
|
"update-electron-app": "^3.0.0",
|
|
112
|
-
"x_ite": "^10.5.
|
|
113
|
-
},
|
|
114
|
-
"config": {
|
|
115
|
-
"forge": {
|
|
116
|
-
"packagerConfig": {
|
|
117
|
-
"icon": "./src/assets/images/icon.png",
|
|
118
|
-
"dir": "./src",
|
|
119
|
-
"ignore": "^/(?!src|package\\.json|node_modules)",
|
|
120
|
-
"certificateFile": "./build/certificate.pfx",
|
|
121
|
-
"certificatePassword": "CREATE3000",
|
|
122
|
-
"extendInfo": "./src/assets/Info.plist",
|
|
123
|
-
"osxSign": {}
|
|
124
|
-
},
|
|
125
|
-
"makers": [
|
|
126
|
-
{
|
|
127
|
-
"name": "@electron-forge/maker-squirrel"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"name": "@electron-forge/maker-dmg"
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"name": "@electron-forge/maker-deb"
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
"name": "@electron-forge/maker-rpm"
|
|
137
|
-
}
|
|
138
|
-
],
|
|
139
|
-
"publishers": [
|
|
140
|
-
{
|
|
141
|
-
"name": "@electron-forge/publisher-github",
|
|
142
|
-
"config": {
|
|
143
|
-
"repository": {
|
|
144
|
-
"owner": "create3000",
|
|
145
|
-
"name": "sunrize"
|
|
146
|
-
},
|
|
147
|
-
"prerelease": false,
|
|
148
|
-
"draft": false
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
]
|
|
152
|
-
}
|
|
112
|
+
"x_ite": "^10.5.10"
|
|
153
113
|
}
|
|
154
114
|
}
|
|
@@ -161,8 +161,20 @@ module .exports = class Document extends Interface
|
|
|
161
161
|
await this .browser .loadComponents (this .browser .getProfile ("Full"),
|
|
162
162
|
this .browser .getComponent ("X_ITE"));
|
|
163
163
|
|
|
164
|
+
// Modify nodes.
|
|
165
|
+
|
|
164
166
|
this .browser .updateConcreteNode (require ("../Components/Grouping/StaticGroup"));
|
|
165
167
|
|
|
168
|
+
X3D .NurbsSweptSurface .prototype .traverse = function (type, renderObject)
|
|
169
|
+
{
|
|
170
|
+
this .getTrajectoryCurve () ?.traverse (type, renderObject);
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
X3D .NurbsSwungSurface .prototype .traverse = function (type, renderObject)
|
|
174
|
+
{
|
|
175
|
+
this .getTrajectoryCurve () ?.traverse (type, renderObject);
|
|
176
|
+
};
|
|
177
|
+
|
|
166
178
|
// Restore
|
|
167
179
|
|
|
168
180
|
await this .restoreFile ();
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>com.apple.security.cs.allow-jit</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>com.apple.security.device.audio-input</key>
|
|
8
|
+
<true/>
|
|
9
|
+
<key>com.apple.security.device.bluetooth</key>
|
|
10
|
+
<true/>
|
|
11
|
+
<key>com.apple.security.device.camera</key>
|
|
12
|
+
<true/>
|
|
13
|
+
<key>com.apple.security.device.print</key>
|
|
14
|
+
<true/>
|
|
15
|
+
<key>com.apple.security.device.usb</key>
|
|
16
|
+
<true/>
|
|
17
|
+
<key>com.apple.security.personal-information.location</key>
|
|
18
|
+
<true/>
|
|
19
|
+
<key>com.apple.security.personal-information.addressbook</key>
|
|
20
|
+
<true/>
|
|
21
|
+
<key>com.apple.security.personal-information.calendars</key>
|
|
22
|
+
<true/>
|
|
23
|
+
</dict>
|
|
24
|
+
</plist>
|
|
@@ -983,6 +983,7 @@ body.dark .ui-widget .library-list .component {
|
|
|
983
983
|
.tree-view .item {
|
|
984
984
|
display: flex;
|
|
985
985
|
flex-direction: row;
|
|
986
|
+
white-space: nowrap;
|
|
986
987
|
}
|
|
987
988
|
|
|
988
989
|
.tree-view .item > * {
|
|
@@ -1037,6 +1038,10 @@ body.dark .ui-widget .library-list .component {
|
|
|
1037
1038
|
|
|
1038
1039
|
/* Outline Editor */
|
|
1039
1040
|
|
|
1041
|
+
.scene-graph {
|
|
1042
|
+
width: min-content;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1040
1045
|
.scene-graph .material-symbols-outlined {
|
|
1041
1046
|
font-size: var(--font-size);
|
|
1042
1047
|
position: relative;
|
|
@@ -983,6 +983,7 @@ body.dark .ui-widget .library-list .component {
|
|
|
983
983
|
.tree-view .item {
|
|
984
984
|
display: flex;
|
|
985
985
|
flex-direction: row;
|
|
986
|
+
white-space: nowrap;
|
|
986
987
|
}
|
|
987
988
|
|
|
988
989
|
.tree-view .item > * {
|
|
@@ -1037,6 +1038,10 @@ body.dark .ui-widget .library-list .component {
|
|
|
1037
1038
|
|
|
1038
1039
|
/* Outline Editor */
|
|
1039
1040
|
|
|
1041
|
+
.scene-graph {
|
|
1042
|
+
width: min-content;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1040
1045
|
.scene-graph .material-symbols-outlined {
|
|
1041
1046
|
font-size: var(--font-size);
|
|
1042
1047
|
position: relative;
|