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 +2 -8
- package/boot.js +1 -1
- package/package.json +1 -1
- package/tabris.d.ts +1 -1
- package/tabris.js +2 -2
- package/tabris.min.js +1 -1
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.
|
|
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
package/package.json
CHANGED
package/tabris.d.ts
CHANGED
package/tabris.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Tabris.js 3.9.0-dev.
|
|
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.
|
|
5037
|
+
return '3.9.0-dev.20230702+0311';
|
|
5038
5038
|
}
|
|
5039
5039
|
get started() {
|
|
5040
5040
|
return !!this._started;
|