Feature/3449 release prep

This commit is contained in:
Frank Rotermund
2022-08-04 05:15:53 +00:00
parent c12cb45f61
commit 4c8c8cd19a
18 changed files with 144 additions and 31 deletions
+12 -5
View File
@@ -421,7 +421,9 @@ ThreadsBetaCoordinatorBridgePresenterDelegate>
Section *sectionUserSettings = [Section sectionWithTag:SECTION_TAG_USER_SETTINGS];
[sectionUserSettings addRowWithTag:USER_SETTINGS_PROFILE_PICTURE_INDEX];
[sectionUserSettings addRowWithTag:USER_SETTINGS_DISPLAYNAME_INDEX];
[sectionUserSettings addRowWithTag:USER_SETTINGS_PERSONAL_STATE_INDEX];
if (BwiBuildSettings.bwiEnablePersonalState) {
[sectionUserSettings addRowWithTag:USER_SETTINGS_PERSONAL_STATE_INDEX];
}
if (RiotSettings.shared.settingsScreenShowChangePassword)
{
[sectionUserSettings addRowWithTag:USER_SETTINGS_CHANGE_PASSWORD_INDEX];
@@ -527,9 +529,11 @@ ThreadsBetaCoordinatorBridgePresenterDelegate>
sectionNotificationSettings.footerTitle = [VectorL10n settingsGlobalSettingsInfo:AppInfo.current.displayName];
}
[sectionNotificationSettings addRowWithTag:NOTIFICATION_SETTINGS_PIN_MISSED_NOTIFICATIONS_INDEX];
[sectionNotificationSettings addRowWithTag:NOTIFICATION_SETTINGS_PIN_UNREAD_INDEX];
if (BwiBuildSettings.bwiShowPinnedNotificationSettings) {
[sectionNotificationSettings addRowWithTag:NOTIFICATION_SETTINGS_PIN_MISSED_NOTIFICATIONS_INDEX];
[sectionNotificationSettings addRowWithTag:NOTIFICATION_SETTINGS_PIN_UNREAD_INDEX];
}
if (@available(iOS 14.0, *)) {
if (RiotSettings.shared.settingsNotificationsShowDefault) {
[sectionNotificationSettings addRowWithTag:NOTIFICATION_SETTINGS_DEFAULT_SETTINGS_INDEX];
@@ -2508,10 +2512,13 @@ ThreadsBetaCoordinatorBridgePresenterDelegate>
{
MXKTableViewCell *ignoredUserCell = [self getDefaultTableViewCell:tableView];
if (BwiBuildSettings.bwiBetterIgnoredUsers) {
ignoredUserCell.textLabel.text = [VectorL10n settingsIgnoredUsers];
ignoredUserCell.textLabel.text = NSLocalizedStringFromTable(@"bwi_settings_ignored_users_text", @"Bwi", nil);
} else {
ignoredUserCell.textLabel.text = session.ignoredUsers[row];
}
[ignoredUserCell vc_setAccessoryDisclosureIndicatorWithCurrentTheme];
cell = ignoredUserCell;
}
else if (section == SECTION_TAG_LOCAL_CONTACTS)