Skip to content

Commit

Permalink
Merge pull request #76 from sendbird/release/3.12.0
Browse files Browse the repository at this point in the history
Release/3.12.0 -> main
  • Loading branch information
sendbird-sdk-deployment authored Nov 29, 2023
2 parents ca69aaa + d73d03c commit 0caf9da
Show file tree
Hide file tree
Showing 52 changed files with 15,659 additions and 4,678 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Changelog

### v3.12.0 (Nov 29, 2023)

#### Typing Indicator Bubble
* We are now supporting a new type of a typing indicator, the **Typing Indicator Bubble**.
* Enabling Typing Indicator Bubble shows an animated typing bubble when another member(s) in a Group Channel is/are typing.
* You can use this feature by enabling `SendbirdUI.config.groupChannel.channel.isTypingIndicatorEnabled` to `true`, then setting `SendbirdUI.config.groupChannel.channel.typingIndicatorTypes` to `[.bubble]`.

* New enum
* `public enum SBUTypingIndicatorType`

* New classes / structs
* `public class SBUTypingIndicatorMessageManager`
* `public struct SBUTypingIndicatorInfo`
* `public class SBUTypingIndicatorMessage`
* `public class SBUTypingIndicatorMessageCellParams`
* `open class SBUTypingIndicatorMessageCell`
* `public class SBUTypingIndicatorBubbleView`

* New properties
* `public var typingIndicatorTypes: Set<SBUTypingIndicatorType>` in `SBUConfig.GroupChannel.Channel`
* `public var typingMessageManager` in `SBUBaseChannelViewModel`
* `public private(set) var typingIndicatorMessageCell` in `SBUGroupChannelModule.List`
* `public static var Message_Typers_Count` in `SBUStringSet`
* `public lazy var profilesStackView` in `SBUContentBaseMessageCell`
* `public lazy var numberLabel` in `SBUMessageProfileView`

* New methods
* `open func register(typingIndicatorMessageCell: SBUBaseMessageCell, nib: UINib? = nil)` in `SBUGroupChannelModule.List`
* `public func configureMessageProfileViews(message:)` in `SBUContentBaseMessageCell`
* `open func configureTyperProfileViews(typingInfo:)` in `SBUContentBaseMessageCell`
* `open func configureUserProfileView(message:)` in `SBUContentBaseMessageCell`
* `public func configureTyperProfileImageView()` in `SBUMessageProfileView`
* `public func configureNumberLabel(_:)`

* New theme properties
* `public var typingMessageProfileBorderColor: UIColor` in `SBUTheme`
* `public var typingMessageDotColor: UIColor` in `SBUTheme`
* `public var typingMessageDotTransformColor: UIColor` in `SBUTheme`

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

- Fixed navigationBar looking weird after entering message search function
Expand Down
10 changes: 5 additions & 5 deletions Framework/SendbirdUIKit.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,32 @@
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SendbirdUIKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>DebugSymbolsPath</key>
<string>dSYMs</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SendbirdUIKit.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
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.2
SBU_APP_BUNDLE_VERSION = 3.11.2
SBU_APP_VERSION = 3.12.0
SBU_APP_BUNDLE_VERSION = 3.12.0
SENDBIRD_CHAT_SDK_VERSION = 4.12.2
Loading

0 comments on commit 0caf9da

Please sign in to comment.