File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Sources/StreamChatSwiftUI/ChatChannel/MessageList Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88- Date separators in the message list
99- ChatUserNamer to customize user name on typing indicator
1010- minimumSwipeGestureDistance to control swipe sensitivity
11+ - Pop-out animation to reactions overlay
12+ - maxTimeIntervalBetweenMessagesInGroup to control message grouping logic
1113
1214### 🐞 Fixed
1315- Bug about link attachments not opening when the URL was missing the scheme
16+ - Picking images synced with iCloud in the composer
17+ - User mentions not being passed when sending a message
18+ - Incorrect initial height when editing a message
19+ - Composer is hidden when reactions shown
1420
1521# [ 4.15.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.15.0 )
1622_ May 17, 2022_
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ public struct MessageContainerView<Factory: ViewFactory>: View {
221221 }
222222
223223 private var maximumHorizontalSwipeDisplacement : CGFloat {
224- replyThreshold + 20
224+ replyThreshold + 30
225225 }
226226
227227 private var isMessagePinned : Bool {
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public struct MessageDisplayOptions {
8787 showAuthorName: Bool = true ,
8888 animateChanges: Bool = true ,
8989 overlayDateLabelSize: CGFloat = 40 ,
90- minimumSwipeGestureDistance: CGFloat = 15 ,
90+ minimumSwipeGestureDistance: CGFloat = 10 ,
9191 currentUserMessageTransition: AnyTransition = . identity,
9292 otherUserMessageTransition: AnyTransition = . identity,
9393 messageLinkDisplayResolver: @escaping ( ChatMessage ) -> [ NSAttributedString . Key : Any ] = MessageDisplayOptions
You can’t perform that action at this time.
0 commit comments