sunrize 1.6.14 → 1.6.15
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.6.
|
|
4
|
+
"version": "1.6.15",
|
|
5
5
|
"description": "A Multi-Platform X3D Editor",
|
|
6
6
|
"main": "src/main.js",
|
|
7
7
|
"bin": {
|
|
@@ -68,6 +68,10 @@
|
|
|
68
68
|
"url": "https://github.com/create3000"
|
|
69
69
|
}
|
|
70
70
|
],
|
|
71
|
+
"funding": {
|
|
72
|
+
"type": "patreon",
|
|
73
|
+
"url": "https://patreon.com/X_ITE"
|
|
74
|
+
},
|
|
71
75
|
"devDependencies": {
|
|
72
76
|
"@electron-forge/cli": "^7.4.0",
|
|
73
77
|
"@electron-forge/maker-deb": "^7.4.0",
|
|
@@ -81,7 +85,7 @@
|
|
|
81
85
|
"dependencies": {
|
|
82
86
|
"capitalize": "^2.0.4",
|
|
83
87
|
"console": "^0.7.2",
|
|
84
|
-
"electron": "^30.0.
|
|
88
|
+
"electron": "^30.0.8",
|
|
85
89
|
"electron-prompt": "^1.7.0",
|
|
86
90
|
"electron-squirrel-startup": "^1.0.1",
|
|
87
91
|
"electron-tabs": "^1.0.4",
|
|
@@ -100,7 +104,7 @@
|
|
|
100
104
|
"string-similarity": "^4.0.4",
|
|
101
105
|
"tweakpane": "^3.1.10",
|
|
102
106
|
"update-electron-app": "^3.0.0",
|
|
103
|
-
"x_ite": "^9.6.
|
|
107
|
+
"x_ite": "^9.6.3"
|
|
104
108
|
},
|
|
105
109
|
"config": {
|
|
106
110
|
"forge": {
|
|
@@ -345,6 +345,7 @@ module .exports = class ScriptEditor extends Interface
|
|
|
345
345
|
wordWrap: "on",
|
|
346
346
|
wrappingIndent: "indent",
|
|
347
347
|
minimap: { enabled: false },
|
|
348
|
+
bracketPairColorization: { enabled: true },
|
|
348
349
|
});
|
|
349
350
|
|
|
350
351
|
editor .onDidBlurEditorWidget (() => this .apply ());
|