Skip to content

Commit 3e01bcb

Browse files
Release 10.0.2
1 parent d37dc94 commit 3e01bcb

File tree

29 files changed

+156
-62
lines changed

29 files changed

+156
-62
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 10.0.2
2+
###### Release Date: 12-07-2021
3+
4+
### Improvements
5+
* The Help Center now renders Articles in the correct user locale.
6+
7+
### Bug Fixes
8+
* Fixed an issue that was causing a crash if an article was opened when no Articles subscription was active.
9+
* Emoji reactions are now always visible on Post messages
10+
* A user's profile now displays that they have viewed a specific Article.
11+
112
## 10.0.1
213
###### Release Date: 22-06-2021
314

Intercom.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Intercom'
3-
s.version = '10.0.1'
3+
s.version = '10.0.2'
44
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
55
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
66
s.authors = {"Brian Boyle"=>"[email protected]", "Mike McNamara"=>"[email protected]", "Katherine Brennan"=>"[email protected]", "Himanshi Goyal"=>"[email protected]"}

Intercom.xcframework/Info.plist

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,32 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-arm64_i386_x86_64-simulator</string>
9+
<string>ios-arm64_armv7</string>
1010
<key>LibraryPath</key>
1111
<string>Intercom.framework</string>
1212
<key>SupportedArchitectures</key>
1313
<array>
1414
<string>arm64</string>
15-
<string>i386</string>
16-
<string>x86_64</string>
15+
<string>armv7</string>
1716
</array>
1817
<key>SupportedPlatform</key>
1918
<string>ios</string>
20-
<key>SupportedPlatformVariant</key>
21-
<string>simulator</string>
2219
</dict>
2320
<dict>
2421
<key>LibraryIdentifier</key>
25-
<string>ios-arm64_armv7</string>
22+
<string>ios-arm64_i386_x86_64-simulator</string>
2623
<key>LibraryPath</key>
2724
<string>Intercom.framework</string>
2825
<key>SupportedArchitectures</key>
2926
<array>
3027
<string>arm64</string>
31-
<string>armv7</string>
28+
<string>i386</string>
29+
<string>x86_64</string>
3230
</array>
3331
<key>SupportedPlatform</key>
3432
<string>ios</string>
33+
<key>SupportedPlatformVariant</key>
34+
<string>simulator</string>
3535
</dict>
3636
</array>
3737
<key>CFBundlePackageType</key>
0 Bytes
Binary file not shown.
64.2 KB
Binary file not shown.

Intercom.xcframework/ios-arm64_armv7/Intercom.framework/Modules/module.private.modulemap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
header "ICMHTTPClientProtocol.h"
44
header "ICMHTTPClient.h"
55
header "ICMTranslationManager.h"
6+
header "ICMHelpCenterTranslationManager.h"
67
header "ICMTranslationKeys.h"
78
header "ICMEngine.h"
89
header "ICMNavigationController.h"

Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMColor.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@
4444
+ (BOOL)isLightColor:(UIColor *)backgroundColor;
4545

4646

47+
#pragma mark - System color backports
48+
49+
/// A backport of `systemGray5` which is available from iOS 13.0+. This should be deleted when dropping iOS 12.
50+
+ (UIColor *)systemGray5;
51+
52+
4753
#pragma mark - Active/Away States
4854

4955
+ (UIColor *)activeColour;

Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMConfig.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ static NSString *const kICMMessengerLogoImageLoadedNotification = @"kICMMessenge
77

88
@protocol ICMConfigProtocol
99
@property (readonly) BOOL inboundMessages;
10+
@property (readonly) BOOL accessToTeammateEnabled;
1011
@end
1112

1213
@interface ICMConfig : ICMSafeNetworkModel <ICMConfigProtocol,NSCoding>
@@ -50,6 +51,7 @@ static NSString *const kICMMessengerLogoImageLoadedNotification = @"kICMMessenge
5051
@property (nonatomic, copy) NSString *helpCenterBaseColorString;
5152

5253
@property (nonatomic, strong) NSLocale *intercomLocale;
54+
@property (nonatomic, strong) NSLocale *helpCenterLocale;
5355
@property (nonatomic, strong) NSSet<NSString *> *features;
5456

5557
+ (instancetype)instanceFromDictionary:(NSDictionary *)aDictionary;

Intercom.xcframework/ios-arm64_armv7/Intercom.framework/PrivateHeaders/ICMContentViewControllerDelegate.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ NS_ASSUME_NONNULL_BEGIN
1515
@required
1616
- (void)contentDidLoadWithDismissEnabled:(BOOL)dismissEnabled;
1717
- (void)showLoadingViewWithImage:(UIImage *)image;
18-
- (void)contentLoadingDidFail:(NSString *)errorMessage retryEnabled:(BOOL)retryEnabled;
18+
- (void)contentLoadingDidFail:(NSString *)errorMessage
19+
showActionButton:(BOOL)showActionButton
20+
actionButtonTitle:(NSString * _Nullable)actionButtonTitle;
1921
- (void)configureCloseButtonForBackgroundColor:(UIColor *)backgroundColor;
2022
- (void)closeContentModal;
2123

0 commit comments

Comments
 (0)