Skip to content

Commit d26bc9f

Browse files
Updated CHANGELOG
2 parents ba27fd2 + a049136 commit d26bc9f

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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_

Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageContainerView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageListConfig.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)