Skip to content

Commit 0caf9da

Browse files
Merge pull request #76 from sendbird/release/3.12.0
Release/3.12.0 -> main
2 parents ca69aaa + d73d03c commit 0caf9da

File tree

52 files changed

+15659
-4678
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+15659
-4678
lines changed

CHANGELOG.md

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

3+
### v3.12.0 (Nov 29, 2023)
4+
5+
#### Typing Indicator Bubble
6+
* We are now supporting a new type of a typing indicator, the **Typing Indicator Bubble**.
7+
* Enabling Typing Indicator Bubble shows an animated typing bubble when another member(s) in a Group Channel is/are typing.
8+
* You can use this feature by enabling `SendbirdUI.config.groupChannel.channel.isTypingIndicatorEnabled` to `true`, then setting `SendbirdUI.config.groupChannel.channel.typingIndicatorTypes` to `[.bubble]`.
9+
10+
* New enum
11+
* `public enum SBUTypingIndicatorType`
12+
13+
* New classes / structs
14+
* `public class SBUTypingIndicatorMessageManager`
15+
* `public struct SBUTypingIndicatorInfo`
16+
* `public class SBUTypingIndicatorMessage`
17+
* `public class SBUTypingIndicatorMessageCellParams`
18+
* `open class SBUTypingIndicatorMessageCell`
19+
* `public class SBUTypingIndicatorBubbleView`
20+
21+
* New properties
22+
* `public var typingIndicatorTypes: Set<SBUTypingIndicatorType>` in `SBUConfig.GroupChannel.Channel`
23+
* `public var typingMessageManager` in `SBUBaseChannelViewModel`
24+
* `public private(set) var typingIndicatorMessageCell` in `SBUGroupChannelModule.List`
25+
* `public static var Message_Typers_Count` in `SBUStringSet`
26+
* `public lazy var profilesStackView` in `SBUContentBaseMessageCell`
27+
* `public lazy var numberLabel` in `SBUMessageProfileView`
28+
29+
* New methods
30+
* `open func register(typingIndicatorMessageCell: SBUBaseMessageCell, nib: UINib? = nil)` in `SBUGroupChannelModule.List`
31+
* `public func configureMessageProfileViews(message:)` in `SBUContentBaseMessageCell`
32+
* `open func configureTyperProfileViews(typingInfo:)` in `SBUContentBaseMessageCell`
33+
* `open func configureUserProfileView(message:)` in `SBUContentBaseMessageCell`
34+
* `public func configureTyperProfileImageView()` in `SBUMessageProfileView`
35+
* `public func configureNumberLabel(_:)`
36+
37+
* New theme properties
38+
* `public var typingMessageProfileBorderColor: UIColor` in `SBUTheme`
39+
* `public var typingMessageDotColor: UIColor` in `SBUTheme`
40+
* `public var typingMessageDotTransformColor: UIColor` in `SBUTheme`
41+
342
### v3.11.2 (Nov 24, 2023)
443

544
- Fixed navigationBar looking weird after entering message search function

Framework/SendbirdUIKit.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@
88
<key>DebugSymbolsPath</key>
99
<string>dSYMs</string>
1010
<key>LibraryIdentifier</key>
11-
<string>ios-arm64</string>
11+
<string>ios-arm64_x86_64-simulator</string>
1212
<key>LibraryPath</key>
1313
<string>SendbirdUIKit.framework</string>
1414
<key>SupportedArchitectures</key>
1515
<array>
1616
<string>arm64</string>
17+
<string>x86_64</string>
1718
</array>
1819
<key>SupportedPlatform</key>
1920
<string>ios</string>
21+
<key>SupportedPlatformVariant</key>
22+
<string>simulator</string>
2023
</dict>
2124
<dict>
2225
<key>DebugSymbolsPath</key>
2326
<string>dSYMs</string>
2427
<key>LibraryIdentifier</key>
25-
<string>ios-arm64_x86_64-simulator</string>
28+
<string>ios-arm64</string>
2629
<key>LibraryPath</key>
2730
<string>SendbirdUIKit.framework</string>
2831
<key>SupportedArchitectures</key>
2932
<array>
3033
<string>arm64</string>
31-
<string>x86_64</string>
3234
</array>
3335
<key>SupportedPlatform</key>
3436
<string>ios</string>
35-
<key>SupportedPlatformVariant</key>
36-
<string>simulator</string>
3737
</dict>
3838
</array>
3939
<key>CFBundlePackageType</key>

Framework/SendbirdUIKit.xcframework/ios-arm64/SendbirdUIKit.framework/Base.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
// Configuration settings file format documentation can be found at:
1010
// https://help.apple.com/xcode/#/dev745c5c974
1111

12-
SBU_APP_VERSION = 3.11.2
13-
SBU_APP_BUNDLE_VERSION = 3.11.2
12+
SBU_APP_VERSION = 3.12.0
13+
SBU_APP_BUNDLE_VERSION = 3.12.0
1414
SENDBIRD_CHAT_SDK_VERSION = 4.12.2

0 commit comments

Comments
 (0)