Skip to content

Commit 9498ca7

Browse files
authored
Release 14.0.1 (#333)
* Release 14.0.1 πŸš€ Enhancements * It is now possible to send push notifications to the Simulator. (iOS) πŸ› Bug Fixes * Fixed an issue where it was not possible to close modal view that was opened from a Messenger App. (iOS) * The message composer is now always displayed on the conversation screen when appropriate.(iOS) * When a conversation is closed, form entry is disabled on the conversation screen. (iOS & Android) * Made some minor UI bug fixes. (iOS) * Fixed the issue where push open stats weren’t tracked correctly. (Android) * Update prepareCocoaPods.js * Update prepareCocoaPods.js
1 parent 1635fa7 commit 9498ca7

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Intercom for Cordova/PhoneGap
22

3+
## 14.0.1 (2024-06-014)
4+
5+
πŸš€ Enhancements
6+
* It is now possible to send push notifications to the Simulator. (iOS)
7+
8+
πŸ› Bug Fixes
9+
* Fixed an issue where it was not possible to close modal view that was opened from a Messenger App. (iOS)
10+
* The message composer is now always displayed on the conversation screen when appropriate.(iOS)
11+
* When a conversation is closed, form entry is disabled on the conversation screen. (iOS & Android)
12+
* Made some minor UI bug fixes. (iOS)
13+
* Fixed the issue where push open stats weren’t tracked correctly. (Android)
14+
315
## 14.0.0 (2024-06-05)
416
πŸš€ Enhancements
517
* Updated Intercom Cordova Plugin to support the latest versions of the core iOS and Android SDKs.

β€Žintercom-plugin/package-lock.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žintercom-plugin/package.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-intercom",
3-
"version": "14.0.0",
3+
"version": "14.0.1",
44
"description": "Official Cordova plugin for Intercom",
55
"author": "Intercom",
66
"license": "MIT License",

β€Žintercom-plugin/plugin.xmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<source url="https://cdn.cocoapods.org/"/>
6969
</config>
7070
<pods use-frameworks="true">
71-
<pod name="Intercom" spec="~> 17.1.1" />
71+
<pod name="Intercom" spec="~> 17.1.2" />
7272
</pods>
7373
</podspec>
7474
</platform>

β€Žintercom-plugin/scripts/prepareCocoaPods.jsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ module.exports = function() {
44

55
var deferral = new q.defer();
66

7-
console.log('Updating CocoaPods specs repo');
8-
exec('pod repo update master', function(error, stdout, stderr) {
7+
console.log('Fetching latest CocoaPods specs repo ');
8+
exec('pod repo update --verbose', function(error, stdout, stderr) {
99
deferral.resolve();
1010
});
1111

β€Žintercom-plugin/src/android/intercom.gradleβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ repositories {
3232
}
3333

3434
dependencies {
35-
implementation 'io.intercom.android:intercom-sdk-base:15.9.0'
35+
implementation 'io.intercom.android:intercom-sdk-base:15.9.1'
3636
implementation 'com.google.code.gson:gson:2.8.6'
3737
implementation 'com.intercom:twig:1.3.0'
3838
implementation 'org.jetbrains:annotations:13.0'
3939
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
4040
if (pushType == 'fcm' || pushType == 'fcm-without-build-plugin') {
4141
implementation 'com.google.firebase:firebase-messaging:20.+'
42-
implementation 'io.intercom.android:intercom-sdk-fcm:15.9.0'
42+
implementation 'io.intercom.android:intercom-sdk-fcm:15.9.1'
4343
}
4444
}
4545

0 commit comments

Comments
Β (0)