tabris 3.9.0-dev.20220621 → 3.9.0-dev.20220622

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/boot.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Tabris.js 3.9.0-dev.20220621+0310
2
+ * Tabris.js 3.9.0-dev.20220622+0310
3
3
  *
4
4
  * Copyright (c) 2014, 2020 EclipseSource Inc.
5
5
  * All rights reserved.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabris",
3
- "version": "3.9.0-dev.20220621+0310",
3
+ "version": "3.9.0-dev.20220622+0310",
4
4
  "description": "Mobile apps with native UIs in JavaScript",
5
5
  "keywords": [
6
6
  "native",
package/tabris.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Type definitions for Tabris.js 3.9.0-dev.20220621+0310
1
+ // Type definitions for Tabris.js 3.9.0-dev.20220622+0310
2
2
  /// <reference path="globals.d.ts" />
3
3
 
4
4
  // General helper types
@@ -8522,8 +8522,8 @@ export class FileSystem extends NativeObject {
8522
8522
  removeDir(path: string): Promise<void>;
8523
8523
 
8524
8524
  /**
8525
- * Removes the given file if it exists. Returns a promise that resolves with `true` on success or with
8526
- * `false` if no directory exists at that path. If the path points to a directory the promise rejects.
8525
+ * Removes the given file if it exists. Returns a promise that resolves on success or rejects if no file
8526
+ * exists at that path. If the path points to a directory the promise also rejects.
8527
8527
  * @param path The path of the file to remove.
8528
8528
  */
8529
8529
  removeFile(path: string): Promise<void>;
package/tabris.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Tabris.js 3.9.0-dev.20220621+0310
2
+ * Tabris.js 3.9.0-dev.20220622+0310
3
3
  *
4
4
  * Copyright (c) 2014, 2020 EclipseSource Inc.
5
5
  * All rights reserved.
@@ -5026,7 +5026,7 @@ class Tabris extends NativeObject {
5026
5026
  this.$publishProxies();
5027
5027
  }
5028
5028
  get version() {
5029
- return '3.9.0-dev.20220621+0310';
5029
+ return '3.9.0-dev.20220622+0310';
5030
5030
  }
5031
5031
  get started() {
5032
5032
  return !!this._started;