Skip to content

Commit cc7e35f

Browse files
committed
Version 3.0.10
1 parent d91f0f9 commit cc7e35f

File tree

10 files changed

+25
-17
lines changed

10 files changed

+25
-17
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Intercom
22

3+
## 3.0.10 (2016-08-15)
4+
5+
* Removed requirement for `use_frameworks!` when installing via CocoaPods.
6+
* Added support for APNS development push notifications. This removes the requirement to test Intercom push notifications with a production/Adhoc build.
7+
* Fixed issue where images couldn't be uploaded on iPad in landscape.
8+
* Fixed a formatting issue when sending a reply from the messenger.
9+
310
## 3.0.9 (2016-08-08)
411

512
* Fixed issue where the Intercom may not hand back the key window correctly when closed ([#160](https://github.com/intercom/intercom-ios/issues/160)).

Intercom.framework.dSYM/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleSignature</key>
1414
<string>????</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>3.0.9</string>
16+
<string>3.0.10</string>
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
</dict>
22.1 KB
Binary file not shown.

Intercom.framework/Headers/Intercom.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// Intercom.h
3-
// Intercom for iOS - Version 3.0.9
3+
// Intercom for iOS - Version 3.0.10
44
//
55
// Created by Intercom on 8/01/2015.
66
// Copyright (c) 2014 Intercom. All rights reserved.
@@ -10,7 +10,7 @@
1010
#import <UIKit/UIKit.h>
1111

1212
#if __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0
13-
#error This version (3.0.9) of Intercom for iOS supports iOS 8.0 upwards.
13+
#error This version (3.0.10) of Intercom for iOS supports iOS 8.0 upwards.
1414
#endif
1515

1616
NS_ASSUME_NONNULL_BEGIN

Intercom.framework/Info.plist

1 Byte
Binary file not shown.

Intercom.framework/Intercom

66.6 KB
Binary file not shown.

Intercom.framework/Modules/module.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ framework module Intercom {
1010
link framework "Foundation"
1111
link framework "UIKit"
1212
link framework "Accelerate"
13-
link framework "AssetsLibrary"
13+
link framework "Photos"
1414
link framework "AudioToolbox"
1515
link framework "CFNetwork"
1616
link framework "CoreGraphics"

Intercom.framework/_CodeSignature/CodeResources

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<dict>
77
<key>Headers/Intercom.h</key>
88
<data>
9-
6yZL6ifyyNWod3gl+SldJ8hJ7zw=
9+
fJCoAStfKkoTJereELuLdrlhBYc=
1010
</data>
1111
<key>Info.plist</key>
1212
<data>
13-
5+gfuq0uUW6n5sJCQ/6ympr7DCk=
13+
KBHZAlB3NC+ZujkQJlZGqv9/b8E=
1414
</data>
1515
<key>Intercom.bundle/certs/intercom.icmcer</key>
1616
<data>
@@ -366,7 +366,7 @@
366366
</data>
367367
<key>Modules/module.modulemap</key>
368368
<data>
369-
JPlFGakHLQ0QJkcgeitN/+/6wG4=
369+
jak3DWVUfMcXlAofL8E0VyEuzL4=
370370
</data>
371371
<key>strip-frameworks.sh</key>
372372
<data>
@@ -379,11 +379,11 @@
379379
<dict>
380380
<key>hash</key>
381381
<data>
382-
6yZL6ifyyNWod3gl+SldJ8hJ7zw=
382+
fJCoAStfKkoTJereELuLdrlhBYc=
383383
</data>
384384
<key>hash2</key>
385385
<data>
386-
GLi/CLFawFLQ6wpFc63TgO8dbOyURjkL8TXGm/lhbK8=
386+
26V9JaUXrC8HhGckrLz1jOkHhAsrnZIRDCMim3ecBbM=
387387
</data>
388388
</dict>
389389
<key>Intercom.bundle/certs/intercom.icmcer</key>
@@ -1358,11 +1358,11 @@
13581358
<dict>
13591359
<key>hash</key>
13601360
<data>
1361-
JPlFGakHLQ0QJkcgeitN/+/6wG4=
1361+
jak3DWVUfMcXlAofL8E0VyEuzL4=
13621362
</data>
13631363
<key>hash2</key>
13641364
<data>
1365-
vhOWdfCphcFFNp/REdCdQu+cNaimq+K3PKOrOIibwT8=
1365+
xyBdMYI40S/N+RygCZDCaHWTOqnoyWYsAMC3St6aWnU=
13661366
</data>
13671367
</dict>
13681368
<key>strip-frameworks.sh</key>

Intercom.podspec

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
Pod::Spec.new do |s|
22
s.name = 'Intercom'
3-
s.version = '3.0.9'
3+
s.version = '3.0.10'
44
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
5-
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
5+
s.license = { :type => "Apache 2.0", :file => "Intercom/LICENSE" }
66
s.authors = {"Adam McCarthy"=>"[email protected]", "Brian Boyle"=>"[email protected]", "Conor O’Donnell"=>"[email protected]", "James Treanor"=>"[email protected]"}
77
s.homepage = 'https://github.com/intercom/intercom-ios'
88
s.description = 'The Intercom iOS SDK, for integrating Intercom into your iOS application. The SDK supports iOS 8 and iOS 9.'
99
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate"]
1010
s.library = "icucore", "xml2"
1111
s.requires_arc = true
12-
s.source = { :git => 'https://github.com/intercom/intercom-ios.git', :tag => s.version.to_s }
12+
s.source = { :http => "https://github.com/intercom/intercom-ios/releases/download/#{s.version}/CocoaPods.zip" }
1313
s.platform = :ios, '8.0'
14-
s.vendored_frameworks = 'Intercom.framework'
14+
s.preserve_paths = 'Intercom/Intercom.framework'
15+
s.public_header_files = 'Intercom/Intercom.framework/Versions/A/Headers/Intercom.h'
16+
s.resource = 'Intercom/Intercom.framework/Versions/A/Resources/Intercom.bundle'
17+
s.vendored_frameworks = 'Intercom/Intercom.framework'
1518
end

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Intercom for iOS supports iOS 8.x and iOS 9.x.
1414
### CocoaPods
1515
Add the Intercom pod into your Podfile and run `pod install`.
1616

17-
use_frameworks!
18-
1917
target :YourTargetName do
2018
pod 'Intercom'
2119
end

0 commit comments

Comments
 (0)