Skip to content

Commit

Permalink
Release 9.0.1 (#287)
Browse files Browse the repository at this point in the history
* Release 9.0.1
  • Loading branch information
Przemysław authored Jul 10, 2020
1 parent ed963e6 commit 4002798
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Intercom for Cordova/PhoneGap

## 9.0.1 (2020-07-08)

The Intercom Cordova plugin has been updated to use v7.1.1 of the iOS and Android SDK. We fixed a number of bugs in this release:

* Android:
* **Fixed:** An issue where buttons on the Messenger conversation card were not fully visible on small devices.
* **Fixed:** An issue where the conversation header wasn’t updates after a teammate reply.
* iOS:
* **Improved:** If your app does not request location permissions, you will no longer have to add a location permission string to your PList when using the Intercom iOS SDK.

## 9.0.0 (2020-06-17)
**v9.0.0 of the Cordova plugin supports the latest version (7.1.0) of the Intercom mobile SDK. We’re introducing a fantastic new mobile engagement feature called Mobile Carousels. We’ve also added support for closed conversations, as well as a number of fixes and performance improvements.**

Expand Down
3 changes: 1 addition & 2 deletions Example/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="deployment-target" value="10.0" />
<preference name="deployment-target" value="11.0" />
<preference name="BackupWebStorage" value="local" />
<icon height="29" src="www/img/icon-29.png" width="29" />
<icon height="58" src="www/img/[email protected]" width="58" />
Expand All @@ -40,7 +40,6 @@
<icon height="40" src="www/img/icon-40.png" width="40" />
<icon height="80" src="www/img/[email protected]" width="80" />
<icon height="167" src="www/img/[email protected]" width="167" />
<splash src="www/img/launch/Default@2x~universal~anyany.png" />
</platform>
<preference name="intercom-app-id" value="YOUR_APP_ID" />
<preference name="intercom-ios-api-key" value="YOUR_IOS_API_KEY" />
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cordova plugin add cordova-plugin-intercom

To add the plugin to your PhoneGap app, add the following to your `config.xml`:
```xml
<plugin name="cordova-plugin-intercom" version="~9.0.0" />
<plugin name="cordova-plugin-intercom" version="~9.0.1" />
```

## Example App
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
name: Publish to npm
command: |
echo -e "$NPM_USER\n$NPM_PASSWORD\n$NPM_EMAIL"
npm install -g npm-cli-login
sudo npm install -g npm-cli-login
npm-cli-login -u $NPM_USER -p $NPM_PASSWORD -e $NPM_EMAIL
cd intercom-plugin && npm publish
Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intercom",
"version": "9.0.0",
"version": "9.0.1",
"description": "Official Cordova/PhoneGap plugin for Intercom",
"cordova": {
"id": "cordova-plugin-intercom",
Expand Down
4 changes: 2 additions & 2 deletions intercom-plugin/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-intercom" version="9.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-intercom" version="9.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Intercom</name>
<author>Intercom</author>
<license>MIT License</license>
Expand Down Expand Up @@ -47,7 +47,7 @@
</array>
</config-file>

<framework src="Intercom" type="podspec" spec="~> 7.1.0" />
<framework src="Intercom" type="podspec" spec="~> 7.1.1" />
</platform>

<platform name="android">
Expand Down
4 changes: 2 additions & 2 deletions intercom-plugin/src/android/intercom.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ repositories {
}

dependencies {
implementation 'io.intercom.android:intercom-sdk-base:7.1.0'
implementation 'io.intercom.android:intercom-sdk-base:7.1.1'
if (pushType == 'fcm' || pushType == 'fcm-without-build-plugin') {
implementation 'com.google.firebase:firebase-messaging:17.+'
implementation 'io.intercom.android:intercom-sdk-fcm:7.1.0'
implementation 'io.intercom.android:intercom-sdk-fcm:7.1.1'
}
}

Expand Down

0 comments on commit 4002798

Please sign in to comment.