From 40027984d77558d8704ff1c783be721dc972a6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw?= Date: Fri, 10 Jul 2020 10:49:39 +0200 Subject: [PATCH] Release 9.0.1 (#287) * Release 9.0.1 --- CHANGELOG.md | 10 ++++++++++ Example/config.xml | 3 +-- README.md | 2 +- circle.yml | 2 +- intercom-plugin/package.json | 2 +- intercom-plugin/plugin.xml | 4 ++-- intercom-plugin/src/android/intercom.gradle | 4 ++-- 7 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 143bfe9..5b65b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.** diff --git a/Example/config.xml b/Example/config.xml index 5af5aa4..b9df773 100644 --- a/Example/config.xml +++ b/Example/config.xml @@ -27,7 +27,7 @@ - + @@ -40,7 +40,6 @@ - diff --git a/README.md b/README.md index 18a7ca3..87ce6d5 100644 --- a/README.md +++ b/README.md @@ -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 - + ``` ## Example App diff --git a/circle.yml b/circle.yml index 0710902..9bbfcae 100644 --- a/circle.yml +++ b/circle.yml @@ -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 diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json index faaf89b..5e89093 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -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", diff --git a/intercom-plugin/plugin.xml b/intercom-plugin/plugin.xml index b3af499..d682966 100644 --- a/intercom-plugin/plugin.xml +++ b/intercom-plugin/plugin.xml @@ -1,5 +1,5 @@ - + Intercom Intercom MIT License @@ -47,7 +47,7 @@ - + diff --git a/intercom-plugin/src/android/intercom.gradle b/intercom-plugin/src/android/intercom.gradle index b85de2f..5fe424d 100644 --- a/intercom-plugin/src/android/intercom.gradle +++ b/intercom-plugin/src/android/intercom.gradle @@ -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' } }