Skip to content

Commit

Permalink
* Fixed bug that refreshed ticket has no channel
Browse files Browse the repository at this point in the history
* Improved stabilities
  • Loading branch information
Jaesung Lee committed Nov 11, 2022
1 parent af63908 commit 39ac0e2
Show file tree
Hide file tree
Showing 26 changed files with 8,310 additions and 1,909 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### v1.1.1 (Nov 11, 2022)
* Fixed bug that refreshed ticket has no channel
* Improved stabilities

### v1.1.0 (Sep 2, 2022) with Chat SDK **v4.0.9**
* Raised minimum dependency version of `SendbirdChatSDK` to `4.0.9`
* Modified handlers' error parameter type to `SBError`
Expand Down
2 changes: 1 addition & 1 deletion SendBirdDesk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SendBirdDesk"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "SendBird Desk iOS Framework"
s.homepage = "https://sendbird.com"
s.license = "Commercial"
Expand Down
18 changes: 9 additions & 9 deletions SendBirdDesk.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,39 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SendBirdDesk.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BitcodeSymbolMapsPath</key>
<string>BCSymbolMaps</string>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>SendBirdDesk.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,6 @@ SWIFT_CLASS("_TtC12SendBirdDesk9SBDSKMain")
/// returns:
/// The version of Sendbird Desk.
+ (NSString * _Nonnull)getSDKVersion SWIFT_WARN_UNUSED_RESULT;
+ (NSString * _Nonnull)getSdkVersion SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Deprecated in 1.0.17", "getSDKVersion");
/// Sets a dispatch queue for every completion handler in Sendbird Desk.
/// \param queue A dispatch queue that will be used for every completion handler.
///
Expand Down Expand Up @@ -937,7 +936,6 @@ SWIFT_CLASS("_TtC12SendBirdDesk9SBDSKMain")
/// returns:
/// The version of Sendbird Desk.
+ (NSString * _Nonnull)getSDKVersion SWIFT_WARN_UNUSED_RESULT;
+ (NSString * _Nonnull)getSdkVersion SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Deprecated in 1.0.17", "getSDKVersion");
/// Sets a dispatch queue for every completion handler in Sendbird Desk.
/// \param queue A dispatch queue that will be used for every completion handler.
///
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ import _Concurrency
@discardableResult
@objc public static func initializeDesk() -> Swift.Bool
@objc public static func getSDKVersion() -> Swift.String
@available(*, deprecated, renamed: "getSDKVersion()", message: "Deprecated in 1.0.17")
@objc public static func getSdkVersion() -> Swift.String
@objc public static func setCompletionHandlerDelegateQueue(_ queue: Dispatch.DispatchQueue)
@objc(authenticateWithUserId:accessToken:completionHandler:) public static func authenticate(withUserId userId: Swift.String, accessToken: Swift.String? = nil, completionHandler: SendBirdDesk.SBDSKErrorHandler?)
@objc public static func isDeskChannel(_ channel: SendbirdChatSDK.BaseChannel) -> Swift.Bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ import _Concurrency
@discardableResult
@objc public static func initializeDesk() -> Swift.Bool
@objc public static func getSDKVersion() -> Swift.String
@available(*, deprecated, renamed: "getSDKVersion()", message: "Deprecated in 1.0.17")
@objc public static func getSdkVersion() -> Swift.String
@objc public static func setCompletionHandlerDelegateQueue(_ queue: Dispatch.DispatchQueue)
@objc(authenticateWithUserId:accessToken:completionHandler:) public static func authenticate(withUserId userId: Swift.String, accessToken: Swift.String? = nil, completionHandler: SendBirdDesk.SBDSKErrorHandler?)
@objc public static func isDeskChannel(_ channel: SendbirdChatSDK.BaseChannel) -> Swift.Bool
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleShortVersionString</key>
<string>1.0.18</string>
<string>1.1.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Loading

0 comments on commit 39ac0e2

Please sign in to comment.