Skip to content

Commit

Permalink
Merge pull request #41 from sendbird/release/3.11.2
Browse files Browse the repository at this point in the history
Release/3.11.2 -> main
  • Loading branch information
sendbird-sdk-deployment authored Nov 24, 2023
2 parents 6811e5c + ff50b43 commit ca69aaa
Show file tree
Hide file tree
Showing 33 changed files with 7,779 additions and 7,420 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### v3.11.2 (Nov 24, 2023)

- Fixed navigationBar looking weird after entering message search function
- Added `needRollbackNavigationBarSetting` property in `SBUBaseViewController`
- Applied UIKit configuration to LimitedPhotoLibraryPicker

### v3.11.1 (Nov 15, 2023)

- Improved stability
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

SBU_APP_VERSION = 3.11.1
SBU_APP_BUNDLE_VERSION = 3.11.1
SBU_APP_VERSION = 3.11.2
SBU_APP_BUNDLE_VERSION = 3.11.2
SENDBIRD_CHAT_SDK_VERSION = 4.12.2
Original file line number Diff line number Diff line change
Expand Up @@ -1522,6 +1522,12 @@ SWIFT_CLASS("_TtC13SendbirdUIKit21MessageTemplateParser")

SWIFT_CLASS("_TtC13SendbirdUIKit21SBUBaseViewController")
@interface SBUBaseViewController : UIViewController <UINavigationControllerDelegate>
/// This value is used to check if the properties of the navigationBar need to be initialized. The default value is <code>true</code>.
/// note:
/// If you are presenting a ViewController with the <code>modalPresentationStyle</code> set to <code>.fullScreen</code> within a Sendbird function, please set this value to <code>false</code> before presenting.
/// since:
/// 3.11.2
@property (nonatomic) BOOL needRollbackNavigationBarSetting;
- (void)loadView;
- (void)viewWillAppear:(BOOL)animated;
- (void)viewWillDisappear:(BOOL)animated;
Expand Down
Binary file not shown.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -7049,6 +7049,7 @@ open class SBUCreateOpenChannelModule {
@objc deinit
}
@objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class SBUBaseViewController : UIKit.UIViewController, UIKit.UINavigationControllerDelegate, SendbirdUIKit.SBULoadingIndicatorProtocol {
@objc @_Concurrency.MainActor(unsafe) public var needRollbackNavigationBarSetting: Swift.Bool
@_Concurrency.MainActor(unsafe) @objc override dynamic open func loadView()
@_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool)
@_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: Swift.Bool)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7049,6 +7049,7 @@ open class SBUCreateOpenChannelModule {
@objc deinit
}
@objc @_inheritsConvenienceInitializers @objcMembers @_Concurrency.MainActor(unsafe) open class SBUBaseViewController : UIKit.UIViewController, UIKit.UINavigationControllerDelegate, SendbirdUIKit.SBULoadingIndicatorProtocol {
@objc @_Concurrency.MainActor(unsafe) public var needRollbackNavigationBarSetting: Swift.Bool
@_Concurrency.MainActor(unsafe) @objc override dynamic open func loadView()
@_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillAppear(_ animated: Swift.Bool)
@_Concurrency.MainActor(unsafe) @objc override dynamic open func viewWillDisappear(_ animated: 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>3.11.1</string>
<string>3.11.2</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

SBU_APP_VERSION = 3.11.1
SBU_APP_BUNDLE_VERSION = 3.11.1
SBU_APP_VERSION = 3.11.2
SBU_APP_BUNDLE_VERSION = 3.11.2
SENDBIRD_CHAT_SDK_VERSION = 4.12.2
Loading

0 comments on commit ca69aaa

Please sign in to comment.