You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[v3.4.6] (Apr 21 2023)
Fixes:
* Use markAsReadScheduler in MessageList.
* Apply common scroll hook to GroupChannel MessageList.
* Prevent whole page from scrolling when <GroupChannel /> scrolls. This
issue occurs when customer implements an <GroupChannel /> in a web page
with scroll.
* This is a same fix that we fixed OpenChannel in `v3.4.4`.
* Unify send btn display condition
* Issue: We could send the empty message which is consisted of only
white spaces. Also, a sent message which contains white spaces at the
beginning of it is shown like it's trimmed.
* Solution: Two things have been changed on displayed. message & message
input each.
* New line, spaces only text do not show sending button
* No trim before sending
* Use dynamic import to lazy load the audio converting processor(lamejs)
by isVoiceMessageEnabled props
[SDKRLSD-783](https://sendbird.atlassian.net/browse/SDKRLSD-783)
* Apply common scroll hook to GroupChannel MessageList:
10
+
* Prevent whole page from scrolling when <GroupChannel /> scrolls. This issue occurs when customer implements an <GroupChannel /> in a web page with scroll.
11
+
* This is a same fix that we fixed OpenChannel in `v3.4.4`.
12
+
* To unify message sending policies with ios & android:
13
+
* Do not show send button when there is only new line or empty space in the input.
14
+
* Do not trim leading white spaces in message text.
15
+
* Optimize lamjs import:
16
+
* Lazy load the audio converting processor(lamejs) only when `isVoiceMessageEnabled` is true.
17
+
* This saves 106KB Gzipped(85KB Brotli) if you are not using the VoiceMessage feature.
0 commit comments