diff --git a/CHANGES.rst b/CHANGES.rst index 3fc0acab7..dcd60de15 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ================================================= diff --git a/Config/AppIdentifiers.xcconfig b/Config/AppIdentifiers.xcconfig index 53bcdd3e6..21b17a7f8 100644 --- a/Config/AppIdentifiers.xcconfig +++ b/Config/AppIdentifiers.xcconfig @@ -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 diff --git a/Riot/Modules/Room/RoomViewController.m b/Riot/Modules/Room/RoomViewController.m index 648c8ca90..e7941a69d 100644 --- a/Riot/Modules/Room/RoomViewController.m +++ b/Riot/Modules/Room/RoomViewController.m @@ -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) {