Skip to content

Commit

Permalink
Release 14.0.1 (#333)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Br1an-Boyle authored Jun 14, 2024
1 parent 1635fa7 commit 9498ca7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Intercom for Cordova/PhoneGap

## 14.0.1 (2024-06-014)

πŸš€ 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)

## 14.0.0 (2024-06-05)
πŸš€ Enhancements
* Updated Intercom Cordova Plugin to support the latest versions of the core iOS and Android SDKs.
Expand Down
4 changes: 2 additions & 2 deletions intercom-plugin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "14.0.0",
"version": "14.0.1",
"description": "Official Cordova plugin for Intercom",
"author": "Intercom",
"license": "MIT License",
Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="Intercom" spec="~> 17.1.1" />
<pod name="Intercom" spec="~> 17.1.2" />
</pods>
</podspec>
</platform>
Expand Down
4 changes: 2 additions & 2 deletions intercom-plugin/scripts/prepareCocoaPods.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ module.exports = function() {

var deferral = new q.defer();

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

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 @@ -32,14 +32,14 @@ repositories {
}

dependencies {
implementation 'io.intercom.android:intercom-sdk-base:15.9.0'
implementation 'io.intercom.android:intercom-sdk-base:15.9.1'
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:15.9.0'
implementation 'io.intercom.android:intercom-sdk-fcm:15.9.1'
}
}

Expand Down

0 comments on commit 9498ca7

Please sign in to comment.