tabris 3.9.0-dev.20230630 → 3.9.0-dev.20230702

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/README.md CHANGED
@@ -36,12 +36,12 @@ The code of the application is loaded dynamically - nothing is precompiled. Java
36
36
 
37
37
  ## Getting started
38
38
 
39
- To start developing Tabris.js applications, visit [tabrisjs.com](http://tabrisjs.com) and check out the "[Getting Started](https://tabrisjs.com/documentation/latest/getting-started)" guide in the documentation. Be sure to also consult the code [snippets](https://github.com/eclipsesource/tabris-js/tree/master/snippets) in the Tabris.js Developer App (download from the app store for [Android](https://play.google.com/store/apps/details?id=com.eclipsesource.tabrisjs2) and [iOS](https://itunes.apple.com/us/app/tabris.js-2/id1166468326?mt=8)).
39
+ To start developing Tabris.js applications, visit [tabrisjs.com](http://tabrisjs.com) and check out the "[Getting Started](https://tabrisjs.com/documentation/latest/getting-started)" guide in the documentation. Be sure to also consult the code [snippets](https://github.com/eclipsesource/tabris-js/tree/master/snippets) in the Tabris.js Developer App (download from the app store for [Android](https://play.google.com/store/apps/details?id=com.eclipsesource.tabrisjs) and [iOS](https://apps.apple.com/us/app/tabris-js/id939600018)).
40
40
 
41
41
  ## Extensible
42
42
 
43
43
  Tabris.js can be extended with [Cordova plugins](https://cordova.apache.org/plugins/) to add support for additional native features. A cordova plugin is also able to directly interface with the native widgets (as can be seen e.g. in the [tabris-plugin-maps](https://github.com/eclipsesource/tabris-plugin-maps)).
44
-
44
+
45
45
  Additionally [npm modules](https://www.npmjs.com/) can be used to further enrich the available JS APIs.
46
46
 
47
47
  Tabris.js also adds support for many key web technologies including:
@@ -50,12 +50,6 @@ Tabris.js also adds support for many key web technologies including:
50
50
  - _WebSockets_
51
51
  - _localStorage_
52
52
 
53
-
54
- ## Online build
55
-
56
- To package your source into a installable app, Tabris.js features an online [build service](https://tabrisjs.com/documentation/latest/build). There is no need to download a huge SDK or use specific hardware for development (e.g. a Mac machine to build for iOS). A [local build](https://tabrisjs.com/documentation/latest/local-build) is also available as an option if more customization is needed.
57
-
58
-
59
53
  ## Build tabris npm module
60
54
 
61
55
  Follow these steps if you want to build the tabris module yourself.
package/boot.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Tabris.js 3.9.0-dev.20230630+0310
2
+ * Tabris.js 3.9.0-dev.20230702+0311
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.20230630+0310",
3
+ "version": "3.9.0-dev.20230702+0311",
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.20230630+0310
1
+ // Type definitions for Tabris.js 3.9.0-dev.20230702+0311
2
2
  /// <reference path="globals.d.ts" />
3
3
 
4
4
  // General helper types
package/tabris.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Tabris.js 3.9.0-dev.20230630+0310
2
+ * Tabris.js 3.9.0-dev.20230702+0311
3
3
  *
4
4
  * Copyright (c) 2014, 2020 EclipseSource Inc.
5
5
  * All rights reserved.
@@ -5034,7 +5034,7 @@ class Tabris extends NativeObject {
5034
5034
  this.$publishProxies();
5035
5035
  }
5036
5036
  get version() {
5037
- return '3.9.0-dev.20230630+0310';
5037
+ return '3.9.0-dev.20230702+0311';
5038
5038
  }
5039
5039
  get started() {
5040
5040
  return !!this._started;