Merge pull request #4333 from vector-im/release/1.3.8/release

Release 1.3.8
This commit is contained in:
SBiOSoftWhare 2021-05-17 17:50:04 +02:00 committed by GitHub
commit 7b8399a448
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 3 deletions

View file

@ -1,3 +1,30 @@
Changes in 1.3.8 (2021-05-17)
=================================================
✨ Features
*
🙌 Improvements
*
🐛 Bugfix
* RecentsDataSource: Do not display secure backup banner when keys upload is in process.
⚠️ API Changes
*
🗣 Translations
*
🧱 Build
*
Others
*
Improvements:
Changes in 1.3.7 (2021-05-12) Changes in 1.3.7 (2021-05-12)
================================================= =================================================

View file

@ -22,8 +22,8 @@ APPLICATION_GROUP_IDENTIFIER = group.im.vector
APPLICATION_SCHEME = element APPLICATION_SCHEME = element
// Version // Version
MARKETING_VERSION = 1.3.7 MARKETING_VERSION = 1.3.8
CURRENT_PROJECT_VERSION = 1.3.7 CURRENT_PROJECT_VERSION = 1.3.8
// Team // Team

View file

@ -190,10 +190,13 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
SecureBackupBannerPreferences *secureBackupBannersPreferences = SecureBackupBannerPreferences.shared; SecureBackupBannerPreferences *secureBackupBannersPreferences = SecureBackupBannerPreferences.shared;
// Display the banner if only we can set up 4S and if there are messages keys to backup // Display the banner if only we can set up 4S and if there are messages keys to backup
// and if there is no plan to upload keys yet
if (!secureBackupBannersPreferences.hideSetupBanner if (!secureBackupBannersPreferences.hideSetupBanner
&& [self.mxSession vc_canSetupSecureBackup] && [self.mxSession vc_canSetupSecureBackup]
&& self.mxSession.crypto.backup.hasKeysToBackup) && self.mxSession.crypto.backup.hasKeysToBackup
&& !self.mxSession.crypto.backup.enabled)
{ {
NSLog(@"[RecentsDataSource] updateSecureBackupBanner: Secure backup should be shown (crypto.backup.state = %lu)", (unsigned long)self.mxSession.crypto.backup.state);
secureBackupBanner = SecureBackupBannerDisplaySetup; secureBackupBanner = SecureBackupBannerDisplaySetup;
} }
} }