Skip to content

Commit 579a4c0

Browse files
authored
Release 3.0.23 (#210)
1 parent 5d0219a commit 579a4c0

File tree

10 files changed

+25
-7
lines changed

10 files changed

+25
-7
lines changed

CHANGELOG.md

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

3+
## 3.0.23 (2017-01-20)
4+
5+
### Bug Fixes
6+
7+
* Fixed disappearing composer bug on iOS 8 described in [#209](https://github.com/intercom/intercom-ios/issues/209).
8+
* `+[Intercom logEventWithName:metaData:]` now works even if the meta data `nil` or empty.
9+
* Fixed issue where text was never bold in Post messages.
10+
* Fixed Korean characters appearing in Japanese locale.
11+
* Fixed layout issue when using external keyboards.
12+
13+
### Enhancements
14+
15+
* Made changes to ensure the warning in [#206](https://github.com/intercom/intercom-ios/issues/206) is only given in development.
16+
* Improved selected state for message and article reactions.
17+
* Added improved error logging.
18+
* Additional changes to reduce network request volume.
19+
320
## 3.0.22 (2016-12-16)
421

522
* Fixed crash in `-[PodIntercom_IntercomConversationInputAccessoryView updateConstraints]`.

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.22</string>
16+
<string>3.0.23</string>
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
</dict>
146 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.22
3+
// Intercom for iOS - Version 3.0.23
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.22) of Intercom for iOS supports iOS 8.0 upwards.
13+
#error This version (3.0.23) of Intercom for iOS supports iOS 8.0 upwards.
1414
#endif
1515

1616
NS_ASSUME_NONNULL_BEGIN

Intercom.framework/Info.plist

0 Bytes
Binary file not shown.

Intercom.framework/Intercom

901 KB
Binary file not shown.

Intercom.framework/Intercom.bundle/locales/es.strings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"navigation.close" = "Cerrar";
2525
"message.send" = "Enviar";
2626
"time.difference.format.hours.ago" = "Hace {delta}h";
27-
"time.difference.format.weeks.ago" = "Hace {delta}s";
27+
"time.difference.format.weeks.ago" = "Hace {delta}sem";
2828
"last_active.format.hours.ago" = "Activo hace {hours}h";
2929
"actionsheet.delete" = "Borrar";
3030
"navbar.title.new.conversation" = "Nueva conversación";

Intercom.framework/Intercom.bundle/locales/ja.strings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@
4848
"asked_about" = "質問内容";
4949
"article_load_error" = "記事をロードできません";
5050
"error.loading.conversations.fallback" = "{name}での会話をロードできません。";
51-
"error.no_conversations.message" = "{name}님과 대화한 내용이 없습니다";
51+
"error.no_conversations.message" = "{name}との会話はまだ行われていません。";

Intercom.framework/Modules/module.modulemap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ framework module Intercom {
1919
link framework "QuartzCore"
2020
link framework "Security"
2121
link framework "SystemConfiguration"
22+
link framework "WebKit"
2223
}

Intercom.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = 'Intercom'
3-
s.version = '3.0.22'
3+
s.version = '3.0.23'
44
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
55
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, iOS 9 and iOS 10'
9-
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate"]
9+
s.frameworks = ["Foundation", "UIKit", "Accelerate", "Security", "SystemConfiguration", "MobileCoreServices", "ImageIO", "AudioToolbox", "QuartzCore", "CoreGraphics", "Photos", "Accelerate", "WebKit"]
1010
s.library = "icucore", "xml2"
1111
s.requires_arc = true
1212
s.source = { :http => "https://github.com/intercom/intercom-ios/releases/download/#{s.version}/CocoaPods.zip" }

0 commit comments

Comments
 (0)