@qooxdoo/framework 7.0.0 → 7.1.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/CHANGELOG.md +8 -3
- package/Manifest.json +1 -1
- package/README.md +2 -4
- package/lib/compiler/compile-info.json +65 -63
- package/lib/compiler/index.js +1846 -1569
- package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
- package/npm-shrinkwrap.json +933 -32
- package/package.json +2 -1
- package/source/class/qx/tool/cli/api/AbstractApi.js +4 -1
- package/source/class/qx/tool/cli/commands/Compile.js +1 -0
- package/source/class/qx/tool/cli/commands/Lint.js +15 -5
- package/source/class/qx/tool/compiler/ClassFile.js +70 -0
- package/source/class/qx/tool/compiler/TargetError.js +27 -0
- package/source/class/qx/tool/compiler/targets/Target.js +6 -0
- package/source/class/qx/tool/compiler/targets/meta/AbstractJavascriptMeta.js +1 -1
- package/source/class/qx/tool/compiler/targets/meta/Browserify.js +143 -0
- package/source/class/qx/ui/form/AbstractSelectBox.js +4 -1
- package/source/class/qx/ui/form/DateField.js +4 -1
- package/source/class/qx/ui/progressive/renderer/table/Row.js +2 -1
- package/source/class/qx/ui/progressive/renderer/table/cell/Boolean.js +24 -26
- package/source/class/qx/ui/progressive/renderer/table/cell/Icon.js +9 -7
- package/source/class/qx/ui/progressive/renderer/table/cell/Image.js +16 -13
- package/source/class/qx/ui/table/Table.js +0 -1
- package/source/class/qx/ui/table/model/Abstract.js +31 -1
- package/source/class/qx/ui/table/model/Remote.js +1 -0
- package/source/class/qx/ui/table/model/Simple.js +3 -0
- package/source/class/qx/ui/treevirtual/MNode.js +60 -5
- package/source/class/qx/ui/treevirtual/SimpleTreeDataModel.js +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Breaking changes
|
|
4
4
|
|
|
5
|
+
- (>=v8.0.0) Setting model data for a `qx.ui.table.Table` when the table is still editing will
|
|
6
|
+
now raise an error as this could have lead to an invalid edit. To prevent any errors, ensure
|
|
7
|
+
that the table edits are completed or cancelled before refreshing table model data.
|
|
8
|
+
|
|
9
|
+
# v7.0.0
|
|
10
|
+
|
|
11
|
+
## Breaking changes
|
|
12
|
+
|
|
5
13
|
- The `qx.library` config setting is no longer used by the
|
|
6
14
|
compiler. If you want to override the path to the framework
|
|
7
15
|
source, add the path to `compile.json`'s `libraries` array.
|
|
@@ -16,9 +24,6 @@ at the bottom. Before that, the 2 values were reversed
|
|
|
16
24
|
not set the `active` status of the group, thus staying active even if the group
|
|
17
25
|
was inactive.
|
|
18
26
|
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
|
|
22
27
|
## Deprecations:
|
|
23
28
|
|
|
24
29
|
- `qx package migrate` has been deprecated in favor of `qx migrate`
|
package/Manifest.json
CHANGED
package/README.md
CHANGED
|
@@ -28,12 +28,10 @@ It is easy to get started with qooxdoo. For detailed information please
|
|
|
28
28
|
see [our Get Started Guide](docs/README.md).
|
|
29
29
|
|
|
30
30
|
## Documentation
|
|
31
|
-
- released version: https://qooxdoo.org/documentation/
|
|
32
|
-
- development version: https://qooxdoo.org/documentation/v7.0/#/
|
|
31
|
+
- released version: https://qooxdoo.org/documentation/v7.0/#/
|
|
33
32
|
|
|
34
33
|
## API Ref
|
|
35
|
-
- released version: https://qooxdoo.org/qxl.apiviewer/
|
|
36
|
-
- development version: https://qooxdoo.org/qxl.apiviewer/v7.0/#/
|
|
34
|
+
- released version: https://qooxdoo.org/qxl.apiviewer/v7.0/#/
|
|
37
35
|
|
|
38
36
|
## Development
|
|
39
37
|
|
|
@@ -139,6 +139,7 @@
|
|
|
139
139
|
"qx.tool.compiler.targets.meta.AbstractJavascriptMeta",
|
|
140
140
|
"qx.tool.compiler.targets.meta.BootJs",
|
|
141
141
|
"qx.tool.compiler.targets.meta.PolyfillJs",
|
|
142
|
+
"qx.tool.compiler.targets.meta.Browserify",
|
|
142
143
|
"qx.tool.compiler.targets.meta.Javascript",
|
|
143
144
|
"qx.tool.compiler.app.Cldr",
|
|
144
145
|
"qx.tool.compiler.targets.meta.Uglify",
|
|
@@ -182,6 +183,7 @@
|
|
|
182
183
|
"qx.tool.cli.commands.package.Remove",
|
|
183
184
|
"qx.tool.cli.commands.package.Upgrade",
|
|
184
185
|
"qx.tool.compiler.Preprocess",
|
|
186
|
+
"qx.tool.compiler.TargetError",
|
|
185
187
|
"qx.tool.compiler.targets.SourceCodeCopier",
|
|
186
188
|
"qx.tool.migration.BaseMigration",
|
|
187
189
|
"qx.tool.migration.M6_0_0",
|
|
@@ -210,20 +212,20 @@
|
|
|
210
212
|
"resources": [
|
|
211
213
|
"qx/decoration/Simple/arrows/down-invert.gif",
|
|
212
214
|
"qx/decoration/Simple/arrows/down-small.gif",
|
|
213
|
-
"qx/decoration/Simple/arrows/
|
|
215
|
+
"qx/decoration/Simple/arrows/down.gif",
|
|
214
216
|
"qx/decoration/Simple/arrows/forward.gif",
|
|
215
217
|
"qx/decoration/Simple/arrows/left-invert.gif",
|
|
216
|
-
"qx/decoration/Simple/arrows/
|
|
218
|
+
"qx/decoration/Simple/arrows/left.gif",
|
|
217
219
|
"qx/decoration/Simple/arrows/rewind.gif",
|
|
218
220
|
"qx/decoration/Simple/arrows/right-invert.gif",
|
|
221
|
+
"qx/decoration/Simple/arrows/right.gif",
|
|
219
222
|
"qx/decoration/Simple/arrows/up-invert.gif",
|
|
220
223
|
"qx/decoration/Simple/arrows/up-small.gif",
|
|
221
|
-
"qx/decoration/Simple/arrows/right.gif",
|
|
222
224
|
"qx/decoration/Simple/arrows/up.gif",
|
|
223
225
|
"qx/decoration/Simple/checkbox/checked-disabled.png",
|
|
224
226
|
"qx/decoration/Simple/checkbox/checked.png",
|
|
225
|
-
"qx/decoration/Simple/checkbox/undetermined.png",
|
|
226
227
|
"qx/decoration/Simple/checkbox/undetermined-disabled.png",
|
|
228
|
+
"qx/decoration/Simple/checkbox/undetermined.png",
|
|
227
229
|
"qx/decoration/Simple/colorselector/brightness-field.png",
|
|
228
230
|
"qx/decoration/Simple/colorselector/brightness-handle.gif",
|
|
229
231
|
"qx/decoration/Simple/colorselector/huesaturation-field.jpg",
|
|
@@ -236,50 +238,48 @@
|
|
|
236
238
|
"qx/decoration/Simple/menu/checkbox.gif",
|
|
237
239
|
"qx/decoration/Simple/menu/radiobutton-invert.gif",
|
|
238
240
|
"qx/decoration/Simple/menu/radiobutton.gif",
|
|
241
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png",
|
|
242
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png",
|
|
239
243
|
"qx/decoration/Simple/table/ascending-invert.png",
|
|
240
244
|
"qx/decoration/Simple/table/ascending.png",
|
|
241
245
|
"qx/decoration/Simple/table/boolean-false.png",
|
|
242
|
-
"qx/decoration/Simple/table/descending-invert.png",
|
|
243
246
|
"qx/decoration/Simple/table/boolean-true.png",
|
|
247
|
+
"qx/decoration/Simple/table/descending-invert.png",
|
|
244
248
|
"qx/decoration/Simple/table/descending.png",
|
|
245
249
|
"qx/decoration/Simple/table/select-column-order.png",
|
|
246
|
-
"qx/decoration/Simple/splitpane/knob-horizontal.png",
|
|
247
|
-
"qx/decoration/Simple/splitpane/knob-vertical.png",
|
|
248
250
|
"qx/decoration/Simple/tabview/close.gif",
|
|
249
251
|
"qx/decoration/Simple/tree/minus.gif",
|
|
250
252
|
"qx/decoration/Simple/tree/plus.gif",
|
|
253
|
+
"qx/decoration/Simple/window/close-white.gif",
|
|
254
|
+
"qx/decoration/Simple/window/close.gif",
|
|
255
|
+
"qx/decoration/Simple/window/maximize-white.gif",
|
|
256
|
+
"qx/decoration/Simple/window/maximize.gif",
|
|
257
|
+
"qx/decoration/Simple/window/minimize.gif",
|
|
258
|
+
"qx/decoration/Simple/window/minimize-white.gif",
|
|
259
|
+
"qx/decoration/Simple/window/restore-white.gif",
|
|
260
|
+
"qx/decoration/Simple/window/restore.gif",
|
|
251
261
|
"qx/decoration/Simple/treevirtual/cross.gif",
|
|
252
|
-
"qx/decoration/Simple/treevirtual/cross_plus.gif",
|
|
253
262
|
"qx/decoration/Simple/treevirtual/cross_minus.gif",
|
|
254
|
-
"qx/decoration/Simple/treevirtual/
|
|
263
|
+
"qx/decoration/Simple/treevirtual/cross_plus.gif",
|
|
255
264
|
"qx/decoration/Simple/treevirtual/end.gif",
|
|
265
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif",
|
|
256
266
|
"qx/decoration/Simple/treevirtual/end_plus.gif",
|
|
257
267
|
"qx/decoration/Simple/treevirtual/line.gif",
|
|
258
268
|
"qx/decoration/Simple/treevirtual/only_minus.gif",
|
|
259
|
-
"qx/decoration/Simple/treevirtual/start.gif",
|
|
260
269
|
"qx/decoration/Simple/treevirtual/only_plus.gif",
|
|
261
|
-
"qx/decoration/Simple/treevirtual/
|
|
270
|
+
"qx/decoration/Simple/treevirtual/start.gif",
|
|
262
271
|
"qx/decoration/Simple/treevirtual/start_minus.gif",
|
|
263
|
-
"qx/decoration/Simple/
|
|
264
|
-
"qx/decoration/Simple/window/maximize-white.gif",
|
|
265
|
-
"qx/decoration/Simple/window/close.gif",
|
|
266
|
-
"qx/decoration/Simple/window/minimize-white.gif",
|
|
267
|
-
"qx/decoration/Simple/window/maximize.gif",
|
|
268
|
-
"qx/decoration/Simple/window/minimize.gif",
|
|
269
|
-
"qx/decoration/Simple/window/restore-white.gif",
|
|
270
|
-
"qx/decoration/Simple/window/restore.gif",
|
|
272
|
+
"qx/decoration/Simple/treevirtual/start_plus.gif",
|
|
271
273
|
"qx/static/blank.png",
|
|
272
274
|
"qx/tool/loadsass.js",
|
|
273
275
|
"qx/tool/bin/build-devtools",
|
|
274
|
-
"qx/tool/bin/download-assets",
|
|
275
276
|
"qx/tool/bin/build-website",
|
|
276
|
-
"qx/tool/
|
|
277
|
+
"qx/tool/bin/download-assets",
|
|
277
278
|
"qx/tool/schema/compile-1-0-0.json",
|
|
279
|
+
"qx/tool/schema/Manifest-1-0-0.json",
|
|
278
280
|
"qx/tool/schema/Manifest-2-0-0.json",
|
|
279
281
|
"qx/tool/schema/qooxdoo-1-0-0.json",
|
|
280
282
|
"qx/tool/website/.gitignore",
|
|
281
|
-
"qx/tool/cli/templates/template_vars.js",
|
|
282
|
-
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt",
|
|
283
283
|
"qx/tool/website/build/404.html",
|
|
284
284
|
"qx/tool/website/build/about.html",
|
|
285
285
|
"qx/tool/website/build/index.html",
|
|
@@ -288,68 +288,70 @@
|
|
|
288
288
|
"qx/tool/website/partials/footer.html",
|
|
289
289
|
"qx/tool/website/partials/head.html",
|
|
290
290
|
"qx/tool/website/partials/header.html",
|
|
291
|
-
"qx/tool/website/partials/icon-github.svg",
|
|
292
291
|
"qx/tool/website/partials/icon-github.html",
|
|
292
|
+
"qx/tool/website/partials/icon-github.svg",
|
|
293
293
|
"qx/tool/website/partials/icon-twitter.html",
|
|
294
294
|
"qx/tool/website/partials/icon-twitter.svg",
|
|
295
|
-
"qx/tool/website/sass/qooxdoo.scss",
|
|
296
295
|
"qx/tool/website/src/404.html",
|
|
297
296
|
"qx/tool/website/src/about.md",
|
|
298
297
|
"qx/tool/website/src/index.html",
|
|
299
|
-
"qx/tool/
|
|
300
|
-
"qx/tool/cli/templates/
|
|
301
|
-
"qx/tool/cli/templates/
|
|
302
|
-
"qx/tool/cli/templates/class/mixin.tmpl.js",
|
|
303
|
-
"qx/tool/cli/templates/class/singleton.tmpl.js",
|
|
304
|
-
"qx/tool/cli/templates/loader/loader-browser.tmpl.js",
|
|
305
|
-
"qx/tool/cli/templates/loader/loader-node.tmpl.js",
|
|
306
|
-
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js",
|
|
298
|
+
"qx/tool/website/sass/qooxdoo.scss",
|
|
299
|
+
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt",
|
|
300
|
+
"qx/tool/cli/templates/template_vars.js",
|
|
307
301
|
"qx/tool/website/build/assets/abel.css",
|
|
308
302
|
"qx/tool/website/build/assets/bluebird.min.js",
|
|
309
303
|
"qx/tool/website/build/assets/bootstrap.css",
|
|
304
|
+
"qx/tool/website/build/assets/buttons.js",
|
|
310
305
|
"qx/tool/website/build/assets/bootstrap.min.css",
|
|
311
306
|
"qx/tool/website/build/assets/bootstrap.min.css.map",
|
|
312
|
-
"qx/tool/website/build/assets/buttons.js",
|
|
313
|
-
"qx/tool/website/build/assets/favicon.png",
|
|
314
307
|
"qx/tool/website/build/assets/fontawesome-all.js",
|
|
308
|
+
"qx/tool/website/build/assets/favicon.png",
|
|
315
309
|
"qx/tool/website/build/assets/jquery.js",
|
|
316
310
|
"qx/tool/website/build/assets/logo.svg",
|
|
317
311
|
"qx/tool/website/build/assets/qx-api.png",
|
|
318
312
|
"qx/tool/website/build/assets/qx-ide.png",
|
|
319
313
|
"qx/tool/website/build/assets/qx-oo.png",
|
|
320
314
|
"qx/tool/website/build/assets/qx-white.svg",
|
|
321
|
-
"qx/tool/website/build/diagnostics/dependson.html",
|
|
322
|
-
"qx/tool/website/build/diagnostics/dependson.js",
|
|
323
315
|
"qx/tool/website/build/diagnostics/requiredby.html",
|
|
316
|
+
"qx/tool/website/build/diagnostics/dependson.js",
|
|
317
|
+
"qx/tool/website/build/diagnostics/dependson.html",
|
|
324
318
|
"qx/tool/website/build/diagnostics/requiredby.js",
|
|
325
319
|
"qx/tool/website/build/scripts/serve.js",
|
|
326
320
|
"qx/tool/website/src/assets/abel.css",
|
|
327
321
|
"qx/tool/website/src/assets/bluebird.min.js",
|
|
328
322
|
"qx/tool/website/src/assets/bootstrap.css",
|
|
329
|
-
"qx/tool/website/src/assets/bootstrap.min.css",
|
|
330
323
|
"qx/tool/website/src/assets/bootstrap.min.css.map",
|
|
331
324
|
"qx/tool/website/src/assets/buttons.js",
|
|
325
|
+
"qx/tool/website/src/assets/bootstrap.min.css",
|
|
332
326
|
"qx/tool/website/src/assets/favicon.png",
|
|
333
327
|
"qx/tool/website/src/assets/fontawesome-all.js",
|
|
334
328
|
"qx/tool/website/src/assets/jquery.js",
|
|
335
|
-
"qx/tool/website/src/assets/logo.svg",
|
|
336
329
|
"qx/tool/website/src/assets/qx-api.png",
|
|
337
330
|
"qx/tool/website/src/assets/qx-ide.png",
|
|
338
|
-
"qx/tool/website/src/assets/
|
|
331
|
+
"qx/tool/website/src/assets/logo.svg",
|
|
339
332
|
"qx/tool/website/src/assets/qx-white.svg",
|
|
333
|
+
"qx/tool/website/src/assets/qx-oo.png",
|
|
340
334
|
"qx/tool/website/src/diagnostics/dependson.html",
|
|
341
335
|
"qx/tool/website/src/diagnostics/dependson.js",
|
|
342
336
|
"qx/tool/website/src/diagnostics/requiredby.html",
|
|
343
337
|
"qx/tool/website/src/diagnostics/requiredby.js",
|
|
344
338
|
"qx/tool/website/src/scripts/serve.js",
|
|
339
|
+
"qx/tool/cli/templates/class/default.tmpl.js",
|
|
340
|
+
"qx/tool/cli/templates/class/header.tmpl.js",
|
|
341
|
+
"qx/tool/cli/templates/class/interface.tmpl.js",
|
|
342
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js",
|
|
343
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js",
|
|
344
|
+
"qx/tool/cli/templates/loader/loader-browser.tmpl.js",
|
|
345
|
+
"qx/tool/cli/templates/loader/loader-node.tmpl.js",
|
|
346
|
+
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js",
|
|
347
|
+
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl",
|
|
348
|
+
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json",
|
|
349
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json",
|
|
350
|
+
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md",
|
|
345
351
|
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl",
|
|
346
352
|
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json",
|
|
347
353
|
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json",
|
|
348
354
|
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md",
|
|
349
|
-
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl",
|
|
350
|
-
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json",
|
|
351
|
-
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json",
|
|
352
|
-
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md",
|
|
353
355
|
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl",
|
|
354
356
|
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json",
|
|
355
357
|
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json",
|
|
@@ -358,50 +360,50 @@
|
|
|
358
360
|
"qx/tool/cli/templates/skeleton/server/compile.tmpl.json",
|
|
359
361
|
"qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json",
|
|
360
362
|
"qx/tool/cli/templates/skeleton/server/readme.tmpl.txt",
|
|
361
|
-
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html",
|
|
362
|
-
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html",
|
|
363
363
|
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html",
|
|
364
364
|
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html",
|
|
365
|
-
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt",
|
|
366
365
|
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt",
|
|
366
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html",
|
|
367
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html",
|
|
368
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt",
|
|
367
369
|
"qx/tool/cli/templates/skeleton/package/source/translation/readme.txt",
|
|
368
370
|
"qx/tool/cli/templates/skeleton/server/source/translation/readme.txt",
|
|
371
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js",
|
|
372
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js",
|
|
373
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png",
|
|
374
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png",
|
|
375
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png",
|
|
369
376
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js",
|
|
370
377
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js",
|
|
371
378
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png",
|
|
372
379
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png",
|
|
373
380
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png",
|
|
374
381
|
"qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png",
|
|
375
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png",
|
|
376
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png",
|
|
377
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png",
|
|
378
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js",
|
|
379
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js",
|
|
380
|
-
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png",
|
|
381
382
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js",
|
|
382
383
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js",
|
|
384
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png",
|
|
383
385
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js",
|
|
384
386
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js",
|
|
385
387
|
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl",
|
|
386
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js",
|
|
387
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js",
|
|
388
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js",
|
|
389
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js",
|
|
390
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js",
|
|
391
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js",
|
|
392
|
-
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl",
|
|
393
388
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js",
|
|
394
389
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js",
|
|
395
390
|
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js",
|
|
396
391
|
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss",
|
|
397
392
|
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss",
|
|
393
|
+
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl",
|
|
394
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js",
|
|
395
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js",
|
|
396
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js",
|
|
397
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js",
|
|
398
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js",
|
|
399
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js",
|
|
398
400
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js",
|
|
401
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js",
|
|
399
402
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js",
|
|
400
403
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js",
|
|
401
404
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js",
|
|
402
405
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js",
|
|
403
406
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js",
|
|
404
|
-
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js",
|
|
405
407
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js",
|
|
406
408
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/resource/custom/test.png"
|
|
407
409
|
],
|
|
@@ -412,7 +414,7 @@
|
|
|
412
414
|
"qx.application": "qx.tool.cli.Application",
|
|
413
415
|
"qx.revision": "",
|
|
414
416
|
"qx.theme": "qx.theme.Simple",
|
|
415
|
-
"qx.version": "7.
|
|
417
|
+
"qx.version": "7.1.0",
|
|
416
418
|
"qx.compiler.targetType": "source",
|
|
417
419
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
418
420
|
"true": true,
|
|
@@ -444,7 +446,7 @@
|
|
|
444
446
|
"qx.promise.warnings": true,
|
|
445
447
|
"qx.promise.longStackTraces": true,
|
|
446
448
|
"qx.compiler": true,
|
|
447
|
-
"qx.compiler.version": "7.
|
|
449
|
+
"qx.compiler.version": "7.1.0",
|
|
448
450
|
"qx.headless": true,
|
|
449
451
|
"qx.compiler.applicationType": "node",
|
|
450
452
|
"qx.compiler.applicationName": "compiler"
|