Skip to content

Commit 6c77678

Browse files
Updated CHANGELOG
1 parent fe7f6bb commit 6c77678

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
33

44
# Upcoming
55

6+
### βœ… Added
7+
- Implement message resend functionality
8+
- Custom modifiers support for the message view and the composer
9+
- Custom modifiers support for the channel list and the message list
10+
- Changing text color per message sender
11+
12+
### 🐞 Fixed
13+
- Improved TabView appeareance animation
14+
- Channel list performance improvements
15+
- Jumbo emoji reply not shown correctly
16+
- Send message animation improvements
17+
618
### πŸ”„ Changed
19+
- Method for creating custom quoted message view
720

821
# [4.12.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.12.0)
922
_March 17, 2022_

β€ŽSources/StreamChatSwiftUI/Utils/KeyboardHandling.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ extension KeyboardReadable {
4444
public var keyboardHeight: AnyPublisher<CGFloat, Never> {
4545
NotificationCenter
4646
.default
47-
.publisher(for: UIResponder.keyboardWillShowNotification)
47+
.publisher(for: UIResponder.keyboardDidShowNotification)
4848
.map { notification in
4949
if let keyboardFrame: NSValue = notification
5050
.userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue {

0 commit comments

Comments
Β (0)