From b5c8e0ffd4a0eacd01d6720fec87282787459b15 Mon Sep 17 00:00:00 2001 From: Eliz Date: Wed, 21 Jan 2026 23:20:45 +0000 Subject: [PATCH] update naming --- USER_GUIDE.md | 6 +++--- src/activities/settings/SettingsActivity.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/USER_GUIDE.md b/USER_GUIDE.md index 75976574..2abb51fd 100644 --- a/USER_GUIDE.md +++ b/USER_GUIDE.md @@ -94,9 +94,9 @@ The Settings screen allows you to configure the device's behavior. There are a f - "Fit" (default) - Scale the image down to fit centered on the screen, padding with white borders as necessary - "Crop" - Scale the image down and crop as necessary to try to to fill the screen (Note: this is experimental and may not work as expected) - **Sleep Screen Cover Filter**: What filter will be applied to the book cover when "Cover" sleep screen is selected - - "No filter" (default) - The cover image will be converted to a grayscale image and displayed as it is - - "B&W" - The image will be displayed as a black & white image without grayscale conversion - - "Inverted B&W" - The image will be inverted as in white&black and will be displayed without grayscale conversion + - "None" (default) - The cover image will be converted to a grayscale image and displayed as it is + - "Contrast" - The image will be displayed as a black & white image without grayscale conversion + - "Inverted" - The image will be inverted as in white&black and will be displayed without grayscale conversion - **Status Bar**: Configure the status bar displayed while reading: - "None" - No status bar - "No Progress" - Show status bar without reading progress diff --git a/src/activities/settings/SettingsActivity.cpp b/src/activities/settings/SettingsActivity.cpp index 5325125c..847f2b8d 100644 --- a/src/activities/settings/SettingsActivity.cpp +++ b/src/activities/settings/SettingsActivity.cpp @@ -17,7 +17,7 @@ const SettingInfo displaySettings[displaySettingsCount] = { SettingInfo::Enum("Sleep Screen", &CrossPointSettings::sleepScreen, {"Dark", "Light", "Custom", "Cover", "None"}), SettingInfo::Enum("Sleep Screen Cover Mode", &CrossPointSettings::sleepScreenCoverMode, {"Fit", "Crop"}), SettingInfo::Enum("Sleep Screen Cover Filter", &CrossPointSettings::sleepScreenCoverFilter, - {"No filter", "B&W", "Inverted B&W"}), + {"None", "Contrast", "Inverted"}), SettingInfo::Enum("Status Bar", &CrossPointSettings::statusBar, {"None", "No Progress", "Full"}), SettingInfo::Enum("Hide Battery %", &CrossPointSettings::hideBatteryPercentage, {"Never", "In Reader", "Always"}), SettingInfo::Enum("Refresh Frequency", &CrossPointSettings::refreshFrequency,