From 005831a8e267163e97ad83e221fa7b1e4c1f36b4 Mon Sep 17 00:00:00 2001 From: Katherine Brennan Date: Wed, 29 Sep 2021 16:23:22 +0100 Subject: [PATCH] release 10.2.0 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- intercom-plugin/package.json | 2 +- intercom-plugin/plugin.xml | 4 ++-- intercom-plugin/src/android/IntercomBridge.java | 2 +- intercom-plugin/src/android/intercom.gradle | 4 ++-- intercom-plugin/src/ios/IntercomBridge.m | 2 +- 7 files changed, 23 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b23641c..b00c0ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Intercom for Cordova/PhoneGap +## 10.2.0 (2021-09-28) +* The Intercom Cordova plugin has been updated to use the latest version of the Intercom iOS (v10.3.0) and Android SDK (v10.2.0) + +Reduce customer inquiries for your team and provide faster resolutions for your customers – without sacrificing a great experience. We’ve redesigned our Messenger with an integrated help center experience that increases customer engagement by up to 3x to help you deliver the best self-serve support. + +##### Enhancements +* A new article search card on your Messenger’s home screen. +* There are now two conversation cards, just as with our web Messenger; one for existing and one for new conversations. This gives more emphasis to existing conversations, reducing the chance of duplicates being created. +* Optionally require specific customers to attempt to self-serve to answer their question before they can reach out to a teammate. +* Place the article search card at the top of the Messenger home screen to give your self-serve content more prominence. +* Uncover insights and opportunities to optimize your self-serve support by using our updated Articles reporting. +* A number of improvements for accessibility features in the Messenger, with more coming in future updates. +* If you’ve set a custom icon for the Intercom launcher, that icon will now be used in your app as well. +* Support for iOS 15 is also included in this release. + ## 10.1.1 (2021-09-14) * Include dependencies needed to make the Android version build diff --git a/README.md b/README.md index 766bdec..a83dede 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/intercom-plugin/package.json b/intercom-plugin/package.json index 69a40cb..7056070 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-intercom", - "version": "10.1.1", + "version": "10.2.0", "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 a3f5cd7..109bc4e 100644 --- a/intercom-plugin/plugin.xml +++ b/intercom-plugin/plugin.xml @@ -1,5 +1,5 @@ - + Intercom Intercom MIT License @@ -62,7 +62,7 @@ - + diff --git a/intercom-plugin/src/android/IntercomBridge.java b/intercom-plugin/src/android/IntercomBridge.java index 6b48b80..9a64a3f 100644 --- a/intercom-plugin/src/android/IntercomBridge.java +++ b/intercom-plugin/src/android/IntercomBridge.java @@ -70,7 +70,7 @@ private void setUpIntercom() { try { Context context = cordova.getActivity().getApplicationContext(); - CordovaHeaderInterceptor.setCordovaVersion(context, "10.1.1"); + CordovaHeaderInterceptor.setCordovaVersion(context, "10.2.0"); switch (IntercomPushManager.getInstalledModuleType()) { case FCM: { diff --git a/intercom-plugin/src/android/intercom.gradle b/intercom-plugin/src/android/intercom.gradle index 876a86c..9236699 100644 --- a/intercom-plugin/src/android/intercom.gradle +++ b/intercom-plugin/src/android/intercom.gradle @@ -28,14 +28,14 @@ repositories { } dependencies { - implementation 'io.intercom.android:intercom-sdk-base:10.+' + implementation 'io.intercom.android:intercom-sdk-base:10.2.+' implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.intercom:twig:1.3.0' implementation 'org.jetbrains:annotations:13.0' implementation 'com.squareup.okhttp3:okhttp:4.9.0' if (pushType == 'fcm' || pushType == 'fcm-without-build-plugin') { implementation 'com.google.firebase:firebase-messaging:20.+' - implementation 'io.intercom.android:intercom-sdk-fcm:10.+' + implementation 'io.intercom.android:intercom-sdk-fcm:10.2.+' } } diff --git a/intercom-plugin/src/ios/IntercomBridge.m b/intercom-plugin/src/ios/IntercomBridge.m index ccfb2f0..55010f8 100644 --- a/intercom-plugin/src/ios/IntercomBridge.m +++ b/intercom-plugin/src/ios/IntercomBridge.m @@ -12,7 +12,7 @@ + (void)setCordovaVersion:(NSString *)v; @implementation IntercomBridge : CDVPlugin - (void)pluginInitialize { - [Intercom setCordovaVersion:@"10.1.1"]; + [Intercom setCordovaVersion:@"10.2.0"]; #ifdef DEBUG [Intercom enableLogging]; #endif