@qooxdoo/framework 7.4.2 → 7.5.1

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.
Files changed (70) hide show
  1. package/Manifest.json +1 -1
  2. package/bin/deploy/qx +7 -5
  3. package/lib/compiler/compile-info.json +81 -81
  4. package/lib/compiler/index.js +496 -453
  5. package/lib/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js +7 -7
  6. package/lib/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js +10 -10
  7. package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js +6 -6
  8. package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js +9 -9
  9. package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js +5 -5
  10. package/lib/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js +7 -7
  11. package/lib/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js +10 -10
  12. package/lib/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js +6 -6
  13. package/lib/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js +12 -12
  14. package/lib/resource/qx/tool/website/src/about.md +1 -1
  15. package/package.json +2 -2
  16. package/source/class/qx/Class.js +3 -3
  17. package/source/class/qx/bom/Cookie.js +1 -1
  18. package/source/class/qx/data/Array.js +3 -3
  19. package/source/class/qx/data/SingleValueBinding.js +1 -1
  20. package/source/class/qx/dom/Hierarchy.js +2 -2
  21. package/source/class/qx/event/Manager.js +1 -1
  22. package/source/class/qx/event/handler/TouchCore.js +1 -1
  23. package/source/class/qx/html/Jsx.js +1 -1
  24. package/source/class/qx/lang/Array.js +2 -2
  25. package/source/class/qx/lang/Function.js +19 -22
  26. package/source/class/qx/locale/MTranslation.js +4 -4
  27. package/source/class/qx/locale/Manager.js +7 -7
  28. package/source/class/qx/module/util/Array.js +2 -2
  29. package/source/class/qx/test/io/transport/Websocket.js +1 -1
  30. package/source/class/qx/theme/IndigoDark.js +28 -0
  31. package/source/class/qx/theme/indigo/AppearanceDark.js +186 -0
  32. package/source/class/qx/theme/indigo/ColorDark.js +117 -0
  33. package/source/class/qx/theme/indigo/DecorationDark.js +30 -0
  34. package/source/class/qx/theme/indigo/ImageDark.js +101 -0
  35. package/source/class/qx/tool/cli/Application.js +4 -1
  36. package/source/class/qx/tool/cli/Cli.js +22 -23
  37. package/source/class/qx/tool/cli/Watch.js +28 -27
  38. package/source/class/qx/tool/cli/commands/Compile.js +2 -1
  39. package/source/class/qx/tool/cli/commands/Lint.js +1 -1
  40. package/source/class/qx/tool/cli/commands/Run.js +6 -7
  41. package/source/class/qx/tool/cli/commands/Serve.js +29 -36
  42. package/source/class/qx/tool/cli/commands/Test.js +3 -2
  43. package/source/class/qx/tool/cli/commands/add/Script.js +3 -1
  44. package/source/class/qx/tool/cli/commands/package/Install.js +3 -0
  45. package/source/class/qx/tool/cli/commands/package/Publish.js +16 -4
  46. package/source/class/qx/tool/compiler/ClassFile.js +2 -1
  47. package/source/class/qx/tool/compiler/app/Cldr.js +63 -26
  48. package/source/class/qx/tool/compiler/targets/meta/Browserify.js +19 -9
  49. package/source/class/qx/ui/basic/Image.js +6 -2
  50. package/source/class/qx/ui/command/Group.js +2 -2
  51. package/source/class/qx/ui/command/GroupManager.js +3 -3
  52. package/source/class/qx/ui/control/ColorSelector.js +1 -1
  53. package/source/class/qx/ui/core/MMultiSelectionHandling.js +1 -1
  54. package/source/class/qx/ui/core/SingleSelectionManager.js +1 -1
  55. package/source/class/qx/ui/core/Widget.js +13 -42
  56. package/source/class/qx/ui/form/Form.js +1 -1
  57. package/source/class/qx/ui/list/List.js +1 -1
  58. package/source/class/qx/ui/mobile/form/Form.js +2 -2
  59. package/source/class/qx/util/OOUtil.js +1 -1
  60. package/source/resource/qx/mobile/scss/common/_gradients.scss +1 -1
  61. package/source/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js +7 -7
  62. package/source/resource/qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js +10 -10
  63. package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js +6 -6
  64. package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js +9 -9
  65. package/source/resource/qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js +5 -5
  66. package/source/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js +7 -7
  67. package/source/resource/qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js +10 -10
  68. package/source/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js +6 -6
  69. package/source/resource/qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js +12 -12
  70. package/source/resource/qx/tool/website/src/about.md +1 -1
@@ -96,7 +96,7 @@ if (typeof global !== "undefined") {
96
96
  "qx.application": "qx.tool.cli.Application",
97
97
  "qx.revision": "",
98
98
  "qx.theme": "qx.theme.Simple",
99
- "qx.version": "7.4.2",
99
+ "qx.version": "7.5.1",
100
100
  "qx.compiler.targetType": "source",
101
101
  "qx.compiler.outputDir": "compiled/node/build/",
102
102
  "true": true,
@@ -128,7 +128,7 @@ if (typeof global !== "undefined") {
128
128
  "qx.promise.warnings": true,
129
129
  "qx.promise.longStackTraces": true,
130
130
  "qx.compiler": true,
131
- "qx.compiler.version": "7.4.2",
131
+ "qx.compiler.version": "7.5.1",
132
132
  "qx.headless": true,
133
133
  "qx.compiler.applicationType": "node",
134
134
  "qx.compiler.applicationName": "compiler"
@@ -8164,7 +8164,7 @@ try {
8164
8164
  *
8165
8165
  * @param clazz {Class} class to look for the interface
8166
8166
  * @param iface {Interface} interface to look for
8167
- * @return {Class | null} the class which directly implements the given interface
8167
+ * @return {Class|null} the class which directly implements the given interface
8168
8168
  */
8169
8169
  getByInterface(clazz, iface) {
8170
8170
  var list, i, l;
@@ -8727,7 +8727,7 @@ try {
8727
8727
  *
8728
8728
  * @param clazz {Class} class to look for the property
8729
8729
  * @param name {String} name of the property
8730
- * @return {Class | null} The class which includes the property
8730
+ * @return {Class|null} The class which includes the property
8731
8731
  */
8732
8732
  getByProperty(clazz, name) {
8733
8733
  while (clazz) {
@@ -8790,7 +8790,7 @@ try {
8790
8790
  *
8791
8791
  * @param clazz {Class} class to look for the mixin
8792
8792
  * @param mixin {Mixin} mixin to look for
8793
- * @return {Class | null} The class which directly includes the given mixin
8793
+ * @return {Class|null} The class which directly includes the given mixin
8794
8794
  */
8795
8795
  getByMixin(clazz, mixin) {
8796
8796
  var list, i, l;
@@ -8855,7 +8855,7 @@ try {
8855
8855
  * @signature function(clazz, iface)
8856
8856
  * @param clazz {Class} class to look for the interface
8857
8857
  * @param iface {Interface} interface to look for
8858
- * @return {Class | null} the class which directly implements the given interface
8858
+ * @return {Class|null} the class which directly implements the given interface
8859
8859
  */
8860
8860
  getByInterface: qx.util.OOUtil.getByInterface,
8861
8861
 
@@ -13278,7 +13278,7 @@ try {
13278
13278
  * @param type {String} Event type
13279
13279
  * @param capture {Boolean ? false} Whether the listener is for the
13280
13280
  * capturing phase of the bubbling phase.
13281
- * @return {Array | null} Array of registered event handlers. May return
13281
+ * @return {Array|null} Array of registered event handlers. May return
13282
13282
  * null when no listener were found.
13283
13283
  */
13284
13284
  getListeners(target, type, capture) {
@@ -14621,7 +14621,7 @@ try {
14621
14621
  * numeric values only.
14622
14622
  *
14623
14623
  * @param arr {Number[]} Array to process
14624
- * @return {Number | null} The highest of all values or undefined if array is empty.
14624
+ * @return {Number|null} The highest of all values or undefined if array is empty.
14625
14625
  */
14626
14626
  max(arr) {
14627
14627
  var i,
@@ -14642,7 +14642,7 @@ try {
14642
14642
  * numeric values only.
14643
14643
  *
14644
14644
  * @param arr {Number[]} Array to process
14645
- * @return {Number | null} The lowest of all values or undefined if array is empty.
14645
+ * @return {Number|null} The lowest of all values or undefined if array is empty.
14646
14646
  */
14647
14647
  min(arr) {
14648
14648
  var i,
@@ -27807,7 +27807,7 @@ try {
27807
27807
  * @param targetProperties {String[]} Array containing the names of the properties
27808
27808
  * @param index {Number?} The array index of the last property to be considered.
27809
27809
  * Default: The last item's index
27810
- * @return {qx.core.Object | null} The object on which the last property
27810
+ * @return {qx.core.Object|null} The object on which the last property
27811
27811
  * should be set.
27812
27812
  */
27813
27813
  __P_74_13(targetObject, targetProperties, index) {
@@ -31564,7 +31564,7 @@ try {
31564
31564
  * Returns the highest value in the given array.
31565
31565
  * Supports numeric values only.
31566
31566
  *
31567
- * @return {Number | null} The highest of all values or undefined if the
31567
+ * @return {Number|null} The highest of all values or undefined if the
31568
31568
  * array is empty.
31569
31569
  */
31570
31570
  max() {
@@ -31583,7 +31583,7 @@ try {
31583
31583
  * Returns the lowest value in the array. Supports
31584
31584
  * numeric values only.
31585
31585
  *
31586
- * @return {Number | null} The lowest of all values or undefined
31586
+ * @return {Number|null} The lowest of all values or undefined
31587
31587
  * if the array is empty.
31588
31588
  */
31589
31589
  min() {
@@ -31658,7 +31658,7 @@ try {
31658
31658
  * <li><code>index</code>: the index of the current item</li>
31659
31659
  * <li><code>array</code>: The native array instance, NOT the data array instance.</li>
31660
31660
  * @param self {var?undefined} The context of the callback.
31661
- * @return {var | undefined} The found item.
31661
+ * @return {var|undefined} The found item.
31662
31662
  */
31663
31663
  find(callback, self) {
31664
31664
  return this.__P_73_0.find(callback, self);
@@ -34730,11 +34730,15 @@ try {
34730
34730
  * during startup of the application
34731
34731
  */
34732
34732
  async main() {
34733
+ process.exitCode = 0;
34734
+
34733
34735
  try {
34734
34736
  await new qx.tool.cli.Cli().run();
34735
34737
  } catch (e) {
34736
34738
  qx.tool.compiler.Console.error("Error: " + (e.stack || e.message));
34737
- process.exit(1);
34739
+ process.exitCode = 1;
34740
+ } finally {
34741
+ process.exit();
34738
34742
  }
34739
34743
  }
34740
34744
 
@@ -35063,15 +35067,20 @@ try {
35063
35067
 
35064
35068
  qx.Class.define("qx.tool.cli.Cli", {
35065
35069
  extend: qx.core.Object,
35070
+ properties: {
35071
+ command: {
35072
+ apply: "__P_3_0"
35073
+ }
35074
+ },
35066
35075
 
35067
35076
  construct() {
35068
35077
  qx.core.Object.constructor.call(this);
35069
35078
 
35070
- if (qx.tool.cli.Cli.__P_3_0) {
35079
+ if (qx.tool.cli.Cli.__P_3_1) {
35071
35080
  throw new Error("qx.tool.cli.Cli has already been initialized!");
35072
35081
  }
35073
35082
 
35074
- qx.tool.cli.Cli.__P_3_0 = this; // include & register log appender
35083
+ qx.tool.cli.Cli.__P_3_1 = this; // include & register log appender
35075
35084
 
35076
35085
  qx.log.appender.NodeConsole;
35077
35086
  },
@@ -35093,20 +35102,23 @@ try {
35093
35102
  _compileJsonFilename: null,
35094
35103
 
35095
35104
  /** @type {Object} Parsed arguments */
35096
- _parsedArgs: null,
35097
-
35098
- /** @type {Promise} Promise that resolves to the _parsedArgs, but only when completely finished parsing them */
35099
- __P_3_1: null,
35105
+ __P_3_2: null,
35100
35106
 
35101
35107
  /** @type {Boolean} Whether libraries have had their `.load()` method called yet */
35102
- __P_3_2: false,
35108
+ __P_3_3: false,
35109
+
35110
+ __P_3_0(command) {
35111
+ command.setCompilerApi(this._compilerApi);
35112
+
35113
+ this._compilerApi.setCommand(command);
35114
+ },
35103
35115
 
35104
35116
  /**
35105
35117
  * Creates an instance of yargs, with minimal options
35106
35118
  *
35107
35119
  * @return {yargs}
35108
35120
  */
35109
- __P_3_3() {
35121
+ __P_3_4() {
35110
35122
  return this.yargs = require("yargs").locale("en").version().strict(false).showHelpOnFail().help(false).option("force", {
35111
35123
  describe: "Override warnings",
35112
35124
  type: "boolean",
@@ -35140,7 +35152,7 @@ try {
35140
35152
  * Initialises this.argv with the bare minimum required to load the config files and begin
35141
35153
  * processing
35142
35154
  */
35143
- async __P_3_4() {
35155
+ async __P_3_5() {
35144
35156
  var title = "qooxdoo command line interface";
35145
35157
  title = "\n" + title + "\n" + "=".repeat(title.length);
35146
35158
  title += `
@@ -35152,7 +35164,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35152
35164
 
35153
35165
  Type qx <command> --help for options and subcommands.`;
35154
35166
 
35155
- let yargs = this.__P_3_3().usage(title);
35167
+ let yargs = this.__P_3_4().usage(title);
35156
35168
 
35157
35169
  this.argv = yargs.argv; // Logging - needs to be unified..
35158
35170
 
@@ -35171,8 +35183,8 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35171
35183
  /**
35172
35184
  * Reloads this.argv with the full set of arguments
35173
35185
  */
35174
- async __P_3_5() {
35175
- let yargs = this.__P_3_3().help(true).option("set", {
35186
+ async __P_3_6() {
35187
+ let yargs = this.__P_3_4().help(true).option("set", {
35176
35188
  describe: "sets an environment value for the compiler",
35177
35189
  nargs: 1,
35178
35190
  requiresArg: true,
@@ -35200,7 +35212,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35200
35212
  qx.tool.cli.Cli.addYargsCommands(yargs, ["Add", "Clean", "Compile", "Config", "Deploy", "Es6ify", "Package", "Pkg", // alias for Package
35201
35213
  "Create", "Lint", "Run", "Test", "Serve", "Migrate"], "qx.tool.cli.commands");
35202
35214
  this.argv = await yargs.demandCommand().strict().argv;
35203
- await this.__P_3_6();
35215
+ await this.__P_3_7();
35204
35216
  },
35205
35217
 
35206
35218
  /**
@@ -35208,7 +35220,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35208
35220
  * The commands can overload special arg arguments here.
35209
35221
  * e.g. Deploy will will overload the target.
35210
35222
  */
35211
- __P_3_7() {
35223
+ __P_3_8() {
35212
35224
  let cmd = this._compilerApi.getCommand();
35213
35225
 
35214
35226
  if (cmd) {
@@ -35221,12 +35233,12 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35221
35233
  * to delay the calling of `load()` until after we know that the command has been selected
35222
35234
  * by Yargs
35223
35235
  */
35224
- async __P_3_6() {
35225
- if (this.__P_3_2) {
35236
+ async __P_3_7() {
35237
+ if (this.__P_3_3) {
35226
35238
  return;
35227
35239
  }
35228
35240
 
35229
- this.__P_3_2 = true;
35241
+ this.__P_3_3 = true;
35230
35242
 
35231
35243
  for (let i = 0, arr = this._compilerApi.getLibraryApis(); i < arr.length; i++) {
35232
35244
  let libraryApi = arr[i];
@@ -35245,21 +35257,10 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35245
35257
  */
35246
35258
  async processCommand(command) {
35247
35259
  qx.tool.compiler.Console.getInstance().setVerbose(this.argv.verbose);
35248
- command.setCompilerApi(this._compilerApi);
35249
-
35250
- this._compilerApi.setCommand(command);
35251
-
35252
- await this.__P_3_6();
35253
-
35254
- try {
35255
- const res = await command.process();
35256
- await this._compilerApi.afterProcessFinished(command, res);
35257
- return res;
35258
- } catch (e) {
35259
- qx.tool.compiler.Console.error("Error: " + (e.stack || e.message));
35260
- process.exit(1);
35261
- return null;
35262
- }
35260
+ await this.__P_3_7();
35261
+ const res = await command.process();
35262
+ await this._compilerApi.afterProcessFinished(command, res);
35263
+ return res;
35263
35264
  },
35264
35265
 
35265
35266
  /**
@@ -35267,8 +35268,8 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35267
35268
  *
35268
35269
  * @return {Object}
35269
35270
  */
35270
- async getParsedArgs() {
35271
- return await this.__P_3_1;
35271
+ getParsedArgs() {
35272
+ return this.__P_3_2;
35272
35273
  },
35273
35274
 
35274
35275
  /**
@@ -35290,15 +35291,15 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35290
35291
  var args = qx.lang.Array.clone(process.argv);
35291
35292
  args.shift();
35292
35293
  process.title = args.join(" ");
35293
- this.__P_3_1 = this.__P_3_8();
35294
- await this.__P_3_1;
35294
+ await this.__P_3_9();
35295
+ return this.processCommand(this.getCommand());
35295
35296
  },
35296
35297
 
35297
35298
  /**
35298
35299
  * Does the work of parsing command line arguments and loading `compile.js[on]`
35299
35300
  */
35300
- async __P_3_8() {
35301
- await this.__P_3_4();
35301
+ async __P_3_9() {
35302
+ await this.__P_3_5();
35302
35303
  /*
35303
35304
  * Detect and load compile.json and compile.js
35304
35305
  */
@@ -35336,7 +35337,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35336
35337
  let CompilerApi = qx.tool.cli.api.CompilerApi;
35337
35338
 
35338
35339
  if (await fs.existsAsync(compileJsFilename)) {
35339
- let compileJs = await this.__P_3_9(compileJsFilename);
35340
+ let compileJs = await this.__P_3_10(compileJsFilename);
35340
35341
  this._compileJsFilename = compileJsFilename;
35341
35342
 
35342
35343
  if (compileJs.CompilerApi) {
@@ -35463,7 +35464,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35463
35464
  let LibraryApi = qx.tool.cli.api.LibraryApi;
35464
35465
 
35465
35466
  if (await fs.existsAsync(libCompileJsFilename)) {
35466
- let compileJs = await this.__P_3_9(libCompileJsFilename);
35467
+ let compileJs = await this.__P_3_10(libCompileJsFilename);
35467
35468
 
35468
35469
  if (compileJs.LibraryApi) {
35469
35470
  LibraryApi = compileJs.LibraryApi;
@@ -35483,9 +35484,9 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35483
35484
  */
35484
35485
 
35485
35486
 
35486
- await this.__P_3_5();
35487
+ await this.__P_3_6();
35487
35488
 
35488
- this.__P_3_7();
35489
+ this.__P_3_8();
35489
35490
 
35490
35491
  let parsedArgs = {
35491
35492
  target: this.argv.target,
@@ -35552,8 +35553,8 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35552
35553
  config.serve.listenPort = config.serve.listenPort || this.argv.listenPort;
35553
35554
  }
35554
35555
 
35555
- this._parsedArgs = await compilerApi.getConfiguration();
35556
- return this._parsedArgs;
35556
+ this.__P_3_2 = await compilerApi.getConfiguration();
35557
+ return this.__P_3_2;
35557
35558
  },
35558
35559
 
35559
35560
  /**
@@ -35562,7 +35563,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35562
35563
  * @param aPath {String} the file to load
35563
35564
  * @return {Object} the module
35564
35565
  */
35565
- async __P_3_9(aPath) {
35566
+ async __P_3_10(aPath) {
35566
35567
  try {
35567
35568
  let module = require(path.resolve(aPath));
35568
35569
 
@@ -35635,7 +35636,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35635
35636
  compileJsFilename: "compile.js",
35636
35637
 
35637
35638
  /** {CompileJs} singleton instance */
35638
- __P_3_0: null,
35639
+ __P_3_1: null,
35639
35640
 
35640
35641
  /**
35641
35642
  * Returns the singleton instance, throws an error if it has not been created
@@ -35643,11 +35644,11 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35643
35644
  * @return {qx.tool.cli.Cli}
35644
35645
  */
35645
35646
  getInstance() {
35646
- if (!qx.tool.cli.Cli.__P_3_0) {
35647
+ if (!qx.tool.cli.Cli.__P_3_1) {
35647
35648
  throw new Error("CompileJs has not been initialized yet!");
35648
35649
  }
35649
35650
 
35650
- return qx.tool.cli.Cli.__P_3_0;
35651
+ return qx.tool.cli.Cli.__P_3_1;
35651
35652
  },
35652
35653
 
35653
35654
  /**
@@ -35672,7 +35673,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35672
35673
 
35673
35674
  if (data) {
35674
35675
  if (data.handler === undefined) {
35675
- data.handler = argv => qx.tool.cli.Cli.getInstance().processCommand(new Clazz(argv));
35676
+ data.handler = argv => qx.tool.cli.Cli.getInstance().setCommand(new Clazz(argv));
35676
35677
  }
35677
35678
 
35678
35679
  yargs.command(data);
@@ -36534,7 +36535,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
36534
36535
  * @return {String}
36535
36536
  */
36536
36537
  getCompilerVersion() {
36537
- return "7.4.2";
36538
+ return "7.5.1";
36538
36539
  },
36539
36540
 
36540
36541
  /**
@@ -38947,8 +38948,11 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
38947
38948
  if (!(await compileConfigModel.exists())) {
38948
38949
  qx.tool.compiler.Console.info(">>> Cannot install application " + (manifestApp.name || manifestApp["class"]) + " because compile.json does not exist (you must manually add it)");
38949
38950
  return false;
38950
- }
38951
+ } // relaod config. We need a fresh model here because data will be verified.
38952
+ // The original model is enriched during parsing so validate will fail.
38953
+
38951
38954
 
38955
+ compileConfigModel.setLoaded(false);
38952
38956
  await compileConfigModel.load();
38953
38957
  let app = compileConfigModel.getValue("applications").find(app => {
38954
38958
  if (manifestApp.name && app.name) {
@@ -45107,6 +45111,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45107
45111
 
45108
45112
  Authors:
45109
45113
  * John Spackman (john.spackman@zenesis.com, @johnspackman)
45114
+ * Henner Kollmann (Henner.Kollmann@gmx.de, @hkollmann)
45110
45115
 
45111
45116
  ************************************************************************ */
45112
45117
  const fs = require("fs");
@@ -45302,20 +45307,24 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45302
45307
  qx.tool.compiler.Console.debug(`DEBUG: confirmed=${JSON.stringify(confirmed, 2)}`);
45303
45308
  }
45304
45309
 
45305
- var watcher = this._watcher = chokidar.watch(confirmed, {//ignored: /(^|[\/\\])\../
45306
- });
45307
- watcher.on("change", filename => this.__P_5_13("change", filename));
45308
- watcher.on("add", filename => this.__P_5_13("add", filename));
45309
- watcher.on("unlink", filename => this.__P_5_13("unlink", filename));
45310
- watcher.on("ready", () => {
45311
- this.__P_5_7 = true;
45312
-
45313
- this.__P_5_14();
45314
- });
45315
- watcher.on("error", err => {
45316
- qx.tool.compiler.Console.print(err.code == "ENOSPC" ? "qx.tool.cli.watch.enospcError" : "qx.tool.cli.watch.watchError", err);
45310
+ this.__P_5_13().then(() => {
45311
+ var watcher = this._watcher = chokidar.watch(confirmed, {//ignored: /(^|[\/\\])\../
45312
+ });
45313
+ watcher.on("change", filename => this.__P_5_14("change", filename));
45314
+ watcher.on("add", filename => this.__P_5_14("add", filename));
45315
+ watcher.on("unlink", filename => this.__P_5_14("unlink", filename));
45316
+ watcher.on("ready", () => {
45317
+ qx.tool.compiler.Console.log(`Start watching ...`);
45318
+ this.__P_5_7 = true;
45319
+ });
45320
+ watcher.on("error", err => {
45321
+ qx.tool.compiler.Console.print(err.code == "ENOSPC" ? "qx.tool.cli.watch.enospcError" : "qx.tool.cli.watch.watchError", err);
45322
+ });
45317
45323
  });
45318
45324
  });
45325
+ process.on("beforeExit", this.__P_5_15.bind(this));
45326
+ process.on("exit", this.__P_5_15.bind(this));
45327
+ return this.__P_5_5;
45319
45328
  },
45320
45329
 
45321
45330
  async stop() {
@@ -45328,9 +45337,9 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45328
45337
  }
45329
45338
  },
45330
45339
 
45331
- __P_5_14() {
45340
+ __P_5_13() {
45332
45341
  if (this.__P_5_8) {
45333
- this.__P_5_15 = true;
45342
+ this.__P_5_16 = true;
45334
45343
  return this.__P_5_8;
45335
45344
  }
45336
45345
 
@@ -45401,20 +45410,21 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45401
45410
  }
45402
45411
 
45403
45412
  const runIt = () => make().then(() => {
45404
- if (this.__P_5_15) {
45405
- delete this.__P_5_15;
45413
+ if (this.__P_5_16) {
45414
+ delete this.__P_5_16;
45406
45415
  return runIt();
45407
45416
  }
45408
45417
 
45409
45418
  return null;
45410
45419
  });
45411
45420
 
45412
- return this.__P_5_8 = runIt();
45421
+ this.__P_5_8 = runIt();
45422
+ return this.__P_5_8;
45413
45423
  },
45414
45424
 
45415
- __P_5_16() {
45425
+ __P_5_17() {
45416
45426
  if (this.__P_5_8) {
45417
- this.__P_5_15 = true;
45427
+ this.__P_5_16 = true;
45418
45428
  return this.__P_5_8;
45419
45429
  }
45420
45430
 
@@ -45422,11 +45432,11 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45422
45432
  clearTimeout(this.__P_5_11);
45423
45433
  }
45424
45434
 
45425
- this.__P_5_11 = setTimeout(() => this.__P_5_14());
45435
+ this.__P_5_11 = setTimeout(() => this.__P_5_13());
45426
45436
  return null;
45427
45437
  },
45428
45438
 
45429
- __P_5_13(type, filename) {
45439
+ __P_5_14(type, filename) {
45430
45440
  const Console = qx.tool.compiler.Console;
45431
45441
 
45432
45442
  if (!this.__P_5_7) {
@@ -45520,7 +45530,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45520
45530
  if (outOfDate) {
45521
45531
  this.__P_5_10 = true;
45522
45532
 
45523
- this.__P_5_16();
45533
+ this.__P_5_17();
45524
45534
  }
45525
45535
  };
45526
45536
 
@@ -45567,7 +45577,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45567
45577
  return null;
45568
45578
  },
45569
45579
 
45570
- __P_5_17() {
45580
+ __P_5_15() {
45571
45581
  this.__P_5_5.resolve();
45572
45582
  }
45573
45583
 
@@ -46461,7 +46471,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46461
46471
  });
46462
46472
  let arr = [this._compileJsFilename, this._compileJsonFilename].filter(str => Boolean(str));
46463
46473
  watch.setConfigFilenames(arr);
46464
- return await watch.start();
46474
+ return watch.start();
46465
46475
  }));
46466
46476
  },
46467
46477
 
@@ -51957,7 +51967,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
51957
51967
  }
51958
51968
 
51959
51969
  if (sectionName === "members" || sectionName === "statics") {
51960
- if (node.type == "ObjectMethod" || node.value.type === "FunctionExpression") {
51970
+ if (node.type == "ObjectMethod" || node.value.type === "FunctionExpression" || node.value.type === "MemberExpression") {
51961
51971
  meta.type = "function";
51962
51972
  } else {
51963
51973
  meta.type = "variable";
@@ -55221,7 +55231,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55221
55231
  });
55222
55232
  },
55223
55233
 
55224
- async __P_44_3(commonjsModules, references, localModules, ws) {
55234
+ __P_44_3(commonjsModules, references, localModules, ws) {
55225
55235
  const babelify = require("babelify");
55226
55236
 
55227
55237
  const preset = require("@babel/preset-env");
@@ -55233,7 +55243,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55233
55243
 
55234
55244
 
55235
55245
  builtins.process = builtins._process;
55236
- return new Promise(async resolve => {
55246
+ return new Promise((resolve, reject) => {
55237
55247
  let b = browserify([], {
55238
55248
  builtins: builtins,
55239
55249
  ignoreMissing: true,
@@ -55280,16 +55290,28 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55280
55290
  sourceMaps: false,
55281
55291
  global: true
55282
55292
  });
55283
- b.bundle((e, output) => {
55293
+ b.bundle(function (e, output) {
55284
55294
  if (e) {
55285
- // We've already handled the case of missing module. This is something else.
55286
- qx.tool.compiler.Console.error(`Unable to browserify - this is probably because a module is being require()'d which is not compatible with Browserify: ${e.message}`); // Do not throw an error here, otherwise a problem in the users code will kill the watch with pages of error
55287
-
55288
- resolve(null);
55295
+ // THIS IS A HACK!
55296
+ // In case of error dependency walker never returns from
55297
+ // ```if (self.inputPending > 0) return setTimeout(resolve);```
55298
+ // because inputPending is not decremented anymore.
55299
+ // so set it to 0 here.
55300
+ let d = b.pipeline.get("deps");
55301
+ d.get(0).inputPending = 0;
55302
+ qx.tool.compiler.Console.error(`Unable to browserify - this is probably because a module is being require()'d which is not compatible with Browserify:\n${e.message}`);
55303
+ setTimeout(() => {
55304
+ this.emit("end");
55305
+ });
55289
55306
  return;
55290
- }
55307
+ } // in case of end event output can not be writen.
55308
+ // so catch the error and ignore it
55309
+
55310
+
55311
+ try {
55312
+ ws.write(output);
55313
+ } catch (err) {}
55291
55314
 
55292
- ws.write(output);
55293
55315
  resolve(null);
55294
55316
  });
55295
55317
  });
@@ -55416,6 +55438,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55416
55438
  "qx.core.Object": {
55417
55439
  "require": true
55418
55440
  },
55441
+ "qx.tool.compiler.Console": {},
55419
55442
  "qx.tool.utils.Utils": {},
55420
55443
  "qx.lang.Type": {}
55421
55444
  }
@@ -55457,7 +55480,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55457
55480
  promisify
55458
55481
  } = require("util");
55459
55482
 
55483
+ const process = require("process");
55484
+
55460
55485
  const readFile = promisify(fs.readFile);
55486
+ const readDir = promisify(fs.readdir);
55461
55487
  var log = qx.tool.utils.LogManager.createLog("cldr");
55462
55488
  qx.Class.define("qx.tool.compiler.app.Cldr", {
55463
55489
  extend: qx.core.Object,
@@ -55485,8 +55511,21 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55485
55511
  }
55486
55512
 
55487
55513
  log.debug("Loading CLDR " + cldrPath);
55488
- return readFile(path.join(cldrPath, data_path, locale + ".xml"), {
55514
+ const fullDir = path.join(cldrPath, data_path);
55515
+ return readDir(fullDir).then(names => new Promise((resolve, reject) => {
55516
+ const searchedName = locale.toLowerCase() + ".xml";
55517
+ const realName = names.find(name => name.toLowerCase() === searchedName);
55518
+
55519
+ if (realName) {
55520
+ resolve(realName);
55521
+ } else {
55522
+ reject(new Error('Cannot find XML file for locale "' + locale + '" in CLDR folder'));
55523
+ }
55524
+ })).then(fileName => readFile(path.join(fullDir, fileName), {
55489
55525
  encoding: "utf-8"
55526
+ })).catch(err => {
55527
+ qx.tool.compiler.Console.error(err);
55528
+ process.exit(1);
55490
55529
  }).then(data => qx.tool.utils.Utils.promisifyThis(parser.parseString, parser, data)).then(src => {
55491
55530
  function find(arr, name, value, cb) {
55492
55531
  if (!arr) {
@@ -55692,28 +55731,24 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55692
55731
  cldr["cldr_day_stand-alone_narrow_wed"] = find(row.dayWidth[0].day, "type", "wed", getText); // "W";
55693
55732
  });
55694
55733
  var monthContext = get("months[0].monthContext", cal);
55695
- find(monthContext, "type", "format", function (row) {
55696
- find(row.monthWidth, "type", "abbreviated", function (row) {
55697
- for (var i = 0; i < row.month.length; i++) {
55698
- var m = row.month[i];
55699
- cldr["cldr_month_format_abbreviated_" + m["$"].type] = getText(m);
55700
- }
55701
- });
55702
- });
55703
- find(monthContext, "type", "format", function (row) {
55704
- find(row.monthWidth, "type", "wide", function (row) {
55705
- for (var i = 0; i < row.month.length; i++) {
55706
- var m = row.month[i];
55707
- cldr["cldr_month_format_wide_" + m["$"].type] = getText(m);
55708
- }
55709
- });
55710
- });
55711
- find(monthContext, "type", "stand-alone", function (row) {
55712
- for (var i = 0; i < row.monthWidth[0].month.length; i++) {
55713
- var m = row.monthWidth[0].month[i];
55714
- cldr["cldr_month_stand-alone_narrow_" + m["$"].type] = getText(m);
55734
+
55735
+ const parseMonth = (months, cldrProperty) => {
55736
+ if (!months) {
55737
+ return;
55715
55738
  }
55716
- });
55739
+
55740
+ months.forEach(month => {
55741
+ cldr[cldrProperty + "_" + month["$"].type] = getText(month);
55742
+ });
55743
+ };
55744
+
55745
+ const parseMonthContext = sectionNameInLocaleFile => {
55746
+ find(monthContext, "type", "format", row => find(row.monthWidth, "type", sectionNameInLocaleFile, row => parseMonth(row.month, "cldr_month_format_" + sectionNameInLocaleFile)));
55747
+ };
55748
+
55749
+ parseMonthContext("abbreviated");
55750
+ parseMonthContext("wide");
55751
+ find(monthContext, "type", "stand-alone", row => parseMonth(row.monthWidth[0].month, "cldr_month_stand-alone_narrow"));
55717
55752
 
55718
55753
  function getTimeFormatPattern(row) {
55719
55754
  return row.timeFormat.pattern;
@@ -63123,7 +63158,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63123
63158
  helperFilePath = path.dirname(helperFilePath);
63124
63159
  }
63125
63160
 
63126
- let config = await qx.tool.cli.Cli.getInstance().getParsedArgs();
63161
+ let config = qx.tool.cli.Cli.getInstance().getParsedArgs();
63127
63162
  let lintOptions = config.eslintConfig || {};
63128
63163
  lintOptions.extends = lintOptions.extends || ["@qooxdoo/qx/browser"];
63129
63164
  lintOptions.globals = Object.assign(lintOptions.globals || {}, await this.__P_11_1(config));
@@ -63487,12 +63522,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63487
63522
 
63488
63523
  if (!config.run) {
63489
63524
  qx.tool.compiler.Console.print("qx.tool.cli.run.noRunConfig");
63490
- process.exit(-1);
63525
+ process.exit(1);
63491
63526
  }
63492
63527
 
63493
63528
  if (!config.run.application) {
63494
63529
  qx.tool.compiler.Console.print("qx.tool.cli.run.noAppName");
63495
- process.exit(-1);
63530
+ process.exit(1);
63496
63531
  }
63497
63532
 
63498
63533
  let maker = null;
@@ -63503,12 +63538,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63503
63538
  if (apps.length) {
63504
63539
  if (maker) {
63505
63540
  qx.tool.compiler.Console.print("qx.tool.cli.run.tooManyMakers");
63506
- process.exit(-1);
63541
+ process.exit(1);
63507
63542
  }
63508
63543
 
63509
63544
  if (apps.length != 1) {
63510
63545
  qx.tool.compiler.Console.print("qx.tool.cli.run.tooManyApplications");
63511
- process.exit(-1);
63546
+ process.exit(1);
63512
63547
  }
63513
63548
 
63514
63549
  maker = tmp;
@@ -63518,12 +63553,12 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63518
63553
 
63519
63554
  if (!app) {
63520
63555
  qx.tool.compiler.Console.print("qx.tool.cli.run.noAppName");
63521
- process.exit(-1);
63556
+ process.exit(1);
63522
63557
  }
63523
63558
 
63524
63559
  if (app.getType() != "node") {
63525
63560
  qx.tool.compiler.Console.print("qx.tool.cli.run.mustBeNode");
63526
- process.exit(-1);
63561
+ process.exit(1);
63527
63562
  }
63528
63563
 
63529
63564
  let target = maker.getTarget();
@@ -63710,28 +63745,27 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63710
63745
  afterStart: "qx.event.type.Event"
63711
63746
  },
63712
63747
  members: {
63713
- /** @type {qx.tool.utils.Website} the Website instance */
63714
- _website: null,
63715
-
63716
63748
  /*
63717
63749
  * @Override
63718
63750
  */
63719
63751
  async process() {
63720
63752
  this.argv.watch = true;
63721
63753
  this.argv["machine-readable"] = false;
63722
- this.argv["feedback"] = false;
63723
- await qx.tool.cli.commands.Serve.superclass.prototype.process.call(this); // build website if it hasn't been built yet.
63754
+ this.argv["feedback"] = false; // build website if it hasn't been built yet.
63724
63755
 
63725
- const website = this._website = new qx.tool.utils.Website();
63756
+ const website = new qx.tool.utils.Website();
63726
63757
 
63727
63758
  if (!(await fs.existsAsync(website.getTargetDir()))) {
63728
63759
  qx.tool.compiler.Console.info(">>> Building startpage...");
63729
- await this._website.rebuildAll();
63760
+ await website.rebuildAll();
63730
63761
  } else if (this.argv.rebuildStartpage) {
63731
- this._website.startWatcher();
63762
+ website.startWatcher();
63732
63763
  }
63733
63764
 
63734
- await this.runWebServer();
63765
+ this.addListenerOnce("made", () => {
63766
+ this.runWebServer();
63767
+ });
63768
+ return qx.tool.cli.commands.Serve.superclass.prototype.process.call(this);
63735
63769
  },
63736
63770
 
63737
63771
  /**
@@ -63830,25 +63864,23 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63830
63864
  });
63831
63865
  }
63832
63866
 
63833
- this.addListenerOnce("made", e => {
63834
- let server = http.createServer(app);
63835
- this.fireDataEvent("beforeStart", {
63836
- server: server,
63837
- application: app,
63838
- outputdir: defaultMaker.getTarget().getOutputDir()
63839
- });
63840
- server.on("error", e => {
63841
- if (e.code === "EADDRINUSE") {
63842
- qx.tool.compiler.Console.print("qx.tool.cli.serve.webAddrInUse", config.serve.listenPort);
63843
- process.exit(-1);
63844
- } else {
63845
- qx.tool.compiler.Console.log("Error when starting web server: " + e);
63846
- }
63847
- });
63848
- server.listen(config.serve.listenPort, () => {
63849
- qx.tool.compiler.Console.print("qx.tool.cli.serve.webStarted", "http://localhost:" + config.serve.listenPort);
63850
- this.fireEvent("afterStart");
63851
- });
63867
+ let server = http.createServer(app);
63868
+ this.fireDataEvent("beforeStart", {
63869
+ server: server,
63870
+ application: app,
63871
+ outputdir: defaultMaker.getTarget().getOutputDir()
63872
+ });
63873
+ server.on("error", e => {
63874
+ if (e.code === "EADDRINUSE") {
63875
+ qx.tool.compiler.Console.print("qx.tool.cli.serve.webAddrInUse", config.serve.listenPort);
63876
+ process.exit(1);
63877
+ } else {
63878
+ qx.tool.compiler.Console.log("Error when starting web server: " + e);
63879
+ }
63880
+ });
63881
+ server.listen(config.serve.listenPort, () => {
63882
+ qx.tool.compiler.Console.print("qx.tool.cli.serve.webStarted", "http://localhost:" + config.serve.listenPort);
63883
+ this.fireEvent("afterStart");
63852
63884
  });
63853
63885
  },
63854
63886
 
@@ -64475,7 +64507,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
64475
64507
  if (!this.hasListener("runTests") && this.__P_15_0.length === 0 && (!this.getCompilerApi() || typeof this.getCompilerApi().beforeTests != "function")) {
64476
64508
  qx.tool.compiler.Console.error(`No tests are registered! You need to either register tests, or install a testrunner.
64477
64509
  See documentation at https://qooxdoo.org/docs/#/development/testing/`);
64478
- process.exit(-1);
64510
+ process.exit(1);
64479
64511
  }
64480
64512
  });
64481
64513
  this.addListener("afterStart", async () => {
@@ -64490,6 +64522,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
64490
64522
  qx.tool.compiler.Console.info(`Running ${test.getName()}`);
64491
64523
  await test.execute();
64492
64524
  } // for bash exitcode is not allowed to be more then 255!
64525
+ // We must exit the process here because serve runs infinite!
64493
64526
 
64494
64527
 
64495
64528
  process.exit(Math.min(255, this.getExitCode()));
@@ -64502,7 +64535,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
64502
64535
  // compile only
64503
64536
  await qx.tool.cli.commands.Compile.prototype.process.call(this); // since the server is not started, manually fire the event necessary for firing the "runTests" event
64504
64537
 
64505
- this.fireEvent("afterStart");
64538
+ await this.fireDataEventAsync("afterStart");
64506
64539
  }
64507
64540
  },
64508
64541
 
@@ -64873,7 +64906,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
64873
64906
 
64874
64907
 
64875
64908
  this.debug(script_list);
64876
- manifestModel.setValue("externalResources.script", script_list).save();
64909
+ await manifestModel.setValue("externalResources.script", script_list).save();
64877
64910
  }
64878
64911
 
64879
64912
  }
@@ -64943,9 +64976,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
64943
64976
  "qx.tool.cli.commands.Package": {
64944
64977
  "require": true
64945
64978
  },
64979
+ "qx.tool.compiler.Console": {},
64946
64980
  "qx.tool.utils.Utils": {},
64947
64981
  "qx.tool.cli.ConfigDb": {},
64948
- "qx.tool.compiler.Console": {},
64949
64982
  "qx.tool.config.Registry": {},
64950
64983
  "qx.tool.config.Abstract": {},
64951
64984
  "qx.tool.config.Manifest": {},
@@ -65032,6 +65065,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65032
65065
  describe: "Set commit/release message"
65033
65066
  },
65034
65067
  dryrun: {
65068
+ type: "boolean",
65069
+ describe: "Deprecated. Use --dry-run"
65070
+ },
65071
+ "dry-run": {
65035
65072
  type: "boolean",
65036
65073
  alias: "d",
65037
65074
  describe: "Show result only, do not publish to GitHub"
@@ -65087,7 +65124,13 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65087
65124
  async process() {
65088
65125
  await qx.tool.cli.commands.package.Publish.superclass.prototype.process.call(this); // init
65089
65126
 
65090
- const argv = this.argv; // qooxdoo version
65127
+ const argv = this.argv;
65128
+
65129
+ if (argv.dryrun) {
65130
+ qx.tool.compiler.Console.info('The "--dryrun" option is deprecated. Please use "--dry-run" instead.');
65131
+ argv.dryRun = true;
65132
+ } // qooxdoo version
65133
+
65091
65134
 
65092
65135
  let qxVersion = await this.getQxVersion();
65093
65136
 
@@ -65312,7 +65355,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65312
65355
  for (let manifestModel of manifestModels) {
65313
65356
  manifestModel.setValue("requires.@qooxdoo/framework", semver_range).setValue("info.version", new_version);
65314
65357
 
65315
- if (argv.dryrun) {
65358
+ if (argv.dryRun) {
65316
65359
  if (!argv.quiet) {
65317
65360
  qx.tool.compiler.Console.info(`Dry run: Not committing ${manifestModel.getRelativeDataPath()} with the following content:`);
65318
65361
  qx.tool.compiler.Console.info(JSON.stringify(manifestModel.getData(), null, 2));
@@ -65329,7 +65372,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65329
65372
  let data = await qx.tool.utils.Json.loadJsonAsync(package_json_path);
65330
65373
  data.version = new_version;
65331
65374
 
65332
- if (this.argv.dryrun) {
65375
+ if (this.argv.dryRun) {
65333
65376
  qx.tool.compiler.Console.info("Dry run: Not changing package.json version...");
65334
65377
  } else {
65335
65378
  await qx.tool.utils.Json.saveJsonAsync(package_json_path, data);
@@ -65345,7 +65388,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65345
65388
  argv: this.argv
65346
65389
  });
65347
65390
 
65348
- if (argv.dryrun) {
65391
+ if (argv.dryRun) {
65349
65392
  qx.tool.compiler.Console.info(`Dry run: not creating tag and release '${tag}' of ${repo_name}...`);
65350
65393
  return;
65351
65394
  } // commit message
@@ -65468,7 +65511,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65468
65511
 
65469
65512
  const registryModel = qx.tool.config.Registry.getInstance();
65470
65513
 
65471
- if (argv.dryrun) {
65514
+ if (argv.dryRun) {
65472
65515
  qx.tool.compiler.Console.info(`Dry run: not creating index file ${registryModel.getRelativeDataPath()} with the following content:`);
65473
65516
  qx.tool.compiler.Console.info(data);
65474
65517
  } else {
@@ -72183,48 +72226,6 @@ qx.$$packageData['0'] = {
72183
72226
  }
72184
72227
  },
72185
72228
  "resources": {
72186
- "qx/decoration/Simple/checkbox/checked-disabled.png": [
72187
- 6,
72188
- 6,
72189
- "png",
72190
- "qx"
72191
- ],
72192
- "qx/decoration/Simple/checkbox/checked.png": [
72193
- 6,
72194
- 6,
72195
- "png",
72196
- "qx"
72197
- ],
72198
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72199
- 6,
72200
- 2,
72201
- "png",
72202
- "qx"
72203
- ],
72204
- "qx/decoration/Simple/checkbox/undetermined.png": [
72205
- 6,
72206
- 2,
72207
- "png",
72208
- "qx"
72209
- ],
72210
- "qx/decoration/Simple/colorselector/brightness-field.png": [
72211
- 19,
72212
- 256,
72213
- "png",
72214
- "qx"
72215
- ],
72216
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72217
- 35,
72218
- 11,
72219
- "gif",
72220
- "qx"
72221
- ],
72222
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72223
- 256,
72224
- 256,
72225
- "jpg",
72226
- "qx"
72227
- ],
72228
72229
  "qx/decoration/Simple/arrows/down-invert.gif": [
72229
72230
  7,
72230
72231
  4,
@@ -72237,9 +72238,9 @@ qx.$$packageData['0'] = {
72237
72238
  "gif",
72238
72239
  "qx"
72239
72240
  ],
72240
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72241
- 11,
72242
- 11,
72241
+ "qx/decoration/Simple/arrows/forward.gif": [
72242
+ 8,
72243
+ 7,
72243
72244
  "gif",
72244
72245
  "qx"
72245
72246
  ],
@@ -72249,12 +72250,6 @@ qx.$$packageData['0'] = {
72249
72250
  "gif",
72250
72251
  "qx"
72251
72252
  ],
72252
- "qx/decoration/Simple/arrows/forward.gif": [
72253
- 8,
72254
- 7,
72255
- "gif",
72256
- "qx"
72257
- ],
72258
72253
  "qx/decoration/Simple/arrows/left-invert.gif": [
72259
72254
  4,
72260
72255
  7,
@@ -72291,43 +72286,79 @@ qx.$$packageData['0'] = {
72291
72286
  "gif",
72292
72287
  "qx"
72293
72288
  ],
72289
+ "qx/decoration/Simple/arrows/up-small.gif": [
72290
+ 5,
72291
+ 3,
72292
+ "gif",
72293
+ "qx"
72294
+ ],
72295
+ "qx/decoration/Simple/checkbox/checked-disabled.png": [
72296
+ 6,
72297
+ 6,
72298
+ "png",
72299
+ "qx"
72300
+ ],
72294
72301
  "qx/decoration/Simple/arrows/up.gif": [
72295
72302
  7,
72296
72303
  4,
72297
72304
  "gif",
72298
72305
  "qx"
72299
72306
  ],
72300
- "qx/decoration/Simple/arrows/up-small.gif": [
72301
- 5,
72302
- 3,
72303
- "gif",
72307
+ "qx/decoration/Simple/checkbox/checked.png": [
72308
+ 6,
72309
+ 6,
72310
+ "png",
72304
72311
  "qx"
72305
72312
  ],
72306
- "qx/decoration/Simple/menu/checkbox-invert.gif": [
72307
- 16,
72308
- 7,
72313
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72314
+ 6,
72315
+ 2,
72316
+ "png",
72317
+ "qx"
72318
+ ],
72319
+ "qx/decoration/Simple/checkbox/undetermined.png": [
72320
+ 6,
72321
+ 2,
72322
+ "png",
72323
+ "qx"
72324
+ ],
72325
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
72326
+ 19,
72327
+ 256,
72328
+ "png",
72329
+ "qx"
72330
+ ],
72331
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72332
+ 35,
72333
+ 11,
72309
72334
  "gif",
72310
72335
  "qx"
72311
72336
  ],
72312
- "qx/decoration/Simple/menu/checkbox.gif": [
72313
- 16,
72314
- 7,
72337
+ "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72338
+ 256,
72339
+ 256,
72340
+ "jpg",
72341
+ "qx"
72342
+ ],
72343
+ "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72344
+ 11,
72345
+ 11,
72315
72346
  "gif",
72316
72347
  "qx"
72317
72348
  ],
72318
- "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72319
- 16,
72320
- 5,
72349
+ "qx/decoration/Simple/cursors/alias.gif": [
72350
+ 19,
72351
+ 15,
72321
72352
  "gif",
72322
72353
  "qx"
72323
72354
  ],
72324
- "qx/decoration/Simple/menu/radiobutton.gif": [
72325
- 16,
72326
- 5,
72355
+ "qx/decoration/Simple/cursors/move.gif": [
72356
+ 13,
72357
+ 9,
72327
72358
  "gif",
72328
72359
  "qx"
72329
72360
  ],
72330
- "qx/decoration/Simple/cursors/alias.gif": [
72361
+ "qx/decoration/Simple/cursors/copy.gif": [
72331
72362
  19,
72332
72363
  15,
72333
72364
  "gif",
@@ -72339,9 +72370,27 @@ qx.$$packageData['0'] = {
72339
72370
  "gif",
72340
72371
  "qx"
72341
72372
  ],
72342
- "qx/decoration/Simple/cursors/copy.gif": [
72343
- 19,
72344
- 15,
72373
+ "qx/decoration/Simple/menu/checkbox-invert.gif": [
72374
+ 16,
72375
+ 7,
72376
+ "gif",
72377
+ "qx"
72378
+ ],
72379
+ "qx/decoration/Simple/menu/checkbox.gif": [
72380
+ 16,
72381
+ 7,
72382
+ "gif",
72383
+ "qx"
72384
+ ],
72385
+ "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72386
+ 16,
72387
+ 5,
72388
+ "gif",
72389
+ "qx"
72390
+ ],
72391
+ "qx/decoration/Simple/menu/radiobutton.gif": [
72392
+ 16,
72393
+ 5,
72345
72394
  "gif",
72346
72395
  "qx"
72347
72396
  ],
@@ -72351,12 +72400,6 @@ qx.$$packageData['0'] = {
72351
72400
  "png",
72352
72401
  "qx"
72353
72402
  ],
72354
- "qx/decoration/Simple/cursors/move.gif": [
72355
- 13,
72356
- 9,
72357
- "gif",
72358
- "qx"
72359
- ],
72360
72403
  "qx/decoration/Simple/splitpane/knob-vertical.png": [
72361
72404
  8,
72362
72405
  1,
@@ -72369,12 +72412,6 @@ qx.$$packageData['0'] = {
72369
72412
  "png",
72370
72413
  "qx"
72371
72414
  ],
72372
- "qx/decoration/Simple/table/ascending-invert.png": [
72373
- 10,
72374
- 10,
72375
- "png",
72376
- "qx"
72377
- ],
72378
72415
  "qx/decoration/Simple/table/boolean-false.png": [
72379
72416
  11,
72380
72417
  11,
@@ -72387,6 +72424,12 @@ qx.$$packageData['0'] = {
72387
72424
  "png",
72388
72425
  "qx"
72389
72426
  ],
72427
+ "qx/decoration/Simple/table/ascending-invert.png": [
72428
+ 10,
72429
+ 10,
72430
+ "png",
72431
+ "qx"
72432
+ ],
72390
72433
  "qx/decoration/Simple/table/descending-invert.png": [
72391
72434
  10,
72392
72435
  10,
@@ -72405,99 +72448,93 @@ qx.$$packageData['0'] = {
72405
72448
  "png",
72406
72449
  "qx"
72407
72450
  ],
72408
- "qx/decoration/Simple/treevirtual/cross.gif": [
72409
- 19,
72410
- 16,
72411
- "gif",
72412
- "qx"
72413
- ],
72414
72451
  "qx/decoration/Simple/tabview/close.gif": [
72415
72452
  10,
72416
72453
  9,
72417
72454
  "gif",
72418
72455
  "qx"
72419
72456
  ],
72420
- "qx/decoration/Simple/treevirtual/cross_plus.gif": [
72457
+ "qx/decoration/Simple/tree/minus.gif": [
72421
72458
  19,
72422
72459
  16,
72423
72460
  "gif",
72424
72461
  "qx"
72425
72462
  ],
72426
- "qx/decoration/Simple/treevirtual/end.gif": [
72463
+ "qx/decoration/Simple/tree/plus.gif": [
72427
72464
  19,
72428
72465
  16,
72429
72466
  "gif",
72430
72467
  "qx"
72431
72468
  ],
72432
- "qx/decoration/Simple/treevirtual/end_minus.gif": [
72469
+ "qx/decoration/Simple/treevirtual/cross.gif": [
72433
72470
  19,
72434
72471
  16,
72435
72472
  "gif",
72436
72473
  "qx"
72437
72474
  ],
72438
- "qx/decoration/Simple/treevirtual/end_plus.gif": [
72475
+ "qx/decoration/Simple/treevirtual/cross_plus.gif": [
72439
72476
  19,
72440
72477
  16,
72441
72478
  "gif",
72442
72479
  "qx"
72443
72480
  ],
72444
- "qx/decoration/Simple/treevirtual/line.gif": [
72481
+ "qx/decoration/Simple/treevirtual/end.gif": [
72445
72482
  19,
72446
72483
  16,
72447
72484
  "gif",
72448
72485
  "qx"
72449
72486
  ],
72450
- "qx/decoration/Simple/treevirtual/only_minus.gif": [
72487
+ "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72451
72488
  19,
72452
72489
  16,
72453
72490
  "gif",
72454
72491
  "qx"
72455
72492
  ],
72456
- "qx/decoration/Simple/treevirtual/only_plus.gif": [
72493
+ "qx/decoration/Simple/treevirtual/end_minus.gif": [
72457
72494
  19,
72458
72495
  16,
72459
72496
  "gif",
72460
72497
  "qx"
72461
72498
  ],
72462
- "qx/decoration/Simple/treevirtual/start.gif": [
72499
+ "qx/decoration/Simple/treevirtual/end_plus.gif": [
72463
72500
  19,
72464
72501
  16,
72465
72502
  "gif",
72466
72503
  "qx"
72467
72504
  ],
72468
- "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72505
+ "qx/decoration/Simple/treevirtual/line.gif": [
72469
72506
  19,
72470
72507
  16,
72471
72508
  "gif",
72472
72509
  "qx"
72473
72510
  ],
72474
- "qx/decoration/Simple/treevirtual/start_minus.gif": [
72511
+ "qx/decoration/Simple/treevirtual/only_plus.gif": [
72475
72512
  19,
72476
72513
  16,
72477
72514
  "gif",
72478
72515
  "qx"
72479
72516
  ],
72480
- "qx/decoration/Simple/treevirtual/start_plus.gif": [
72517
+ "qx/decoration/Simple/treevirtual/only_minus.gif": [
72481
72518
  19,
72482
72519
  16,
72483
72520
  "gif",
72484
72521
  "qx"
72485
72522
  ],
72486
- "qx/decoration/Simple/tree/minus.gif": [
72523
+ "qx/decoration/Simple/treevirtual/start.gif": [
72487
72524
  19,
72488
72525
  16,
72489
72526
  "gif",
72490
72527
  "qx"
72491
72528
  ],
72492
- "qx/decoration/Simple/tree/plus.gif": [
72529
+ "qx/decoration/Simple/treevirtual/start_minus.gif": [
72493
72530
  19,
72494
72531
  16,
72495
72532
  "gif",
72496
72533
  "qx"
72497
72534
  ],
72498
- "qx/decoration/Simple/window/close-white.gif": [
72499
- 10,
72500
- 9,
72535
+ "qx/decoration/Simple/treevirtual/start_plus.gif": [
72536
+ 19,
72537
+ 16,
72501
72538
  "gif",
72502
72539
  "qx"
72503
72540
  ],
@@ -72507,19 +72544,19 @@ qx.$$packageData['0'] = {
72507
72544
  "gif",
72508
72545
  "qx"
72509
72546
  ],
72510
- "qx/decoration/Simple/window/maximize.gif": [
72547
+ "qx/decoration/Simple/window/maximize-white.gif": [
72511
72548
  9,
72512
72549
  9,
72513
72550
  "gif",
72514
72551
  "qx"
72515
72552
  ],
72516
- "qx/decoration/Simple/window/maximize-white.gif": [
72517
- 9,
72553
+ "qx/decoration/Simple/window/close-white.gif": [
72554
+ 10,
72518
72555
  9,
72519
72556
  "gif",
72520
72557
  "qx"
72521
72558
  ],
72522
- "qx/decoration/Simple/window/minimize.gif": [
72559
+ "qx/decoration/Simple/window/maximize.gif": [
72523
72560
  9,
72524
72561
  9,
72525
72562
  "gif",
@@ -72531,8 +72568,8 @@ qx.$$packageData['0'] = {
72531
72568
  "gif",
72532
72569
  "qx"
72533
72570
  ],
72534
- "qx/decoration/Simple/window/restore-white.gif": [
72535
- 8,
72571
+ "qx/decoration/Simple/window/minimize.gif": [
72572
+ 9,
72536
72573
  9,
72537
72574
  "gif",
72538
72575
  "qx"
@@ -72543,6 +72580,12 @@ qx.$$packageData['0'] = {
72543
72580
  "gif",
72544
72581
  "qx"
72545
72582
  ],
72583
+ "qx/decoration/Simple/window/restore-white.gif": [
72584
+ 8,
72585
+ 9,
72586
+ "gif",
72587
+ "qx"
72588
+ ],
72546
72589
  "qx/static/blank.png": [
72547
72590
  1,
72548
72591
  1,
@@ -72579,7 +72622,7 @@ qx.$$packageData['0'] = {
72579
72622
  "json",
72580
72623
  "qx"
72581
72624
  ],
72582
- "qx/tool/schema/qooxdoo-1-0-0.json": [
72625
+ "qx/tool/schema/Manifest-2-0-0.json": [
72583
72626
  null,
72584
72627
  null,
72585
72628
  "json",
@@ -72591,7 +72634,7 @@ qx.$$packageData['0'] = {
72591
72634
  "json",
72592
72635
  "qx"
72593
72636
  ],
72594
- "qx/tool/schema/Manifest-2-0-0.json": [
72637
+ "qx/tool/schema/qooxdoo-1-0-0.json": [
72595
72638
  null,
72596
72639
  null,
72597
72640
  "json",
@@ -72621,13 +72664,13 @@ qx.$$packageData['0'] = {
72621
72664
  "html",
72622
72665
  "qx"
72623
72666
  ],
72624
- "qx/tool/website/build/about.html": [
72667
+ "qx/tool/website/build/index.html": [
72625
72668
  null,
72626
72669
  null,
72627
72670
  "html",
72628
72671
  "qx"
72629
72672
  ],
72630
- "qx/tool/website/build/index.html": [
72673
+ "qx/tool/website/build/about.html": [
72631
72674
  null,
72632
72675
  null,
72633
72676
  "html",
@@ -72639,12 +72682,6 @@ qx.$$packageData['0'] = {
72639
72682
  "css",
72640
72683
  "qx"
72641
72684
  ],
72642
- "qx/tool/website/layouts/default.dot": [
72643
- null,
72644
- null,
72645
- "dot",
72646
- "qx"
72647
- ],
72648
72685
  "qx/tool/website/partials/footer.html": [
72649
72686
  null,
72650
72687
  null,
@@ -72663,34 +72700,34 @@ qx.$$packageData['0'] = {
72663
72700
  "html",
72664
72701
  "qx"
72665
72702
  ],
72666
- "qx/tool/website/partials/icon-github.svg": [
72667
- 16,
72668
- 16,
72669
- "svg",
72670
- "qx"
72671
- ],
72672
- "qx/tool/website/partials/icon-github.html": [
72703
+ "qx/tool/website/partials/icon-twitter.html": [
72673
72704
  null,
72674
72705
  null,
72675
72706
  "html",
72676
72707
  "qx"
72677
72708
  ],
72678
- "qx/tool/website/partials/icon-twitter.html": [
72709
+ "qx/tool/website/partials/icon-github.html": [
72679
72710
  null,
72680
72711
  null,
72681
72712
  "html",
72682
72713
  "qx"
72683
72714
  ],
72715
+ "qx/tool/website/partials/icon-github.svg": [
72716
+ 16,
72717
+ 16,
72718
+ "svg",
72719
+ "qx"
72720
+ ],
72684
72721
  "qx/tool/website/partials/icon-twitter.svg": [
72685
72722
  16,
72686
72723
  16,
72687
72724
  "svg",
72688
72725
  "qx"
72689
72726
  ],
72690
- "qx/tool/website/sass/qooxdoo.scss": [
72727
+ "qx/tool/website/layouts/default.dot": [
72691
72728
  null,
72692
72729
  null,
72693
- "scss",
72730
+ "dot",
72694
72731
  "qx"
72695
72732
  ],
72696
72733
  "qx/tool/website/src/404.html": [
@@ -72711,6 +72748,12 @@ qx.$$packageData['0'] = {
72711
72748
  "html",
72712
72749
  "qx"
72713
72750
  ],
72751
+ "qx/tool/website/sass/qooxdoo.scss": [
72752
+ null,
72753
+ null,
72754
+ "scss",
72755
+ "qx"
72756
+ ],
72714
72757
  "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72715
72758
  null,
72716
72759
  null,
@@ -72735,18 +72778,6 @@ qx.$$packageData['0'] = {
72735
72778
  "js",
72736
72779
  "qx"
72737
72780
  ],
72738
- "qx/tool/cli/templates/class/header.tmpl.js": [
72739
- null,
72740
- null,
72741
- "js",
72742
- "qx"
72743
- ],
72744
- "qx/tool/cli/templates/class/interface.tmpl.js": [
72745
- null,
72746
- null,
72747
- "js",
72748
- "qx"
72749
- ],
72750
72781
  "qx/tool/cli/templates/class/singleton.tmpl.js": [
72751
72782
  null,
72752
72783
  null,
@@ -72759,25 +72790,13 @@ qx.$$packageData['0'] = {
72759
72790
  "js",
72760
72791
  "qx"
72761
72792
  ],
72762
- "qx/tool/website/build/diagnostics/dependson.html": [
72763
- null,
72764
- null,
72765
- "html",
72766
- "qx"
72767
- ],
72768
- "qx/tool/website/build/diagnostics/dependson.js": [
72793
+ "qx/tool/cli/templates/class/header.tmpl.js": [
72769
72794
  null,
72770
72795
  null,
72771
72796
  "js",
72772
72797
  "qx"
72773
72798
  ],
72774
- "qx/tool/website/build/diagnostics/requiredby.html": [
72775
- null,
72776
- null,
72777
- "html",
72778
- "qx"
72779
- ],
72780
- "qx/tool/website/build/diagnostics/requiredby.js": [
72799
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
72781
72800
  null,
72782
72801
  null,
72783
72802
  "js",
@@ -72795,12 +72814,6 @@ qx.$$packageData['0'] = {
72795
72814
  "js",
72796
72815
  "qx"
72797
72816
  ],
72798
- "qx/tool/website/build/assets/bootstrap.min.css": [
72799
- null,
72800
- null,
72801
- "css",
72802
- "qx"
72803
- ],
72804
72817
  "qx/tool/website/build/assets/bootstrap.css": [
72805
72818
  null,
72806
72819
  null,
@@ -72813,10 +72826,10 @@ qx.$$packageData['0'] = {
72813
72826
  "map",
72814
72827
  "qx"
72815
72828
  ],
72816
- "qx/tool/website/build/assets/buttons.js": [
72829
+ "qx/tool/website/build/assets/bootstrap.min.css": [
72817
72830
  null,
72818
72831
  null,
72819
- "js",
72832
+ "css",
72820
72833
  "qx"
72821
72834
  ],
72822
72835
  "qx/tool/website/build/assets/favicon.png": [
@@ -72831,13 +72844,13 @@ qx.$$packageData['0'] = {
72831
72844
  "js",
72832
72845
  "qx"
72833
72846
  ],
72834
- "qx/tool/website/build/assets/qx-api.png": [
72835
- 1144,
72836
- 640,
72837
- "png",
72847
+ "qx/tool/website/build/assets/jquery.js": [
72848
+ null,
72849
+ null,
72850
+ "js",
72838
72851
  "qx"
72839
72852
  ],
72840
- "qx/tool/website/build/assets/jquery.js": [
72853
+ "qx/tool/website/build/assets/buttons.js": [
72841
72854
  null,
72842
72855
  null,
72843
72856
  "js",
@@ -72849,15 +72862,15 @@ qx.$$packageData['0'] = {
72849
72862
  "svg",
72850
72863
  "qx"
72851
72864
  ],
72852
- "qx/tool/website/build/assets/qx-ide.png": [
72853
- 3183,
72854
- 1752,
72865
+ "qx/tool/website/build/assets/qx-api.png": [
72866
+ 1144,
72867
+ 640,
72855
72868
  "png",
72856
72869
  "qx"
72857
72870
  ],
72858
- "qx/tool/website/build/assets/qx-oo.png": [
72859
- 870,
72860
- 502,
72871
+ "qx/tool/website/build/assets/qx-ide.png": [
72872
+ 3183,
72873
+ 1752,
72861
72874
  "png",
72862
72875
  "qx"
72863
72876
  ],
@@ -72867,31 +72880,37 @@ qx.$$packageData['0'] = {
72867
72880
  "svg",
72868
72881
  "qx"
72869
72882
  ],
72870
- "qx/tool/website/build/scripts/serve.js": [
72883
+ "qx/tool/website/build/assets/qx-oo.png": [
72884
+ 870,
72885
+ 502,
72886
+ "png",
72887
+ "qx"
72888
+ ],
72889
+ "qx/tool/website/build/diagnostics/dependson.html": [
72871
72890
  null,
72872
72891
  null,
72873
- "js",
72892
+ "html",
72874
72893
  "qx"
72875
72894
  ],
72876
- "qx/tool/website/src/diagnostics/dependson.html": [
72895
+ "qx/tool/website/build/diagnostics/requiredby.js": [
72877
72896
  null,
72878
72897
  null,
72879
- "html",
72898
+ "js",
72880
72899
  "qx"
72881
72900
  ],
72882
- "qx/tool/website/src/diagnostics/dependson.js": [
72901
+ "qx/tool/website/build/diagnostics/dependson.js": [
72883
72902
  null,
72884
72903
  null,
72885
72904
  "js",
72886
72905
  "qx"
72887
72906
  ],
72888
- "qx/tool/website/src/diagnostics/requiredby.html": [
72907
+ "qx/tool/website/build/diagnostics/requiredby.html": [
72889
72908
  null,
72890
72909
  null,
72891
72910
  "html",
72892
72911
  "qx"
72893
72912
  ],
72894
- "qx/tool/website/src/diagnostics/requiredby.js": [
72913
+ "qx/tool/website/build/scripts/serve.js": [
72895
72914
  null,
72896
72915
  null,
72897
72916
  "js",
@@ -72909,66 +72928,66 @@ qx.$$packageData['0'] = {
72909
72928
  "js",
72910
72929
  "qx"
72911
72930
  ],
72912
- "qx/tool/website/src/assets/bootstrap.min.css.map": [
72931
+ "qx/tool/website/src/assets/bootstrap.css": [
72913
72932
  null,
72914
72933
  null,
72915
- "map",
72934
+ "css",
72916
72935
  "qx"
72917
72936
  ],
72918
- "qx/tool/website/src/assets/bootstrap.css": [
72937
+ "qx/tool/website/src/assets/bootstrap.min.css": [
72919
72938
  null,
72920
72939
  null,
72921
72940
  "css",
72922
72941
  "qx"
72923
72942
  ],
72924
- "qx/tool/website/src/assets/buttons.js": [
72943
+ "qx/tool/website/src/assets/bootstrap.min.css.map": [
72925
72944
  null,
72926
72945
  null,
72927
- "js",
72946
+ "map",
72928
72947
  "qx"
72929
72948
  ],
72930
- "qx/tool/website/src/assets/bootstrap.min.css": [
72949
+ "qx/tool/website/src/assets/buttons.js": [
72931
72950
  null,
72932
72951
  null,
72933
- "css",
72934
- "qx"
72935
- ],
72936
- "qx/tool/website/src/assets/favicon.png": [
72937
- 32,
72938
- 32,
72939
- "png",
72952
+ "js",
72940
72953
  "qx"
72941
72954
  ],
72942
- "qx/tool/website/src/assets/jquery.js": [
72955
+ "qx/tool/website/src/assets/fontawesome-all.js": [
72943
72956
  null,
72944
72957
  null,
72945
72958
  "js",
72946
72959
  "qx"
72947
72960
  ],
72948
- "qx/tool/website/src/assets/fontawesome-all.js": [
72961
+ "qx/tool/website/src/assets/jquery.js": [
72949
72962
  null,
72950
72963
  null,
72951
72964
  "js",
72952
72965
  "qx"
72953
72966
  ],
72967
+ "qx/tool/website/src/assets/favicon.png": [
72968
+ 32,
72969
+ 32,
72970
+ "png",
72971
+ "qx"
72972
+ ],
72954
72973
  "qx/tool/website/src/assets/logo.svg": [
72955
72974
  512,
72956
72975
  145,
72957
72976
  "svg",
72958
72977
  "qx"
72959
72978
  ],
72960
- "qx/tool/website/src/assets/qx-api.png": [
72961
- 1144,
72962
- 640,
72963
- "png",
72964
- "qx"
72965
- ],
72966
72979
  "qx/tool/website/src/assets/qx-ide.png": [
72967
72980
  3183,
72968
72981
  1752,
72969
72982
  "png",
72970
72983
  "qx"
72971
72984
  ],
72985
+ "qx/tool/website/src/assets/qx-api.png": [
72986
+ 1144,
72987
+ 640,
72988
+ "png",
72989
+ "qx"
72990
+ ],
72972
72991
  "qx/tool/website/src/assets/qx-oo.png": [
72973
72992
  870,
72974
72993
  502,
@@ -72981,58 +73000,82 @@ qx.$$packageData['0'] = {
72981
73000
  "svg",
72982
73001
  "qx"
72983
73002
  ],
73003
+ "qx/tool/website/src/diagnostics/dependson.html": [
73004
+ null,
73005
+ null,
73006
+ "html",
73007
+ "qx"
73008
+ ],
73009
+ "qx/tool/website/src/diagnostics/requiredby.js": [
73010
+ null,
73011
+ null,
73012
+ "js",
73013
+ "qx"
73014
+ ],
73015
+ "qx/tool/website/src/diagnostics/requiredby.html": [
73016
+ null,
73017
+ null,
73018
+ "html",
73019
+ "qx"
73020
+ ],
73021
+ "qx/tool/website/src/diagnostics/dependson.js": [
73022
+ null,
73023
+ null,
73024
+ "js",
73025
+ "qx"
73026
+ ],
72984
73027
  "qx/tool/website/src/scripts/serve.js": [
72985
73028
  null,
72986
73029
  null,
72987
73030
  "js",
72988
73031
  "qx"
72989
73032
  ],
72990
- "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73033
+ "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
72991
73034
  null,
72992
73035
  null,
72993
73036
  "tmpl",
72994
73037
  "qx"
72995
73038
  ],
72996
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73039
+ "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
72997
73040
  null,
72998
73041
  null,
72999
73042
  "json",
73000
73043
  "qx"
73001
73044
  ],
73002
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73045
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
73003
73046
  null,
73004
73047
  null,
73005
73048
  "json",
73006
73049
  "qx"
73007
73050
  ],
73008
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73051
+ "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
73009
73052
  null,
73010
73053
  null,
73011
73054
  "md",
73012
73055
  "qx"
73013
73056
  ],
73014
- "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
73057
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73015
73058
  null,
73016
73059
  null,
73017
73060
  "tmpl",
73018
73061
  "qx"
73019
73062
  ],
73020
- "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
73063
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73021
73064
  null,
73022
73065
  null,
73023
73066
  "json",
73024
73067
  "qx"
73025
73068
  ],
73026
- "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
73069
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73027
73070
  null,
73028
73071
  null,
73029
- "md",
73072
+ "json",
73030
73073
  "qx"
73031
73074
  ],
73032
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
73075
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73033
73076
  null,
73034
73077
  null,
73035
- "json",
73078
+ "md",
73036
73079
  "qx"
73037
73080
  ],
73038
73081
  "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
@@ -73047,16 +73090,16 @@ qx.$$packageData['0'] = {
73047
73090
  "json",
73048
73091
  "qx"
73049
73092
  ],
73050
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73093
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73051
73094
  null,
73052
73095
  null,
73053
- "md",
73096
+ "json",
73054
73097
  "qx"
73055
73098
  ],
73056
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73099
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73057
73100
  null,
73058
73101
  null,
73059
- "json",
73102
+ "md",
73060
73103
  "qx"
73061
73104
  ],
73062
73105
  "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
@@ -73083,43 +73126,43 @@ qx.$$packageData['0'] = {
73083
73126
  "txt",
73084
73127
  "qx"
73085
73128
  ],
73086
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73129
+ "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
73087
73130
  null,
73088
73131
  null,
73089
73132
  "html",
73090
73133
  "qx"
73091
73134
  ],
73092
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73135
+ "qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
73093
73136
  null,
73094
73137
  null,
73095
73138
  "html",
73096
73139
  "qx"
73097
73140
  ],
73098
- "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73141
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73099
73142
  null,
73100
73143
  null,
73101
- "txt",
73144
+ "html",
73102
73145
  "qx"
73103
73146
  ],
73104
- "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
73147
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73105
73148
  null,
73106
73149
  null,
73107
- "txt",
73150
+ "html",
73108
73151
  "qx"
73109
73152
  ],
73110
- "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
73153
+ "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73111
73154
  null,
73112
73155
  null,
73113
- "html",
73156
+ "txt",
73114
73157
  "qx"
73115
73158
  ],
73116
- "qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
73159
+ "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73117
73160
  null,
73118
73161
  null,
73119
- "html",
73162
+ "txt",
73120
73163
  "qx"
73121
73164
  ],
73122
- "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73165
+ "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
73123
73166
  null,
73124
73167
  null,
73125
73168
  "txt",
@@ -73131,43 +73174,67 @@ qx.$$packageData['0'] = {
73131
73174
  "txt",
73132
73175
  "qx"
73133
73176
  ],
73134
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73177
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73178
+ 180,
73179
+ 180,
73180
+ "png",
73181
+ "qx"
73182
+ ],
73183
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
73184
+ 32,
73185
+ 32,
73186
+ "png",
73187
+ "qx"
73188
+ ],
73189
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
73190
+ 256,
73191
+ 256,
73192
+ "png",
73193
+ "qx"
73194
+ ],
73195
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73196
+ 32,
73197
+ 32,
73198
+ "png",
73199
+ "qx"
73200
+ ],
73201
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73135
73202
  null,
73136
73203
  null,
73137
73204
  "js",
73138
73205
  "qx"
73139
73206
  ],
73140
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
73207
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73141
73208
  null,
73142
73209
  null,
73143
73210
  "js",
73144
73211
  "qx"
73145
73212
  ],
73146
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
73147
- 32,
73148
- 32,
73149
- "png",
73150
- "qx"
73151
- ],
73152
73213
  "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
73153
73214
  180,
73154
73215
  180,
73155
73216
  "png",
73156
73217
  "qx"
73157
73218
  ],
73219
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
73220
+ 32,
73221
+ 32,
73222
+ "png",
73223
+ "qx"
73224
+ ],
73158
73225
  "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
73159
73226
  256,
73160
73227
  256,
73161
73228
  "png",
73162
73229
  "qx"
73163
73230
  ],
73164
- "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73231
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73165
73232
  null,
73166
73233
  null,
73167
73234
  "js",
73168
73235
  "qx"
73169
73236
  ],
73170
- "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73237
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
73171
73238
  null,
73172
73239
  null,
73173
73240
  "js",
@@ -73179,42 +73246,18 @@ qx.$$packageData['0'] = {
73179
73246
  "png",
73180
73247
  "qx"
73181
73248
  ],
73182
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73249
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73183
73250
  null,
73184
73251
  null,
73185
73252
  "js",
73186
73253
  "qx"
73187
73254
  ],
73188
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73255
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73189
73256
  null,
73190
73257
  null,
73191
73258
  "js",
73192
73259
  "qx"
73193
73260
  ],
73194
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73195
- 180,
73196
- 180,
73197
- "png",
73198
- "qx"
73199
- ],
73200
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
73201
- 256,
73202
- 256,
73203
- "png",
73204
- "qx"
73205
- ],
73206
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
73207
- 32,
73208
- 32,
73209
- "png",
73210
- "qx"
73211
- ],
73212
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73213
- 32,
73214
- 32,
73215
- "png",
73216
- "qx"
73217
- ],
73218
73261
  "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
73219
73262
  null,
73220
73263
  null,
@@ -73233,67 +73276,61 @@ qx.$$packageData['0'] = {
73233
73276
  "tmpl",
73234
73277
  "qx"
73235
73278
  ],
73236
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73279
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73237
73280
  null,
73238
73281
  null,
73239
73282
  "js",
73240
73283
  "qx"
73241
73284
  ],
73242
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73285
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73243
73286
  null,
73244
73287
  null,
73245
73288
  "js",
73246
73289
  "qx"
73247
73290
  ],
73248
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73291
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73249
73292
  null,
73250
73293
  null,
73251
73294
  "js",
73252
73295
  "qx"
73253
73296
  ],
73254
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73255
- null,
73256
- null,
73257
- "tmpl",
73258
- "qx"
73259
- ],
73260
- "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73297
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73261
73298
  null,
73262
73299
  null,
73263
73300
  "js",
73264
73301
  "qx"
73265
73302
  ],
73266
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73303
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
73267
73304
  null,
73268
73305
  null,
73269
73306
  "js",
73270
73307
  "qx"
73271
73308
  ],
73272
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73309
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
73273
73310
  null,
73274
73311
  null,
73275
73312
  "js",
73276
73313
  "qx"
73277
73314
  ],
73278
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73315
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73279
73316
  null,
73280
73317
  null,
73281
- "js",
73318
+ "tmpl",
73282
73319
  "qx"
73283
73320
  ],
73284
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73321
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73285
73322
  null,
73286
73323
  null,
73287
73324
  "js",
73288
73325
  "qx"
73289
73326
  ],
73290
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73327
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73291
73328
  null,
73292
73329
  null,
73293
73330
  "js",
73294
73331
  "qx"
73295
73332
  ],
73296
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73333
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73297
73334
  null,
73298
73335
  null,
73299
73336
  "js",
@@ -73311,37 +73348,43 @@ qx.$$packageData['0'] = {
73311
73348
  "scss",
73312
73349
  "qx"
73313
73350
  ],
73314
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73351
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73315
73352
  null,
73316
73353
  null,
73317
73354
  "js",
73318
73355
  "qx"
73319
73356
  ],
73320
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73357
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73321
73358
  null,
73322
73359
  null,
73323
73360
  "js",
73324
73361
  "qx"
73325
73362
  ],
73326
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73363
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73327
73364
  null,
73328
73365
  null,
73329
73366
  "js",
73330
73367
  "qx"
73331
73368
  ],
73332
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73369
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73333
73370
  null,
73334
73371
  null,
73335
73372
  "js",
73336
73373
  "qx"
73337
73374
  ],
73338
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
73375
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73339
73376
  null,
73340
73377
  null,
73341
73378
  "js",
73342
73379
  "qx"
73343
73380
  ],
73344
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
73381
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73382
+ null,
73383
+ null,
73384
+ "js",
73385
+ "qx"
73386
+ ],
73387
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73345
73388
  null,
73346
73389
  null,
73347
73390
  "js",