Remove unneeded options

This commit is contained in:
jpirnay
2026-05-13 21:10:02 +02:00
parent 60f326cb7f
commit 7f395ceb0f
7 changed files with 0 additions and 27 deletions
-4
View File
@@ -318,10 +318,6 @@ STR_OK_BUTTON: "OK"
STR_SLEEP_COVER_FILTER: "Sleep Screen Cover Filter"
STR_FILTER_CONTRAST: "Contrast"
STR_TILT_PAGE_TURN: "Tilt Page Turn"
STR_TILT_STABILIZATION: "Tilt Mode"
STR_TILT_MODE_RAW: "Raw Acceleration"
STR_TILT_MODE_SMOOTH: "Smoothed Acceleration"
STR_TILT_MODE_KALMAN: "Gyro/Accel Fusion"
STR_CUSTOMISE_STATUS_BAR: "Customise Status Bar"
STR_CHAPTER_PAGE_COUNT: "Chapter Page Count"
STR_BOOK_PROGRESS_PERCENTAGE: "Book Progress Percentage"
-4
View File
@@ -252,10 +252,6 @@ STR_OK_BUTTON: "OK"
STR_SLEEP_COVER_FILTER: "Filtre écran de veille"
STR_FILTER_CONTRAST: "Contraste"
STR_TILT_PAGE_TURN: "Changement de page par inclinaison"
STR_TILT_STABILIZATION: "Mode inclinaison"
STR_TILT_MODE_RAW: "Acceleration brute"
STR_TILT_MODE_SMOOTH: "Acceleration lisse"
STR_TILT_MODE_KALMAN: "Fusion gyroscope/accelerometre"
STR_CUSTOMISE_STATUS_BAR: "Personnaliser la barre d'état"
STR_CHAPTER_PAGE_COUNT: "Nombre de pages du chapitre"
STR_BOOK_PROGRESS_PERCENTAGE: "Pourcentage de progression"
-4
View File
@@ -243,10 +243,6 @@ STR_OK_BUTTON: "OK"
STR_SLEEP_COVER_FILTER: "Standby-Coverfilter"
STR_FILTER_CONTRAST: "Kontrast"
STR_TILT_PAGE_TURN: "Seitenblättern durch Neigen"
STR_TILT_STABILIZATION: "Neigungsmodus"
STR_TILT_MODE_RAW: "Rohbeschleunigung"
STR_TILT_MODE_SMOOTH: "Geglättete Beschleunigung"
STR_TILT_MODE_KALMAN: "Gyro-/Beschleunigungsfusion"
STR_CUSTOMISE_STATUS_BAR: "Statusleiste anpassen"
STR_CHAPTER_PAGE_COUNT: "Kapitel-Seitenanzahl"
STR_BOOK_PROGRESS_PERCENTAGE: "Buchfortschritt in %"
-4
View File
@@ -252,10 +252,6 @@ STR_OK_BUTTON: "OK"
STR_SLEEP_COVER_FILTER: "Filtro copertina"
STR_FILTER_CONTRAST: "Contrasto"
STR_TILT_PAGE_TURN: "Cambio pagina con inclinazione"
STR_TILT_STABILIZATION: "Modalita inclinazione"
STR_TILT_MODE_RAW: "Accelerazione grezza"
STR_TILT_MODE_SMOOTH: "Accelerazione smussata"
STR_TILT_MODE_KALMAN: "Fusione giroscopio/accelerometro"
STR_CUSTOMISE_STATUS_BAR: "Personalizza barra di stato"
STR_CHAPTER_PAGE_COUNT: "Conteggio pagine capitolo"
STR_BOOK_PROGRESS_PERCENTAGE: "Percentuale avanzamento lettura"
-4
View File
@@ -436,10 +436,6 @@ STR_CRASH_DESCRIPTION: "Szczegółowy raport zapisany do crash_report.txt. Prosi
STR_CRASH_REASON: "Powód awarii:"
STR_CRASH_NO_REASON: "(Nie odnotowano powodu)"
STR_TILT_PAGE_TURN: "Kartkowanie przechyłem"
STR_TILT_STABILIZATION: "Tryb przechyłu"
STR_TILT_MODE_RAW: "Surowe przyspieszenie"
STR_TILT_MODE_SMOOTH: "Wygładzone przyspieszenie"
STR_TILT_MODE_KALMAN: "Fuzja żyroskopu/akcelerometru"
STR_RENDER_BENCHMARK: "Benchmark renderowania"
STR_WEATHER: "Pogoda"
STR_WEATHER_LOCATION: "Lokalizacja"
-2
View File
@@ -267,8 +267,6 @@ class CrossPointSettings {
uint8_t imageDithering = IMAGE_DITHER_BAYER;
// Tilt-based page turning (X3 only — requires QMI8658 IMU)
uint8_t tiltPageTurn = 0;
// Tilt input processing mode: 0 = raw accel, 1 = smoothed accel, 2 = gyro/accelerometer fusion
uint8_t tiltStabilization = 0;
// Action when the computed tilt value crosses the positive threshold.
uint8_t tiltPositiveAction = TILT_ACT_NEXT_PAGE;
// Action when the computed tilt value crosses the negative threshold.
-5
View File
@@ -230,11 +230,6 @@ inline const std::vector<SettingInfo> list = {
StrId::STR_CAT_CONTROLS)
.withSubmenu(StrId::STR_TILT_PAGE_TURN)
.withDeviceTarget(SettingDeviceTarget::X3),
SettingInfo::Enum(StrId::STR_TILT_STABILIZATION, &CrossPointSettings::tiltStabilization,
{StrId::STR_TILT_MODE_RAW, StrId::STR_TILT_MODE_SMOOTH, StrId::STR_TILT_MODE_KALMAN},
"tiltStabilization", StrId::STR_CAT_CONTROLS)
.withSubmenu(StrId::STR_TILT_PAGE_TURN)
.withDeviceTarget(SettingDeviceTarget::X3),
SettingInfo::Enum(StrId::STR_DIR_RIGHT, &CrossPointSettings::tiltPositiveAction,
{StrId::STR_NONE_OPT, StrId::STR_NEXT_PAGE, StrId::STR_PREV_PAGE}, "tiltPositiveAction",
StrId::STR_CAT_CONTROLS)