mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-20 16:42:44 +02:00
Feature/3449 release prep
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user