From d8584a7935ff7f893780f47775fa6c9bc2805c69 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 18 Jul 2026 21:12:04 +0000 Subject: [PATCH] feat: reorder App Settings entries and refine Home/Messages rows Reorder the App Settings section in AllSettingsScreen to: Privacy Options, UI Preferences, Home, Messages, Notifications, Compose Settings, Reaction Row, Bottom Navigation Bar, Profile UI, then the remaining rows. Rename the "Home Tabs" row to "Home" (reusing route_home) and switch the Messages row icon to MaterialSymbols.Mail to match the Messages screen. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01SYck7FKoLzoaomnjjLFLzi --- .../ui/screen/loggedIn/settings/SettingsCatalogBuilder.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/settings/SettingsCatalogBuilder.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/settings/SettingsCatalogBuilder.kt index 5e85e88c94..b63e323eef 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/settings/SettingsCatalogBuilder.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/settings/SettingsCatalogBuilder.kt @@ -93,11 +93,11 @@ fun buildSettingsCatalog( keywordsRes = R.string.privacy_options_search_keywords, ) { nav.nav(Route.PrivacyOptions) }, symEntry(R.string.ui_preferences, MaterialSymbols.Settings, R.string.ui_preferences_search_keywords, Route.Settings), - symEntry(R.string.compose_settings, MaterialSymbols.Edit, R.string.compose_search_keywords, Route.ComposeSettings), + symEntry(R.string.route_home, MaterialSymbols.Home, R.string.home_tabs_search_keywords, Route.HomeTabsSettings), + symEntry(R.string.messages_settings, MaterialSymbols.Mail, R.string.messages_settings_search_keywords, Route.MessagesSettings), symEntry(R.string.notification_settings, MaterialSymbols.Notifications, R.string.notification_settings_search_keywords, Route.NotificationSettings), - symEntry(R.string.home_tabs_settings, MaterialSymbols.Home, R.string.home_tabs_search_keywords, Route.HomeTabsSettings), + symEntry(R.string.compose_settings, MaterialSymbols.Edit, R.string.compose_search_keywords, Route.ComposeSettings), symEntry(R.string.reactions_settings, MaterialSymbols.ThumbUp, R.string.reactions_settings_search_keywords, Route.ReactionsSettings), - symEntry(R.string.messages_settings, MaterialSymbols.Forum, R.string.messages_settings_search_keywords, Route.MessagesSettings), symEntry(R.string.bottom_bar_settings, MaterialSymbols.Dashboard, R.string.bottom_bar_search_keywords, Route.BottomBarSettings), symEntry(R.string.profile_ui_settings, MaterialSymbols.AccountCircle, R.string.profile_ui_search_keywords, Route.ProfileUiSettings), symEntry(R.string.calendar_reminder_settings_title, MaterialSymbols.CalendarMonth, R.string.calendar_reminder_search_keywords, Route.CalendarReminderSettings),