@qooxdoo/framework 7.0.0-beta.8 → 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 +2 -2
- package/README.md +2 -4
- package/lib/compiler/compile-info.json +72 -70
- package/lib/compiler/index.js +1907 -1639
- package/npm-shrinkwrap.json +950 -42
- package/package.json +5 -3
- package/source/class/qx/Class.js +0 -28
- package/source/class/qx/Mixin.js +6 -0
- package/source/class/qx/data/Array.js +1 -1
- package/source/class/qx/test/Mixin.js +206 -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 +19 -8
- package/source/class/qx/tool/compiler/ClassFile.js +73 -5
- 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/tool/compiler/targets/meta/Uglify.js +4 -25
- 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 +14 -3
- package/source/class/qx/ui/table/pane/Pane.js +3 -1
- 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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://qooxdoo.org/schema/Manifest-
|
|
2
|
+
"$schema": "https://qooxdoo.org/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.1.0",
|
|
83
83
|
"sourceViewUri": "https://github.com/qooxdoo/qooxdoo/blob/%{qxGitBranch}/framework/source/class/%{classFilePath}#L%{lineNumber}"
|
|
84
84
|
},
|
|
85
85
|
"provides": {
|
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",
|
|
@@ -212,62 +214,62 @@
|
|
|
212
214
|
"qx/decoration/Simple/arrows/down-small.gif",
|
|
213
215
|
"qx/decoration/Simple/arrows/down.gif",
|
|
214
216
|
"qx/decoration/Simple/arrows/forward.gif",
|
|
215
|
-
"qx/decoration/Simple/arrows/left.gif",
|
|
216
217
|
"qx/decoration/Simple/arrows/left-invert.gif",
|
|
218
|
+
"qx/decoration/Simple/arrows/left.gif",
|
|
217
219
|
"qx/decoration/Simple/arrows/rewind.gif",
|
|
218
|
-
"qx/decoration/Simple/arrows/right.gif",
|
|
219
220
|
"qx/decoration/Simple/arrows/right-invert.gif",
|
|
221
|
+
"qx/decoration/Simple/arrows/right.gif",
|
|
220
222
|
"qx/decoration/Simple/arrows/up-invert.gif",
|
|
221
223
|
"qx/decoration/Simple/arrows/up-small.gif",
|
|
222
224
|
"qx/decoration/Simple/arrows/up.gif",
|
|
223
225
|
"qx/decoration/Simple/checkbox/checked-disabled.png",
|
|
224
|
-
"qx/decoration/Simple/checkbox/undetermined-disabled.png",
|
|
225
226
|
"qx/decoration/Simple/checkbox/checked.png",
|
|
227
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png",
|
|
226
228
|
"qx/decoration/Simple/checkbox/undetermined.png",
|
|
227
|
-
"qx/decoration/Simple/menu/checkbox-invert.gif",
|
|
228
|
-
"qx/decoration/Simple/menu/checkbox.gif",
|
|
229
|
-
"qx/decoration/Simple/menu/radiobutton.gif",
|
|
230
|
-
"qx/decoration/Simple/menu/radiobutton-invert.gif",
|
|
231
229
|
"qx/decoration/Simple/colorselector/brightness-field.png",
|
|
232
230
|
"qx/decoration/Simple/colorselector/brightness-handle.gif",
|
|
233
231
|
"qx/decoration/Simple/colorselector/huesaturation-field.jpg",
|
|
234
232
|
"qx/decoration/Simple/colorselector/huesaturation-handle.gif",
|
|
235
233
|
"qx/decoration/Simple/cursors/alias.gif",
|
|
236
234
|
"qx/decoration/Simple/cursors/copy.gif",
|
|
237
|
-
"qx/decoration/Simple/cursors/nodrop.gif",
|
|
238
235
|
"qx/decoration/Simple/cursors/move.gif",
|
|
236
|
+
"qx/decoration/Simple/cursors/nodrop.gif",
|
|
237
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif",
|
|
238
|
+
"qx/decoration/Simple/menu/checkbox.gif",
|
|
239
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif",
|
|
240
|
+
"qx/decoration/Simple/menu/radiobutton.gif",
|
|
239
241
|
"qx/decoration/Simple/splitpane/knob-horizontal.png",
|
|
240
242
|
"qx/decoration/Simple/splitpane/knob-vertical.png",
|
|
241
|
-
"qx/decoration/Simple/table/boolean-true.png",
|
|
242
|
-
"qx/decoration/Simple/table/ascending.png",
|
|
243
243
|
"qx/decoration/Simple/table/ascending-invert.png",
|
|
244
|
+
"qx/decoration/Simple/table/ascending.png",
|
|
244
245
|
"qx/decoration/Simple/table/boolean-false.png",
|
|
246
|
+
"qx/decoration/Simple/table/boolean-true.png",
|
|
245
247
|
"qx/decoration/Simple/table/descending-invert.png",
|
|
246
248
|
"qx/decoration/Simple/table/descending.png",
|
|
247
249
|
"qx/decoration/Simple/table/select-column-order.png",
|
|
250
|
+
"qx/decoration/Simple/tabview/close.gif",
|
|
251
|
+
"qx/decoration/Simple/tree/minus.gif",
|
|
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",
|
|
248
261
|
"qx/decoration/Simple/treevirtual/cross.gif",
|
|
249
262
|
"qx/decoration/Simple/treevirtual/cross_minus.gif",
|
|
250
263
|
"qx/decoration/Simple/treevirtual/cross_plus.gif",
|
|
251
|
-
"qx/decoration/Simple/treevirtual/end_minus.gif",
|
|
252
264
|
"qx/decoration/Simple/treevirtual/end.gif",
|
|
265
|
+
"qx/decoration/Simple/treevirtual/end_minus.gif",
|
|
253
266
|
"qx/decoration/Simple/treevirtual/end_plus.gif",
|
|
254
267
|
"qx/decoration/Simple/treevirtual/line.gif",
|
|
255
268
|
"qx/decoration/Simple/treevirtual/only_minus.gif",
|
|
256
|
-
"qx/decoration/Simple/treevirtual/start.gif",
|
|
257
269
|
"qx/decoration/Simple/treevirtual/only_plus.gif",
|
|
270
|
+
"qx/decoration/Simple/treevirtual/start.gif",
|
|
258
271
|
"qx/decoration/Simple/treevirtual/start_minus.gif",
|
|
259
272
|
"qx/decoration/Simple/treevirtual/start_plus.gif",
|
|
260
|
-
"qx/decoration/Simple/tree/minus.gif",
|
|
261
|
-
"qx/decoration/Simple/tree/plus.gif",
|
|
262
|
-
"qx/decoration/Simple/tabview/close.gif",
|
|
263
|
-
"qx/decoration/Simple/window/close-white.gif",
|
|
264
|
-
"qx/decoration/Simple/window/maximize-white.gif",
|
|
265
|
-
"qx/decoration/Simple/window/close.gif",
|
|
266
|
-
"qx/decoration/Simple/window/maximize.gif",
|
|
267
|
-
"qx/decoration/Simple/window/minimize-white.gif",
|
|
268
|
-
"qx/decoration/Simple/window/minimize.gif",
|
|
269
|
-
"qx/decoration/Simple/window/restore-white.gif",
|
|
270
|
-
"qx/decoration/Simple/window/restore.gif",
|
|
271
273
|
"qx/static/blank.png",
|
|
272
274
|
"qx/tool/loadsass.js",
|
|
273
275
|
"qx/tool/bin/build-devtools",
|
|
@@ -278,78 +280,78 @@
|
|
|
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/TypeScriptWriter-base_declaration.txt",
|
|
282
|
-
"qx/tool/cli/templates/template_vars.js",
|
|
283
283
|
"qx/tool/website/build/404.html",
|
|
284
284
|
"qx/tool/website/build/about.html",
|
|
285
285
|
"qx/tool/website/build/index.html",
|
|
286
286
|
"qx/tool/website/build/qooxdoo.css",
|
|
287
|
-
"qx/tool/website/
|
|
287
|
+
"qx/tool/website/layouts/default.dot",
|
|
288
288
|
"qx/tool/website/partials/footer.html",
|
|
289
|
+
"qx/tool/website/partials/head.html",
|
|
289
290
|
"qx/tool/website/partials/header.html",
|
|
290
291
|
"qx/tool/website/partials/icon-github.html",
|
|
291
292
|
"qx/tool/website/partials/icon-github.svg",
|
|
292
|
-
"qx/tool/website/partials/icon-twitter.svg",
|
|
293
293
|
"qx/tool/website/partials/icon-twitter.html",
|
|
294
|
-
"qx/tool/website/
|
|
295
|
-
"qx/tool/website/sass/qooxdoo.scss",
|
|
294
|
+
"qx/tool/website/partials/icon-twitter.svg",
|
|
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/singleton.tmpl.js",
|
|
303
|
-
"qx/tool/cli/templates/class/mixin.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",
|
|
310
|
-
"qx/tool/website/build/assets/bootstrap.min.css.map",
|
|
311
|
-
"qx/tool/website/build/assets/bootstrap.min.css",
|
|
312
304
|
"qx/tool/website/build/assets/buttons.js",
|
|
313
|
-
"qx/tool/website/build/assets/
|
|
305
|
+
"qx/tool/website/build/assets/bootstrap.min.css",
|
|
306
|
+
"qx/tool/website/build/assets/bootstrap.min.css.map",
|
|
314
307
|
"qx/tool/website/build/assets/fontawesome-all.js",
|
|
315
|
-
"qx/tool/website/build/assets/
|
|
308
|
+
"qx/tool/website/build/assets/favicon.png",
|
|
316
309
|
"qx/tool/website/build/assets/jquery.js",
|
|
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
323
|
"qx/tool/website/src/assets/bootstrap.min.css.map",
|
|
330
|
-
"qx/tool/website/src/assets/bootstrap.min.css",
|
|
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
|
-
"qx/tool/website/src/diagnostics/requiredby.js",
|
|
343
336
|
"qx/tool/website/src/diagnostics/requiredby.html",
|
|
337
|
+
"qx/tool/website/src/diagnostics/requiredby.js",
|
|
344
338
|
"qx/tool/website/src/scripts/serve.js",
|
|
345
|
-
"qx/tool/cli/templates/
|
|
346
|
-
"qx/tool/cli/templates/
|
|
347
|
-
"qx/tool/cli/templates/
|
|
348
|
-
"qx/tool/cli/templates/
|
|
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",
|
|
349
347
|
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl",
|
|
350
|
-
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json",
|
|
351
348
|
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json",
|
|
349
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json",
|
|
352
350
|
"qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md",
|
|
351
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl",
|
|
352
|
+
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json",
|
|
353
|
+
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json",
|
|
354
|
+
"qx/tool/cli/templates/skeleton/desktop/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,43 +360,43 @@
|
|
|
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",
|
|
363
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html",
|
|
364
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html",
|
|
365
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt",
|
|
361
366
|
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html",
|
|
362
367
|
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html",
|
|
363
368
|
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt",
|
|
364
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html",
|
|
365
|
-
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html",
|
|
366
|
-
"qx/tool/cli/templates/skeleton/mobile/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",
|
|
383
|
-
"qx/tool/cli/templates/skeleton/
|
|
384
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png",
|
|
384
385
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js",
|
|
385
386
|
"qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js",
|
|
387
|
+
"qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl",
|
|
388
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js",
|
|
389
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js",
|
|
390
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js",
|
|
391
|
+
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss",
|
|
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",
|
|
386
394
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js",
|
|
387
395
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js",
|
|
388
396
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js",
|
|
389
397
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js",
|
|
390
398
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js",
|
|
391
399
|
"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
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js",
|
|
394
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js",
|
|
395
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js",
|
|
396
|
-
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss",
|
|
397
|
-
"qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss",
|
|
398
400
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js",
|
|
399
401
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js",
|
|
400
402
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js",
|
|
@@ -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"
|