Skip to content

Commit

Permalink
Version 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jtreanor committed Aug 5, 2015
1 parent 7f24f4a commit 5ef90be
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
= 1.0.7 (2015-08-05)

* Updated Intercom for iOS to [2.3.2](https://github.com/intercom/intercom-ios/blob/master/CHANGES).

= 1.0.6 (2015-07-28)

* Updated Intercom for Android to [1.1.3](https://github.com/intercom/intercom-android/blob/master/CHANGELOG.md)
* Updated Intercom for Android to [1.1.3](https://github.com/intercom/intercom-android/blob/master/CHANGELOG.md).

= 1.0.5 (2015-07-20)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If your app doesn't support iOS or Android, you can omit that API key.

To add the plugin to your PhoneGap app, add the following to your `config.xml`:

<gap:plugin name="cordova-plugin-intercom" version="1.0.6" source="npm" >
<gap:plugin name="cordova-plugin-intercom" version="1.0.7" source="npm" >
<param name="APP_ID" value="your_app_id" />
<param name="IOS_API_KEY" value="ios_sdk-..." />
<param name="ANDROID_API_KEY" value="android_sdk-..." />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intercom",
"version": "1.0.6",
"version": "1.0.7",
"description": "Cordova plugin for Intercom for mobile",
"cordova": {
"id": "cordova-plugin-intercom",
Expand Down
2 changes: 1 addition & 1 deletion 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="1.0.6" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-intercom" version="1.0.7" 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
2 changes: 1 addition & 1 deletion src/android/IntercomBridge.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private void setUpIntercom() {
try {
Context context = IntercomBridge.this.cordova.getActivity().getApplicationContext();

HeaderInterceptor.setCordovaVersion(context, "1.0.6");
HeaderInterceptor.setCordovaVersion(context, "1.0.7");

ApplicationInfo app = context.getPackageManager().getApplicationInfo(context.getPackageName(), PackageManager.GET_META_DATA);
Bundle bundle = app.metaData;
Expand Down
4 changes: 2 additions & 2 deletions src/ios/Intercom.framework/Versions/A/Headers/Intercom.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

//
// Intercom.h
// Intercom for iOS - Version 2.3.1
// Intercom for iOS - Version 2.3.2
//
// Created by Intercom on 8/01/2015.
// Copyright (c) 2014 Intercom. All rights reserved.
Expand All @@ -11,7 +11,7 @@
#import <UIKit/UIKit.h>

#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_7_0
#error This version (2.3.1) of Intercom for iOS supports iOS 7.0 upwards.
#error This version (2.3.2) of Intercom for iOS supports iOS 7.0 upwards.
#endif

#if __has_feature(nullability)
Expand Down
Binary file modified src/ios/Intercom.framework/Versions/A/Intercom
Binary file not shown.
2 changes: 1 addition & 1 deletion src/ios/IntercomBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ + (void)setCordovaVersion:(NSString *)v;
@implementation IntercomBridge : CDVPlugin

- (void)pluginInitialize {
[Intercom setCordovaVersion:@"1.0.6"];
[Intercom setCordovaVersion:@"1.0.7"];
#ifdef DEBUG
[Intercom enableLogging];
#endif
Expand Down

0 comments on commit 5ef90be

Please sign in to comment.