Skip to content

Commit

Permalink
Release 14.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
intercom-ios-release-robot committed Apr 4, 2023
1 parent e93b746 commit f994f1f
Show file tree
Hide file tree
Showing 110 changed files with 85 additions and 16 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 14.1.0
###### Release Date: 04-04-2023

### 🐛 Bug Fixes
* Fixed an issue which caused a crash when dismissing Surves on iPad.

### 🚀 Enhancements
* New Feature: Attach Files to Tickets - End users can now upload files when submitting Tickets in the Messenger.
* New Feature: End users can now navigate through articles on your collections and sub collections (up to 3 levels deep).
* The Messenger now opens to 100% height when the Home space is disabled in Messenger settings.

## 14.0.7
###### Release Date: 03-02-2023

Expand Down
2 changes: 1 addition & 1 deletion Intercom.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Intercom'
s.version = '14.0.7'
s.version = '14.1.0'
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
s.authors = {"Brian Boyle"=>"[email protected]", "Mike McNamara"=>"[email protected]", "Katherine Brennan"=>"[email protected]", "Himanshi Goyal"=>"[email protected]", "Niamh Coleman"=>"[email protected]"}
Expand Down
10 changes: 5 additions & 5 deletions Intercom.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Intercom.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Intercom.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,21 @@ NS_SWIFT_NAME(HelpCenterCollection)
*/
@property (nonatomic, assign) NSInteger articleCount;

/**
The number of collection inside this collection.
*/
@property (nonatomic, assign) NSInteger collectionCount;

- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articleCount:(NSInteger)articleCount DEPRECATED_MSG_ATTRIBUTE("'-initWithCollectionId:title:summary:articleCount:' intializer is deprecated and will be removed in a future release. Use '-initWithCollectionId:title:summary:articleCount:collectionCount:' instead.");

- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articleCount:(NSInteger)articleCount;
articleCount:(NSInteger)articleCount
collectionCount:(NSInteger)collectionCount;

@end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#import <Foundation/Foundation.h>
@class ICMHelpCenterArticle;
@class ICMHelpCenterSection;
@class ICMHelpCenterCollection;
@class ICMHelpCenterArticleAuthor;

NS_ASSUME_NONNULL_BEGIN
Expand Down Expand Up @@ -45,21 +46,38 @@ NS_SWIFT_NAME(HelpCenterCollectionContent)
@property (nonatomic, assign) NSInteger articleCount;

/**
@deprecated
The sections contained in this collection.
*/
@property (nonatomic, strong) NSArray<ICMHelpCenterSection *> *sections;
@property (nonatomic, strong) NSArray<ICMHelpCenterSection *> *sections DEPRECATED_MSG_ATTRIBUTE("'sections' property is deprecated and will be removed in a future release. Use 'collections' instead.");

/**
The collections contained inside this collection.
*/
@property (nonatomic, strong) NSArray<ICMHelpCenterCollection *> *collections;

/**
The authors of articles in this collection.
*/
@property (nonatomic, copy) NSArray<ICMHelpCenterArticleAuthor *> *authors;

/**
@deprecated
*/
- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articles:(NSArray<ICMHelpCenterArticle *> *)articles
articleCount:(NSInteger)articleCount
sections:(NSArray<ICMHelpCenterSection *> *)sections
authors:(NSArray<ICMHelpCenterArticleAuthor *> *)authors DEPRECATED_MSG_ATTRIBUTE("'initWithCollectionId:title:summary:articles:articleCount:sections:authors:' is deprecated and will be removed in a future release. Use 'initWithCollectionId:title:summary:articles:articleCount:collections:authors:' instead.");

- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articles:(NSArray<ICMHelpCenterArticle *> *)articles
articleCount:(NSInteger)articleCount
collections:(NSArray<ICMHelpCenterCollection *> *)collections
authors:(NSArray<ICMHelpCenterArticleAuthor *> *)authors;


Expand Down
Binary file modified Intercom.xcframework/ios-arm64/Intercom.framework/Info.plist
Binary file not shown.
Binary file not shown.
Binary file modified Intercom.xcframework/ios-arm64/Intercom.framework/Intercom
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,21 @@ NS_SWIFT_NAME(HelpCenterCollection)
*/
@property (nonatomic, assign) NSInteger articleCount;

/**
The number of collection inside this collection.
*/
@property (nonatomic, assign) NSInteger collectionCount;

- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articleCount:(NSInteger)articleCount DEPRECATED_MSG_ATTRIBUTE("'-initWithCollectionId:title:summary:articleCount:' intializer is deprecated and will be removed in a future release. Use '-initWithCollectionId:title:summary:articleCount:collectionCount:' instead.");

- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articleCount:(NSInteger)articleCount;
articleCount:(NSInteger)articleCount
collectionCount:(NSInteger)collectionCount;

@end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#import <Foundation/Foundation.h>
@class ICMHelpCenterArticle;
@class ICMHelpCenterSection;
@class ICMHelpCenterCollection;
@class ICMHelpCenterArticleAuthor;

NS_ASSUME_NONNULL_BEGIN
Expand Down Expand Up @@ -45,21 +46,38 @@ NS_SWIFT_NAME(HelpCenterCollectionContent)
@property (nonatomic, assign) NSInteger articleCount;

/**
@deprecated
The sections contained in this collection.
*/
@property (nonatomic, strong) NSArray<ICMHelpCenterSection *> *sections;
@property (nonatomic, strong) NSArray<ICMHelpCenterSection *> *sections DEPRECATED_MSG_ATTRIBUTE("'sections' property is deprecated and will be removed in a future release. Use 'collections' instead.");

/**
The collections contained inside this collection.
*/
@property (nonatomic, strong) NSArray<ICMHelpCenterCollection *> *collections;

/**
The authors of articles in this collection.
*/
@property (nonatomic, copy) NSArray<ICMHelpCenterArticleAuthor *> *authors;

/**
@deprecated
*/
- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articles:(NSArray<ICMHelpCenterArticle *> *)articles
articleCount:(NSInteger)articleCount
sections:(NSArray<ICMHelpCenterSection *> *)sections
authors:(NSArray<ICMHelpCenterArticleAuthor *> *)authors DEPRECATED_MSG_ATTRIBUTE("'initWithCollectionId:title:summary:articles:articleCount:sections:authors:' is deprecated and will be removed in a future release. Use 'initWithCollectionId:title:summary:articles:articleCount:collections:authors:' instead.");

- (instancetype)initWithCollectionId:(NSString *)collectionId
title:(NSString *)title
summary:(nullable NSString *)summary
articles:(NSArray<ICMHelpCenterArticle *> *)articles
articleCount:(NSInteger)articleCount
collections:(NSArray<ICMHelpCenterCollection *> *)collections
authors:(NSArray<ICMHelpCenterArticleAuthor *> *)authors;


Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "Intercom",
url: "https://github.com/intercom/intercom-ios/releases/download/14.0.7/Intercom.xcframework.zip",
checksum: "05924bae9bb79c6ded8a8737389b53315a665e1e7a8d8d8d9ecfe1f1442af70d"
url: "https://github.com/intercom/intercom-ios/releases/download/14.1.0/Intercom.xcframework.zip",
checksum: "66a7e3b0c008029564a405737ebd06100bf6294b74017f5cb98184de8105e6f0"
),
]
)
4 changes: 2 additions & 2 deletions dSYMs/Intercom.framework.iphoneos.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>14.0.7</string>
<string>14.1.0</string>
<key>CFBundleVersion</key>
<string>14.0.7</string>
<string>14.1.0</string>
</dict>
</plist>
Binary file not shown.
4 changes: 2 additions & 2 deletions dSYMs/Intercom.framework.simulator.dSYM/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>14.0.7</string>
<string>14.1.0</string>
<key>CFBundleVersion</key>
<string>14.0.7</string>
<string>14.1.0</string>
</dict>
</plist>
Binary file not shown.

0 comments on commit f994f1f

Please sign in to comment.