@qooxdoo/framework 7.5.0 → 7.6.0
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/Manifest.json +169 -44
- package/bin/deploy/qx +7 -5
- package/lib/compiler/compile-info.json +70 -62
- package/lib/compiler/index.js +3809 -2695
- package/lib/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js +7 -7
- package/lib/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js +6 -6
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js +9 -9
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js +5 -5
- package/lib/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js +7 -7
- package/lib/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/lib/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js +6 -6
- package/lib/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js +12 -12
- package/lib/resource/qx/tool/schema/Manifest-1-0-0.json +79 -26
- package/lib/resource/qx/tool/schema/Manifest-2-0-0.json +17 -26
- package/lib/resource/qx/tool/schema/compile-1-0-0.json +40 -53
- package/lib/resource/qx/tool/website/src/about.md +1 -1
- package/package.json +3 -3
- package/source/class/qx/bom/Font.js +36 -0
- package/source/class/qx/bom/webfonts/Validator.js +31 -6
- package/source/class/qx/bom/webfonts/WebFont.js +60 -64
- package/source/class/qx/bom/webfonts/WebFontLoader.js +461 -0
- package/source/class/qx/core/Object.js +1 -1
- package/source/class/qx/data/Array.js +27 -0
- package/source/class/qx/dev/FakeServer.js +1 -1
- package/source/class/qx/event/handler/Focus.js +2 -1
- package/source/class/qx/event/handler/GestureCore.js +1 -1
- package/source/class/qx/test/bom/webfonts/Validator.js +0 -6
- package/source/class/qx/test/core/Environment.js +8 -8
- package/source/class/qx/test/core/Validation.js +2 -2
- package/source/class/qx/test/dev/unit/Requirements.js +6 -6
- package/source/class/qx/test/io/transport/Websocket.js +1 -1
- package/source/class/qx/test/ui/basic/Image.js +3 -3
- package/source/class/qx/test/ui/basic/Label.js +0 -65
- package/source/class/qx/test/ui/form/Field.js +56 -52
- package/source/class/qx/theme/IndigoDark.js +1 -1
- package/source/class/qx/theme/classic/Font.js +7 -23
- package/source/class/qx/theme/iconfont/LoadMaterialIcons.js +2 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsOutlined.js +2 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsRound.js +2 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsSharp.js +2 -4
- package/source/class/qx/theme/iconfont/LoadMaterialIconsTwoTone.js +2 -4
- package/source/class/qx/theme/indigo/DecorationDark.js +30 -0
- package/source/class/qx/theme/indigo/Font.js +8 -15
- package/source/class/qx/theme/manager/Font.js +151 -38
- package/source/class/qx/theme/modern/Font.js +1 -0
- package/source/class/qx/theme/simple/Font.js +3 -1
- package/source/class/qx/theme/tangible/Appearance.js +1 -0
- package/source/class/qx/theme/tangible/Font.js +9 -62
- package/source/class/qx/theme/tangible/Image.js +1 -4
- package/source/class/qx/tool/cli/Application.js +4 -1
- package/source/class/qx/tool/cli/Cli.js +34 -23
- package/source/class/qx/tool/cli/Watch.js +8 -6
- package/source/class/qx/tool/cli/api/CompilerApi.js +8 -0
- package/source/class/qx/tool/cli/commands/Add.js +1 -1
- package/source/class/qx/tool/cli/commands/Compile.js +24 -1
- package/source/class/qx/tool/cli/commands/Config.js +16 -141
- package/source/class/qx/tool/cli/commands/ExportGlyphs.js +134 -0
- package/source/class/qx/tool/cli/commands/Lint.js +1 -1
- package/source/class/qx/tool/cli/commands/Package.js +3 -0
- package/source/class/qx/tool/cli/commands/Pkg.js +1 -1
- package/source/class/qx/tool/cli/commands/Run.js +6 -7
- package/source/class/qx/tool/cli/commands/Serve.js +29 -36
- package/source/class/qx/tool/cli/commands/Test.js +3 -2
- package/source/class/qx/tool/cli/commands/add/Script.js +3 -1
- package/source/class/qx/tool/cli/commands/config/Delete.js +47 -0
- package/source/class/qx/tool/cli/commands/config/Get.js +52 -0
- package/source/class/qx/tool/cli/commands/config/List.js +81 -0
- package/source/class/qx/tool/cli/commands/config/Set.js +61 -0
- package/source/class/qx/tool/cli/commands/package/Install.js +3 -0
- package/source/class/qx/tool/cli/commands/package/Update.js +3 -3
- package/source/class/qx/tool/compiler/Analyser.js +45 -0
- package/source/class/qx/tool/compiler/ClassFile.js +43 -1
- package/source/class/qx/tool/compiler/Console.js +6 -1
- package/source/class/qx/tool/compiler/app/Application.js +19 -0
- package/source/class/qx/tool/compiler/app/Cldr.js +63 -26
- package/source/class/qx/tool/compiler/app/Library.js +51 -2
- package/source/class/qx/tool/compiler/app/ManifestFont.js +181 -0
- package/source/class/qx/tool/compiler/app/WebFont.js +144 -234
- package/source/class/qx/tool/compiler/makers/AppMaker.js +13 -0
- package/source/class/qx/tool/compiler/resources/ImageLoader.js +22 -12
- package/source/class/qx/tool/compiler/resources/Manager.js +2 -2
- package/source/class/qx/tool/compiler/resources/MetaLoader.js +7 -2
- package/source/class/qx/tool/compiler/resources/ResourceLoader.js +21 -0
- package/source/class/qx/tool/compiler/targets/Target.js +186 -67
- package/source/class/qx/tool/migration/M7_5_6.js +75 -0
- package/source/class/qx/tool/utils/Http.js +69 -0
- package/source/class/qx/ui/basic/Image.js +6 -2
- package/source/class/qx/ui/basic/Label.js +20 -38
- package/source/class/qx/ui/core/Widget.js +13 -42
- package/source/class/qx/ui/form/AbstractField.js +8 -2
- package/source/class/qx/ui/form/FileSelectorButton.js +5 -0
- package/source/class/qx/ui/table/pane/FocusIndicator.js +5 -4
- package/source/class/qx/ui/table/pane/Pane.js +14 -0
- package/source/class/qx/ui/table/pane/Scroller.js +3 -3
- package/source/class/qx/ui/virtual/core/Scroller.js +8 -2
- package/source/class/qx/ui/window/Window.js +9 -8
- package/source/resource/qx/iconfont/MaterialIcons/materialicons.json +10912 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsoutlined.json +10967 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconsround.json +10992 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconssharp.json +10992 -0
- package/source/resource/qx/iconfont/MaterialIcons/materialiconstwotone.json +9947 -0
- package/source/resource/qx/iconfont/MaterialIcons/x.json +10967 -0
- package/source/resource/qx/iconfont/export-glyphs.sh +22 -0
- package/source/resource/qx/mobile/scss/common/_gradients.scss +1 -1
- package/source/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js +7 -7
- package/source/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js +6 -6
- package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js +9 -9
- package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js +5 -5
- package/source/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js +7 -7
- package/source/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js +10 -10
- package/source/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js +6 -6
- package/source/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js +12 -12
- package/source/resource/qx/tool/schema/Manifest-1-0-0.json +79 -26
- package/source/resource/qx/tool/schema/Manifest-2-0-0.json +17 -26
- package/source/resource/qx/tool/schema/compile-1-0-0.json +40 -53
- package/source/resource/qx/tool/website/src/about.md +1 -1
- package/source/class/qx/bom/webfonts/Manager.js +0 -652
- package/source/class/qx/test/bom/webfonts/Manager.js +0 -238
package/Manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "./source/resource/qx/tool/schema/Manifest-2-0-0.json",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "qooxdoo framework",
|
|
5
5
|
"summary": "The qooxdoo framework library",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"email": "dietrich.streifert@visionet.de"
|
|
80
80
|
}
|
|
81
81
|
],
|
|
82
|
-
"version": "7.
|
|
82
|
+
"version": "7.6.0",
|
|
83
83
|
"sourceViewUri": "https://github.com/qooxdoo/qooxdoo/blob/%{qxGitBranch}/framework/source/class/%{classFilePath}#L%{lineNumber}"
|
|
84
84
|
},
|
|
85
85
|
"provides": {
|
|
@@ -88,63 +88,188 @@
|
|
|
88
88
|
"class": "source/class",
|
|
89
89
|
"resource": "source/resource",
|
|
90
90
|
"translation": "source/translation",
|
|
91
|
-
"
|
|
92
|
-
{
|
|
93
|
-
"
|
|
91
|
+
"fonts": {
|
|
92
|
+
"qx.theme.monospace": {
|
|
93
|
+
"family": [
|
|
94
|
+
"DejaVu Sans Mono",
|
|
95
|
+
"Courier New",
|
|
96
|
+
"monospace"
|
|
97
|
+
]
|
|
98
|
+
},
|
|
99
|
+
"qx.theme.classic.defaultFont": {
|
|
100
|
+
"family": [
|
|
101
|
+
"Lucida Grande",
|
|
102
|
+
"Tahoma",
|
|
103
|
+
"Verdana",
|
|
104
|
+
"Bitstream Vera Sans",
|
|
105
|
+
"Liberation Sans"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"qx.theme.indigo.defaultFont": {
|
|
109
|
+
"family": [
|
|
110
|
+
"Lucida Grande",
|
|
111
|
+
"DejaVu Sans",
|
|
112
|
+
"Verdana",
|
|
113
|
+
"sans-serif"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"JosefinSlab": {
|
|
117
|
+
"fontFaces": [
|
|
118
|
+
{
|
|
119
|
+
"paths": [
|
|
120
|
+
"qx/decoration/Indigo/font/JosefinSlab-SemiBold.woff",
|
|
121
|
+
"qx/decoration/Indigo/font/JosefinSlab-SemiBold.ttf"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
"Roboto": {
|
|
127
|
+
"css": [
|
|
128
|
+
"https://fonts.cdnfonts.com/css/roboto"
|
|
129
|
+
],
|
|
130
|
+
"fontFaces": [
|
|
131
|
+
{
|
|
132
|
+
"fontFamily": "Roboto",
|
|
133
|
+
"fontStyle": "normal",
|
|
134
|
+
"fontWeight": "normal",
|
|
135
|
+
"paths": [
|
|
136
|
+
"qx/font/Roboto/roboto-v18-latin_latin-ext-regular.eot",
|
|
137
|
+
"qx/font/Roboto/roboto-v18-latin_latin-ext-regular.woff2",
|
|
138
|
+
"qx/font/Roboto/roboto-v18-latin_latin-ext-regular.woff",
|
|
139
|
+
"qx/font/Roboto/roboto-v18-latin_latin-ext-regular.ttf"
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
"Roboto Mono": {
|
|
145
|
+
"css": [
|
|
146
|
+
"https://fonts.cdnfonts.com/css/roboto-mono"
|
|
147
|
+
],
|
|
148
|
+
"fontFaces": [
|
|
149
|
+
{
|
|
150
|
+
"fontFamily": "Roboto Mono",
|
|
151
|
+
"fontStyle": "normal",
|
|
152
|
+
"fontWeight": "normal",
|
|
153
|
+
"paths": [
|
|
154
|
+
"qx/font/Roboto/roboto-mono-v6-latin_latin-ext-regular.eot",
|
|
155
|
+
"qx/font/Roboto/roboto-mono-v6-latin_latin-ext-regular.woff2",
|
|
156
|
+
"qx/font/Roboto/roboto-mono-v6-latin_latin-ext-regular.woff",
|
|
157
|
+
"qx/font/Roboto/roboto-mono-v6-latin_latin-ext-regular.ttf"
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"MaterialIcons": {
|
|
163
|
+
"family": [
|
|
164
|
+
"Material Icons"
|
|
165
|
+
],
|
|
94
166
|
"defaultSize": 32,
|
|
95
167
|
"comparisonString": "e1feef39",
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
168
|
+
"css": [
|
|
169
|
+
"https://fonts.googleapis.com/icon?family=Material+Icons"
|
|
170
|
+
],
|
|
171
|
+
"fontFaces": [
|
|
172
|
+
{
|
|
173
|
+
"fontFamily": "Material Icons",
|
|
174
|
+
"paths": [
|
|
175
|
+
"qx/iconfont/MaterialIcons/materialicons-v126.eot",
|
|
176
|
+
"qx/iconfont/MaterialIcons/materialicons-v126.woff2",
|
|
177
|
+
"qx/iconfont/MaterialIcons/materialicons-v126.woff",
|
|
178
|
+
"qx/iconfont/MaterialIcons/materialicons-v126.ttf"
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
],
|
|
182
|
+
"glyphs": "qx/iconfont/MaterialIcons/materialicons.json"
|
|
102
183
|
},
|
|
103
|
-
{
|
|
104
|
-
"
|
|
184
|
+
"MaterialIconsOutlined": {
|
|
185
|
+
"family": [
|
|
186
|
+
"Material Icons Outlined"
|
|
187
|
+
],
|
|
105
188
|
"defaultSize": 32,
|
|
106
189
|
"comparisonString": "e1feef39",
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
190
|
+
"css": [
|
|
191
|
+
"https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
|
|
192
|
+
],
|
|
193
|
+
"fontFaces": [
|
|
194
|
+
{
|
|
195
|
+
"fontFamily": "Material Icons Outlined",
|
|
196
|
+
"paths": [
|
|
197
|
+
"qx/iconfont/MaterialIcons/materialiconsoutlined-v101.eot",
|
|
198
|
+
"qx/iconfont/MaterialIcons/materialiconsoutlined-v101.woff2",
|
|
199
|
+
"qx/iconfont/MaterialIcons/materialiconsoutlined-v101.woff",
|
|
200
|
+
"qx/iconfont/MaterialIcons/materialiconsoutlined-v101.otf"
|
|
201
|
+
]
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
"glyphs": "qx/iconfont/MaterialIcons/materialiconsoutlined.json"
|
|
113
205
|
},
|
|
114
|
-
{
|
|
115
|
-
"
|
|
206
|
+
"MaterialIconsRound": {
|
|
207
|
+
"family": [
|
|
208
|
+
"Material Icons Round"
|
|
209
|
+
],
|
|
116
210
|
"defaultSize": 32,
|
|
117
211
|
"comparisonString": "e1feef39",
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
212
|
+
"css": [
|
|
213
|
+
"https://fonts.googleapis.com/icon?family=Material+Icons+Round"
|
|
214
|
+
],
|
|
215
|
+
"fontFaces": [
|
|
216
|
+
{
|
|
217
|
+
"fontFamily": "Material Icons Round",
|
|
218
|
+
"paths": [
|
|
219
|
+
"qx/iconfont/MaterialIcons/materialiconsround-v100.eot",
|
|
220
|
+
"qx/iconfont/MaterialIcons/materialiconsround-v100.woff2",
|
|
221
|
+
"qx/iconfont/MaterialIcons/materialiconsround-v100.woff",
|
|
222
|
+
"qx/iconfont/MaterialIcons/materialiconsround-v100.otf"
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
],
|
|
226
|
+
"glyphs": "qx/iconfont/MaterialIcons/materialiconsround.json"
|
|
124
227
|
},
|
|
125
|
-
{
|
|
126
|
-
"
|
|
228
|
+
"MaterialIconsSharp": {
|
|
229
|
+
"family": [
|
|
230
|
+
"Material Icons Sharp"
|
|
231
|
+
],
|
|
127
232
|
"comparisonString": "e1feef39",
|
|
128
233
|
"defaultSize": 32,
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
234
|
+
"css": [
|
|
235
|
+
"https://fonts.googleapis.com/icon?family=Material+Icons+Sharp"
|
|
236
|
+
],
|
|
237
|
+
"fontFaces": [
|
|
238
|
+
{
|
|
239
|
+
"fontFamily": "Material Icons Sharp",
|
|
240
|
+
"paths": [
|
|
241
|
+
"qx/iconfont/MaterialIcons/materialiconssharp-v101.eot",
|
|
242
|
+
"qx/iconfont/MaterialIcons/materialiconssharp-v101.woff2",
|
|
243
|
+
"qx/iconfont/MaterialIcons/materialiconssharp-v101.woff",
|
|
244
|
+
"qx/iconfont/MaterialIcons/materialiconssharp-v101.otf"
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
],
|
|
248
|
+
"glyphs": "qx/iconfont/MaterialIcons/materialiconssharp.json"
|
|
135
249
|
},
|
|
136
|
-
{
|
|
137
|
-
"
|
|
250
|
+
"MaterialIconsTwoTone": {
|
|
251
|
+
"family": [
|
|
252
|
+
"Material Icons Two Tone"
|
|
253
|
+
],
|
|
138
254
|
"defaultSize": 32,
|
|
139
255
|
"comparisonString": "e1feef39",
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
256
|
+
"css": [
|
|
257
|
+
"https://fonts.googleapis.com/icon?family=Material+Icons+Two+Tone"
|
|
258
|
+
],
|
|
259
|
+
"fontFaces": [
|
|
260
|
+
{
|
|
261
|
+
"fontFamily": "Material Icons Two Tone",
|
|
262
|
+
"paths": [
|
|
263
|
+
"qx/iconfont/MaterialIcons/materialiconstwotone-v104.eot",
|
|
264
|
+
"qx/iconfont/MaterialIcons/materialiconstwotone-v104.woff2",
|
|
265
|
+
"qx/iconfont/MaterialIcons/materialiconstwotone-v104.woff",
|
|
266
|
+
"qx/iconfont/MaterialIcons/materialiconstwotone-v104.otf"
|
|
267
|
+
]
|
|
268
|
+
}
|
|
269
|
+
],
|
|
270
|
+
"glyphs": "qx/iconfont/MaterialIcons/materialiconstwotone.json"
|
|
146
271
|
}
|
|
147
|
-
|
|
272
|
+
},
|
|
148
273
|
"environmentChecks": {
|
|
149
274
|
"browser.*": "qx.bom.client.Browser",
|
|
150
275
|
"css.*": "qx.bom.client.Css",
|
package/bin/deploy/qx
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
const
|
|
4
|
-
const
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
(async () => {
|
|
3
|
+
const path=require("path");
|
|
4
|
+
const updateNotifier = (await import("update-notifier")).default;
|
|
5
|
+
const pkg = require(path.join(__dirname, "..", "..", "package.json"));
|
|
6
|
+
updateNotifier({pkg}).notify({defer:false});
|
|
7
|
+
require(path.join(__dirname, "..", "..", "lib", "compiler"));
|
|
8
|
+
})()
|
|
7
9
|
|
|
@@ -156,8 +156,10 @@
|
|
|
156
156
|
"qx.tool.compiler.jsdoc.Parser",
|
|
157
157
|
"qx.tool.compiler.targets.meta.Part",
|
|
158
158
|
"qx.tool.compiler.targets.meta.Package",
|
|
159
|
+
"qx.tool.utils.Http",
|
|
159
160
|
"qx.tool.compiler.resources.Manager",
|
|
160
161
|
"qx.tool.compiler.app.Translation",
|
|
162
|
+
"qx.tool.compiler.app.ManifestFont",
|
|
161
163
|
"qx.tool.compiler.targets.meta.PackageJavascript",
|
|
162
164
|
"qx.tool.compiler.resources.ResourceLoader",
|
|
163
165
|
"qx.tool.compiler.resources.ImageLoader",
|
|
@@ -169,6 +171,7 @@
|
|
|
169
171
|
"qx.tool.cli.commands.Deploy",
|
|
170
172
|
"qx.tool.cli.commands.Es6ify",
|
|
171
173
|
"qx.tool.compiler.Es6ify",
|
|
174
|
+
"qx.tool.cli.commands.ExportGlyphs",
|
|
172
175
|
"qx.tool.cli.commands.Lint",
|
|
173
176
|
"qx.tool.cli.commands.Migrate",
|
|
174
177
|
"qx.tool.cli.commands.Pkg",
|
|
@@ -178,6 +181,10 @@
|
|
|
178
181
|
"qx.tool.cli.commands.Test",
|
|
179
182
|
"qx.tool.cli.commands.add.Class",
|
|
180
183
|
"qx.tool.cli.commands.add.Script",
|
|
184
|
+
"qx.tool.cli.commands.config.Delete",
|
|
185
|
+
"qx.tool.cli.commands.config.Get",
|
|
186
|
+
"qx.tool.cli.commands.config.List",
|
|
187
|
+
"qx.tool.cli.commands.config.Set",
|
|
181
188
|
"qx.tool.cli.commands.package.Migrate",
|
|
182
189
|
"qx.tool.cli.commands.package.Publish",
|
|
183
190
|
"qx.tool.cli.commands.package.Remove",
|
|
@@ -188,6 +195,7 @@
|
|
|
188
195
|
"qx.tool.migration.BaseMigration",
|
|
189
196
|
"qx.tool.migration.M6_0_0",
|
|
190
197
|
"qx.tool.migration.M7_0_0",
|
|
198
|
+
"qx.tool.migration.M7_5_6",
|
|
191
199
|
"qx.tool.utils.files.FindFiles",
|
|
192
200
|
"qx.Theme",
|
|
193
201
|
"qx.bom.client.Css",
|
|
@@ -211,54 +219,54 @@
|
|
|
211
219
|
],
|
|
212
220
|
"resources": [
|
|
213
221
|
"qx/decoration/Simple/checkbox/checked-disabled.png",
|
|
214
|
-
"qx/decoration/Simple/checkbox/undetermined-disabled.png",
|
|
215
222
|
"qx/decoration/Simple/checkbox/checked.png",
|
|
216
223
|
"qx/decoration/Simple/checkbox/undetermined.png",
|
|
217
|
-
"qx/decoration/Simple/
|
|
218
|
-
"qx/decoration/Simple/cursors/nodrop.gif",
|
|
219
|
-
"qx/decoration/Simple/cursors/copy.gif",
|
|
220
|
-
"qx/decoration/Simple/cursors/move.gif",
|
|
224
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png",
|
|
221
225
|
"qx/decoration/Simple/arrows/down-invert.gif",
|
|
222
226
|
"qx/decoration/Simple/arrows/down-small.gif",
|
|
223
227
|
"qx/decoration/Simple/arrows/down.gif",
|
|
228
|
+
"qx/decoration/Simple/arrows/left-invert.gif",
|
|
224
229
|
"qx/decoration/Simple/arrows/forward.gif",
|
|
225
230
|
"qx/decoration/Simple/arrows/left.gif",
|
|
226
231
|
"qx/decoration/Simple/arrows/rewind.gif",
|
|
227
|
-
"qx/decoration/Simple/arrows/left-invert.gif",
|
|
228
|
-
"qx/decoration/Simple/arrows/right.gif",
|
|
229
232
|
"qx/decoration/Simple/arrows/right-invert.gif",
|
|
233
|
+
"qx/decoration/Simple/arrows/right.gif",
|
|
234
|
+
"qx/decoration/Simple/arrows/up.gif",
|
|
230
235
|
"qx/decoration/Simple/arrows/up-invert.gif",
|
|
231
236
|
"qx/decoration/Simple/arrows/up-small.gif",
|
|
232
|
-
"qx/decoration/Simple/
|
|
237
|
+
"qx/decoration/Simple/colorselector/brightness-field.png",
|
|
238
|
+
"qx/decoration/Simple/colorselector/huesaturation-field.jpg",
|
|
239
|
+
"qx/decoration/Simple/colorselector/brightness-handle.gif",
|
|
240
|
+
"qx/decoration/Simple/colorselector/huesaturation-handle.gif",
|
|
241
|
+
"qx/decoration/Simple/cursors/alias.gif",
|
|
242
|
+
"qx/decoration/Simple/cursors/copy.gif",
|
|
243
|
+
"qx/decoration/Simple/cursors/move.gif",
|
|
244
|
+
"qx/decoration/Simple/cursors/nodrop.gif",
|
|
233
245
|
"qx/decoration/Simple/menu/checkbox-invert.gif",
|
|
234
246
|
"qx/decoration/Simple/menu/checkbox.gif",
|
|
235
|
-
"qx/decoration/Simple/menu/radiobutton.gif",
|
|
236
247
|
"qx/decoration/Simple/menu/radiobutton-invert.gif",
|
|
237
|
-
"qx/decoration/Simple/
|
|
238
|
-
"qx/decoration/Simple/splitpane/knob-vertical.png",
|
|
248
|
+
"qx/decoration/Simple/menu/radiobutton.gif",
|
|
239
249
|
"qx/decoration/Simple/table/ascending-invert.png",
|
|
240
250
|
"qx/decoration/Simple/table/ascending.png",
|
|
251
|
+
"qx/decoration/Simple/table/descending-invert.png",
|
|
241
252
|
"qx/decoration/Simple/table/boolean-false.png",
|
|
242
253
|
"qx/decoration/Simple/table/boolean-true.png",
|
|
243
254
|
"qx/decoration/Simple/table/descending.png",
|
|
244
255
|
"qx/decoration/Simple/table/select-column-order.png",
|
|
245
|
-
"qx/decoration/Simple/
|
|
256
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png",
|
|
257
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png",
|
|
246
258
|
"qx/decoration/Simple/tabview/close.gif",
|
|
247
|
-
"qx/decoration/Simple/colorselector/brightness-field.png",
|
|
248
|
-
"qx/decoration/Simple/colorselector/brightness-handle.gif",
|
|
249
|
-
"qx/decoration/Simple/colorselector/huesaturation-field.jpg",
|
|
250
|
-
"qx/decoration/Simple/colorselector/huesaturation-handle.gif",
|
|
251
259
|
"qx/decoration/Simple/tree/minus.gif",
|
|
252
260
|
"qx/decoration/Simple/tree/plus.gif",
|
|
253
|
-
"qx/decoration/Simple/treevirtual/cross.gif",
|
|
254
261
|
"qx/decoration/Simple/treevirtual/cross_minus.gif",
|
|
262
|
+
"qx/decoration/Simple/treevirtual/cross.gif",
|
|
255
263
|
"qx/decoration/Simple/treevirtual/cross_plus.gif",
|
|
264
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif",
|
|
256
265
|
"qx/decoration/Simple/treevirtual/end.gif",
|
|
257
266
|
"qx/decoration/Simple/treevirtual/end_plus.gif",
|
|
258
|
-
"qx/decoration/Simple/treevirtual/line.gif",
|
|
259
|
-
"qx/decoration/Simple/treevirtual/end_minus.gif",
|
|
260
267
|
"qx/decoration/Simple/treevirtual/only_minus.gif",
|
|
261
268
|
"qx/decoration/Simple/treevirtual/only_plus.gif",
|
|
269
|
+
"qx/decoration/Simple/treevirtual/line.gif",
|
|
262
270
|
"qx/decoration/Simple/treevirtual/start.gif",
|
|
263
271
|
"qx/decoration/Simple/treevirtual/start_minus.gif",
|
|
264
272
|
"qx/decoration/Simple/treevirtual/start_plus.gif",
|
|
@@ -275,18 +283,19 @@
|
|
|
275
283
|
"qx/tool/bin/build-devtools",
|
|
276
284
|
"qx/tool/bin/build-website",
|
|
277
285
|
"qx/tool/bin/download-assets",
|
|
278
|
-
"qx/tool/website/.gitignore",
|
|
279
|
-
"qx/tool/schema/Manifest-1-0-0.json",
|
|
280
286
|
"qx/tool/schema/compile-1-0-0.json",
|
|
287
|
+
"qx/tool/schema/Manifest-1-0-0.json",
|
|
281
288
|
"qx/tool/schema/Manifest-2-0-0.json",
|
|
282
289
|
"qx/tool/schema/qooxdoo-1-0-0.json",
|
|
283
|
-
"qx/tool/
|
|
290
|
+
"qx/tool/website/.gitignore",
|
|
284
291
|
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt",
|
|
292
|
+
"qx/tool/cli/templates/template_vars.js",
|
|
285
293
|
"qx/tool/website/build/404.html",
|
|
286
294
|
"qx/tool/website/build/about.html",
|
|
287
295
|
"qx/tool/website/build/index.html",
|
|
288
296
|
"qx/tool/website/build/qooxdoo.css",
|
|
289
297
|
"qx/tool/website/layouts/default.dot",
|
|
298
|
+
"qx/tool/website/sass/qooxdoo.scss",
|
|
290
299
|
"qx/tool/website/partials/footer.html",
|
|
291
300
|
"qx/tool/website/partials/head.html",
|
|
292
301
|
"qx/tool/website/partials/header.html",
|
|
@@ -294,115 +303,114 @@
|
|
|
294
303
|
"qx/tool/website/partials/icon-github.svg",
|
|
295
304
|
"qx/tool/website/partials/icon-twitter.html",
|
|
296
305
|
"qx/tool/website/partials/icon-twitter.svg",
|
|
297
|
-
"qx/tool/website/src/404.html",
|
|
298
306
|
"qx/tool/website/src/about.md",
|
|
299
307
|
"qx/tool/website/src/index.html",
|
|
300
|
-
"qx/tool/website/
|
|
308
|
+
"qx/tool/website/src/404.html",
|
|
301
309
|
"qx/tool/cli/templates/class/default.tmpl.js",
|
|
302
|
-
"qx/tool/cli/templates/class/header.tmpl.js",
|
|
303
310
|
"qx/tool/cli/templates/class/interface.tmpl.js",
|
|
304
311
|
"qx/tool/cli/templates/class/mixin.tmpl.js",
|
|
312
|
+
"qx/tool/cli/templates/class/header.tmpl.js",
|
|
305
313
|
"qx/tool/cli/templates/class/singleton.tmpl.js",
|
|
306
314
|
"qx/tool/cli/templates/loader/loader-browser.tmpl.js",
|
|
307
315
|
"qx/tool/cli/templates/loader/loader-node.tmpl.js",
|
|
308
316
|
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js",
|
|
309
|
-
"qx/tool/website/build/diagnostics/dependson.html",
|
|
310
|
-
"qx/tool/website/build/diagnostics/requiredby.html",
|
|
311
|
-
"qx/tool/website/build/diagnostics/requiredby.js",
|
|
312
|
-
"qx/tool/website/build/diagnostics/dependson.js",
|
|
313
|
-
"qx/tool/website/build/assets/bluebird.min.js",
|
|
314
317
|
"qx/tool/website/build/assets/abel.css",
|
|
315
318
|
"qx/tool/website/build/assets/bootstrap.css",
|
|
316
319
|
"qx/tool/website/build/assets/bootstrap.min.css",
|
|
317
320
|
"qx/tool/website/build/assets/bootstrap.min.css.map",
|
|
321
|
+
"qx/tool/website/build/assets/bluebird.min.js",
|
|
318
322
|
"qx/tool/website/build/assets/buttons.js",
|
|
319
323
|
"qx/tool/website/build/assets/favicon.png",
|
|
324
|
+
"qx/tool/website/build/assets/jquery.js",
|
|
320
325
|
"qx/tool/website/build/assets/fontawesome-all.js",
|
|
321
326
|
"qx/tool/website/build/assets/logo.svg",
|
|
322
|
-
"qx/tool/website/build/assets/jquery.js",
|
|
323
327
|
"qx/tool/website/build/assets/qx-api.png",
|
|
324
328
|
"qx/tool/website/build/assets/qx-ide.png",
|
|
325
329
|
"qx/tool/website/build/assets/qx-oo.png",
|
|
326
330
|
"qx/tool/website/build/assets/qx-white.svg",
|
|
331
|
+
"qx/tool/website/build/diagnostics/requiredby.js",
|
|
332
|
+
"qx/tool/website/build/diagnostics/requiredby.html",
|
|
333
|
+
"qx/tool/website/build/diagnostics/dependson.html",
|
|
334
|
+
"qx/tool/website/build/diagnostics/dependson.js",
|
|
327
335
|
"qx/tool/website/build/scripts/serve.js",
|
|
328
|
-
"qx/tool/website/src/scripts/serve.js",
|
|
329
|
-
"qx/tool/website/src/diagnostics/dependson.js",
|
|
330
|
-
"qx/tool/website/src/diagnostics/dependson.html",
|
|
331
|
-
"qx/tool/website/src/diagnostics/requiredby.html",
|
|
332
|
-
"qx/tool/website/src/diagnostics/requiredby.js",
|
|
333
336
|
"qx/tool/website/src/assets/abel.css",
|
|
334
|
-
"qx/tool/website/src/assets/bootstrap.css",
|
|
335
337
|
"qx/tool/website/src/assets/bluebird.min.js",
|
|
336
|
-
"qx/tool/website/src/assets/bootstrap.min.css.map",
|
|
337
338
|
"qx/tool/website/src/assets/bootstrap.min.css",
|
|
339
|
+
"qx/tool/website/src/assets/bootstrap.css",
|
|
338
340
|
"qx/tool/website/src/assets/buttons.js",
|
|
341
|
+
"qx/tool/website/src/assets/bootstrap.min.css.map",
|
|
339
342
|
"qx/tool/website/src/assets/fontawesome-all.js",
|
|
340
343
|
"qx/tool/website/src/assets/favicon.png",
|
|
341
344
|
"qx/tool/website/src/assets/jquery.js",
|
|
342
345
|
"qx/tool/website/src/assets/logo.svg",
|
|
343
|
-
"qx/tool/website/src/assets/qx-ide.png",
|
|
344
|
-
"qx/tool/website/src/assets/qx-white.svg",
|
|
345
346
|
"qx/tool/website/src/assets/qx-api.png",
|
|
347
|
+
"qx/tool/website/src/assets/qx-ide.png",
|
|
346
348
|
"qx/tool/website/src/assets/qx-oo.png",
|
|
349
|
+
"qx/tool/website/src/assets/qx-white.svg",
|
|
350
|
+
"qx/tool/website/src/diagnostics/dependson.html",
|
|
351
|
+
"qx/tool/website/src/diagnostics/dependson.js",
|
|
352
|
+
"qx/tool/website/src/diagnostics/requiredby.js",
|
|
353
|
+
"qx/tool/website/src/diagnostics/requiredby.html",
|
|
354
|
+
"qx/tool/website/src/scripts/serve.js",
|
|
355
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl",
|
|
347
356
|
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json",
|
|
348
357
|
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json",
|
|
349
358
|
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md",
|
|
350
|
-
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl",
|
|
351
359
|
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl",
|
|
352
360
|
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json",
|
|
353
|
-
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md",
|
|
354
361
|
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json",
|
|
362
|
+
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md",
|
|
355
363
|
"qx/tool/cli/templates/skeleton/server/.gitignore.tmpl",
|
|
356
364
|
"qx/tool/cli/templates/skeleton/server/compile.tmpl.json",
|
|
357
|
-
"qx/tool/cli/templates/skeleton/server/readme.tmpl.txt",
|
|
358
365
|
"qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json",
|
|
366
|
+
"qx/tool/cli/templates/skeleton/server/readme.tmpl.txt",
|
|
359
367
|
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl",
|
|
360
368
|
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json",
|
|
361
369
|
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json",
|
|
362
370
|
"qx/tool/cli/templates/skeleton/package/readme.tmpl.md",
|
|
363
|
-
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html",
|
|
364
371
|
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html",
|
|
372
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html",
|
|
365
373
|
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt",
|
|
366
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html",
|
|
367
374
|
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html",
|
|
375
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html",
|
|
368
376
|
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt",
|
|
369
377
|
"qx/tool/cli/templates/skeleton/server/source/translation/readme.txt",
|
|
370
378
|
"qx/tool/cli/templates/skeleton/package/source/translation/readme.txt",
|
|
379
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js",
|
|
380
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js",
|
|
371
381
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png",
|
|
372
382
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png",
|
|
373
|
-
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png",
|
|
374
383
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png",
|
|
375
|
-
"qx/tool/cli/templates/skeleton/desktop/source/
|
|
376
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js",
|
|
377
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png",
|
|
378
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png",
|
|
379
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png",
|
|
384
|
+
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png",
|
|
380
385
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js",
|
|
381
386
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js",
|
|
382
|
-
"qx/tool/cli/templates/skeleton/
|
|
387
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png",
|
|
388
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png",
|
|
389
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png",
|
|
383
390
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js",
|
|
384
391
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js",
|
|
392
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl",
|
|
385
393
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js",
|
|
386
394
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js",
|
|
387
395
|
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png",
|
|
388
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js",
|
|
389
396
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js",
|
|
390
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js",
|
|
391
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js",
|
|
392
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js",
|
|
393
397
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js",
|
|
394
|
-
"qx/tool/cli/templates/skeleton/
|
|
395
|
-
"qx/tool/cli/templates/skeleton/
|
|
396
|
-
"qx/tool/cli/templates/skeleton/
|
|
398
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js",
|
|
399
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js",
|
|
400
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js",
|
|
401
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js",
|
|
397
402
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js",
|
|
398
403
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js",
|
|
399
404
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js",
|
|
405
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl",
|
|
406
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss",
|
|
407
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss",
|
|
400
408
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js",
|
|
401
409
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js",
|
|
402
410
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js",
|
|
403
411
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js",
|
|
404
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js",
|
|
405
412
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js",
|
|
413
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js",
|
|
406
414
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js",
|
|
407
415
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js",
|
|
408
416
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/resource/custom/test.png"
|
|
@@ -414,7 +422,7 @@
|
|
|
414
422
|
"qx.application": "qx.tool.cli.Application",
|
|
415
423
|
"qx.revision": "",
|
|
416
424
|
"qx.theme": "qx.theme.Simple",
|
|
417
|
-
"qx.version": "7.
|
|
425
|
+
"qx.version": "7.6.0",
|
|
418
426
|
"qx.compiler.targetType": "source",
|
|
419
427
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
420
428
|
"true": true,
|
|
@@ -446,7 +454,7 @@
|
|
|
446
454
|
"qx.promise.warnings": true,
|
|
447
455
|
"qx.promise.longStackTraces": true,
|
|
448
456
|
"qx.compiler": true,
|
|
449
|
-
"qx.compiler.version": "7.
|
|
457
|
+
"qx.compiler.version": "7.6.0",
|
|
450
458
|
"qx.headless": true,
|
|
451
459
|
"qx.compiler.applicationType": "node",
|
|
452
460
|
"qx.compiler.applicationName": "compiler"
|