mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-14 11:49:59 +02:00
Merge branch 'release/1.3.4/master'
This commit is contained in:
+27
@@ -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)
|
||||
=================================================
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user