Skip to content

Commit 39ac0e2

Browse files
author
Jaesung Lee
committed
* Fixed bug that refreshed ticket has no channel
* Improved stabilities
1 parent af63908 commit 39ac0e2

File tree

26 files changed

+8310
-1909
lines changed

26 files changed

+8310
-1909
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
### v1.1.1 (Nov 11, 2022)
4+
* Fixed bug that refreshed ticket has no channel
5+
* Improved stabilities
6+
37
### v1.1.0 (Sep 2, 2022) with Chat SDK **v4.0.9**
48
* Raised minimum dependency version of `SendbirdChatSDK` to `4.0.9`
59
* Modified handlers' error parameter type to `SBError`

SendBirdDesk.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SendBirdDesk"
3-
s.version = "1.1.0"
3+
s.version = "1.1.1"
44
s.summary = "SendBird Desk iOS Framework"
55
s.homepage = "https://sendbird.com"
66
s.license = "Commercial"

SendBirdDesk.xcframework/Info.plist

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8-
<key>BitcodeSymbolMapsPath</key>
9-
<string>BCSymbolMaps</string>
108
<key>DebugSymbolsPath</key>
119
<string>dSYMs</string>
1210
<key>LibraryIdentifier</key>
13-
<string>ios-arm64_armv7</string>
11+
<string>ios-arm64_i386_x86_64-simulator</string>
1412
<key>LibraryPath</key>
1513
<string>SendBirdDesk.framework</string>
1614
<key>SupportedArchitectures</key>
1715
<array>
1816
<string>arm64</string>
19-
<string>armv7</string>
17+
<string>i386</string>
18+
<string>x86_64</string>
2019
</array>
2120
<key>SupportedPlatform</key>
2221
<string>ios</string>
22+
<key>SupportedPlatformVariant</key>
23+
<string>simulator</string>
2324
</dict>
2425
<dict>
26+
<key>BitcodeSymbolMapsPath</key>
27+
<string>BCSymbolMaps</string>
2528
<key>DebugSymbolsPath</key>
2629
<string>dSYMs</string>
2730
<key>LibraryIdentifier</key>
28-
<string>ios-arm64_i386_x86_64-simulator</string>
31+
<string>ios-arm64_armv7</string>
2932
<key>LibraryPath</key>
3033
<string>SendBirdDesk.framework</string>
3134
<key>SupportedArchitectures</key>
3235
<array>
3336
<string>arm64</string>
34-
<string>i386</string>
35-
<string>x86_64</string>
37+
<string>armv7</string>
3638
</array>
3739
<key>SupportedPlatform</key>
3840
<string>ios</string>
39-
<key>SupportedPlatformVariant</key>
40-
<string>simulator</string>
4141
</dict>
4242
</array>
4343
<key>CFBundlePackageType</key>

SendBirdDesk.xcframework/ios-arm64_armv7/BCSymbolMaps/A0F51F8C-03B7-3ED3-A615-155B1FBBCB3B.bcsymbolmap

+3,099
Large diffs are not rendered by default.

SendBirdDesk.xcframework/ios-arm64_armv7/BCSymbolMaps/C6CCE0BA-937D-3480-B935-DA02F34DD75F.bcsymbolmap

+3,298
Large diffs are not rendered by default.

SendBirdDesk.xcframework/ios-arm64_armv7/SendBirdDesk.framework/Headers/SendBirdDesk-Swift.h

-2
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ SWIFT_CLASS("_TtC12SendBirdDesk9SBDSKMain")
307307
/// returns:
308308
/// The version of Sendbird Desk.
309309
+ (NSString * _Nonnull)getSDKVersion SWIFT_WARN_UNUSED_RESULT;
310-
+ (NSString * _Nonnull)getSdkVersion SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Deprecated in 1.0.17", "getSDKVersion");
311310
/// Sets a dispatch queue for every completion handler in Sendbird Desk.
312311
/// \param queue A dispatch queue that will be used for every completion handler.
313312
///
@@ -937,7 +936,6 @@ SWIFT_CLASS("_TtC12SendBirdDesk9SBDSKMain")
937936
/// returns:
938937
/// The version of Sendbird Desk.
939938
+ (NSString * _Nonnull)getSDKVersion SWIFT_WARN_UNUSED_RESULT;
940-
+ (NSString * _Nonnull)getSdkVersion SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Deprecated in 1.0.17", "getSDKVersion");
941939
/// Sets a dispatch queue for every completion handler in Sendbird Desk.
942940
/// \param queue A dispatch queue that will be used for every completion handler.
943941
///
Binary file not shown.

SendBirdDesk.xcframework/ios-arm64_armv7/SendBirdDesk.framework/Modules/SendBirdDesk.swiftmodule/arm64-apple-ios.swiftinterface

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ import _Concurrency
3636
@discardableResult
3737
@objc public static func initializeDesk() -> Swift.Bool
3838
@objc public static func getSDKVersion() -> Swift.String
39-
@available(*, deprecated, renamed: "getSDKVersion()", message: "Deprecated in 1.0.17")
40-
@objc public static func getSdkVersion() -> Swift.String
4139
@objc public static func setCompletionHandlerDelegateQueue(_ queue: Dispatch.DispatchQueue)
4240
@objc(authenticateWithUserId:accessToken:completionHandler:) public static func authenticate(withUserId userId: Swift.String, accessToken: Swift.String? = nil, completionHandler: SendBirdDesk.SBDSKErrorHandler?)
4341
@objc public static func isDeskChannel(_ channel: SendbirdChatSDK.BaseChannel) -> Swift.Bool

SendBirdDesk.xcframework/ios-arm64_armv7/SendBirdDesk.framework/Modules/SendBirdDesk.swiftmodule/armv7-apple-ios.swiftinterface

-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ import _Concurrency
3636
@discardableResult
3737
@objc public static func initializeDesk() -> Swift.Bool
3838
@objc public static func getSDKVersion() -> Swift.String
39-
@available(*, deprecated, renamed: "getSDKVersion()", message: "Deprecated in 1.0.17")
40-
@objc public static func getSdkVersion() -> Swift.String
4139
@objc public static func setCompletionHandlerDelegateQueue(_ queue: Dispatch.DispatchQueue)
4240
@objc(authenticateWithUserId:accessToken:completionHandler:) public static func authenticate(withUserId userId: Swift.String, accessToken: Swift.String? = nil, completionHandler: SendBirdDesk.SBDSKErrorHandler?)
4341
@objc public static func isDeskChannel(_ channel: SendbirdChatSDK.BaseChannel) -> Swift.Bool
Binary file not shown.

SendBirdDesk.xcframework/ios-arm64_armv7/dSYMs/SendBirdDesk.framework.dSYM/Contents/Info.plist

+1-1
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>1.0.18</string>
16+
<string>1.1.1</string>
1717
<key>CFBundleVersion</key>
1818
<string>1</string>
1919
</dict>

0 commit comments

Comments
 (0)