Skip to content

Commit 5eb904e

Browse files
committed
Update plugin version to 3.0.0
The 3.x stream is only compatible with Tabris.js 3.x.
1 parent f3d12c5 commit 5eb904e

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change Log
22
==========
33

4+
## Version 3.0.0
5+
6+
* Minimum required Tabris.js version is 3.x
7+
48
## Version 2.0.0
59

610
* Make plugin compatible with Tabris.js 2.2.0+.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ The Tabris.js website provides detailed information on how to [integrate custom
1313
The plugin should be added as an entry in the apps `config.xml` file:
1414

1515
```xml
16-
<plugin name="tabris-plugin-firebase" spec="^2.0.0" />
16+
<!-- Not yet on npm -->
17+
<plugin name="tabris-plugin-firebase" spec="^3.0.0" />
1718
```
1819

1920
To fetch the latest development version use the GitHub url:

doc/cloud-messaging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ resource id of an Android drawable can be specified. The `<resource-file />` cor
4646
The icon can be configured inside your apps `config.xml`:
4747

4848
```xml
49-
<plugin name="tabris-plugin-firebase" spec="^2.0.0">
49+
<plugin name="tabris-plugin-firebase" spec="3.x">
5050
<variable name="ANDROID_NOTIFICATION_ICON" value="@drawable/ic_notification" />
5151
</plugin>
5252

example/cordova/config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version='1.0' encoding='utf-8'?>
22
<widget xmlns="http://www.w3.org/ns/widgets"
33
id="com.eclipsesource.tabris.firebase.example"
4-
version="2.0.0">
5-
<name>Tabris.js Firebase Plugin Example</name>
4+
version="3.0.0">
5+
<name>Firebase Plugin Example for Tabris.js</name>
66
<description>Examples for the Tabris.js firebase plugin.</description>
77
<author email="[email protected]" href="https://tabrisjs.com">EclipseSource</author>
88

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "tabris-plugin-firebase",
3-
"version": "2.0.0",
3+
"version": "3.0.0",
44
"description": "A firebase plugin for Tabris.js",
55
"types": "./types/index.d.ts",
66
"peerDependencies": {
7-
"tabris": "~2.5.1"
7+
"tabris": "3.0.x"
88
},
99
"cordova": {
1010
"id": "tabris-plugin-firebase",
@@ -25,12 +25,13 @@
2525
"tabris.js",
2626
"firebase"
2727
],
28-
"engines": [
29-
{
30-
"name": "cordova",
31-
"version": ">=3.8.0"
28+
"engines": {
29+
"cordovaDependencies": {
30+
"1.0.0": { "cordova-android": "<6.0.0"},
31+
"2.0.0": { "cordova-android": "<8.0.0"},
32+
"3.0.0": { "cordova-android": ">=8.0.0"}
3233
}
33-
],
34+
},
3435
"author": "EclipseSource",
3536
"license": "Revised BSD License (3-clause license)",
3637
"bugs": {

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="tabris-plugin-firebase"
5-
version="2.0.0">
5+
version="3.0.0">
66

77
<name>Tabris.js Firebase Plugin</name>
88
<description>A firebase for Tabris.js. The plugin allows to handle cloud messages.</description>

0 commit comments

Comments
 (0)