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/).
8
8
- Date separators in the message list
9
9
- ChatUserNamer to customize user name on typing indicator
10
10
- minimumSwipeGestureDistance to control swipe sensitivity
11
+ - Pop-out animation to reactions overlay
12
+ - maxTimeIntervalBetweenMessagesInGroup to control message grouping logic
11
13
12
14
### 🐞 Fixed
13
15
- 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
14
20
15
21
# [ 4.15.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.15.0 )
16
22
_ May 17, 2022_
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ public struct MessageContainerView<Factory: ViewFactory>: View {
221
221
}
222
222
223
223
private var maximumHorizontalSwipeDisplacement : CGFloat {
224
- replyThreshold + 20
224
+ replyThreshold + 30
225
225
}
226
226
227
227
private var isMessagePinned : Bool {
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public struct MessageDisplayOptions {
87
87
showAuthorName: Bool = true ,
88
88
animateChanges: Bool = true ,
89
89
overlayDateLabelSize: CGFloat = 40 ,
90
- minimumSwipeGestureDistance: CGFloat = 15 ,
90
+ minimumSwipeGestureDistance: CGFloat = 10 ,
91
91
currentUserMessageTransition: AnyTransition = . identity,
92
92
otherUserMessageTransition: AnyTransition = . identity,
93
93
messageLinkDisplayResolver: @escaping ( ChatMessage ) -> [ NSAttributedString . Key : Any ] = MessageDisplayOptions
You can’t perform that action at this time.
0 commit comments