Merge branch 'release/1.3.4/master'

This commit is contained in:
manuroe
2021-04-19 18:00:54 +02:00
3 changed files with 32 additions and 3 deletions
+27
View File
@@ -1,3 +1,30 @@
Changes in 1.3.4 (2021-04-19)
=================================================
✨ Features
*
🙌 Improvements
*
🐛 Bugfix
* RoomVC: Crash in refreshTypingNotification (#4230).
⚠️ API Changes
*
🗣 Translations
*
🧱 Build
*
Others
*
Improvements:
Changes in 1.3.3 (2021-04-16)
=================================================
+2 -2
View File
@@ -22,8 +22,8 @@ APPLICATION_GROUP_IDENTIFIER = group.im.vector
APPLICATION_SCHEME = element
// Version
MARKETING_VERSION = 1.3.3
CURRENT_PROJECT_VERSION = 1.3.3
MARKETING_VERSION = 1.3.4
CURRENT_PROJECT_VERSION = 1.3.4
// Team
+3 -1
View File
@@ -4134,7 +4134,9 @@ const NSTimeInterval kResizeComposerAnimationDuration = .05;
if (needsUpdate)
{
BOOL needsReload = roomDataSource.currentTypingUsers == nil;
// BOOL needsReload = roomDataSource.currentTypingUsers == nil;
// Quick fix for https://github.com/vector-im/element-ios/issues/4230
BOOL needsReload = YES;
roomDataSource.currentTypingUsers = typingUsers;
if (needsReload)
{