diff options
author | William Wilgus <wilgus.william@gmail.com> | 2022-06-20 22:37:09 -0400 |
---|---|---|
committer | William Wilgus <me.theuser@yahoo.com> | 2022-06-21 22:43:39 -0400 |
commit | 8283752223a4c0f0d98c1798568526546c4ab7b9 (patch) | |
tree | ab2dddab69f41c9f5f665eae1ed7bca438bd5919 | |
parent | e75e07e1b68b5ce59b0a77f321c90a091682e362 (diff) | |
download | rockbox-8283752223.tar.gz rockbox-8283752223.zip |
Reset settings on button hold
extend this properly to the gigabeast and iriver
updated manual entries
Change-Id: Ibd1bce8d113193cb3b76f4daf0d6ceb01a2f7585
-rw-r--r-- | apps/features.txt | 3 | ||||
-rw-r--r-- | apps/lang/english.lang | 13 | ||||
-rw-r--r-- | apps/main.c | 8 | ||||
-rw-r--r-- | apps/menus/settings_menu.c | 7 | ||||
-rw-r--r-- | apps/settings.h | 7 | ||||
-rw-r--r-- | apps/settings_list.c | 7 | ||||
-rw-r--r-- | manual/configure_rockbox/startup_shutdown_options.tex | 44 |
7 files changed, 64 insertions, 25 deletions
diff --git a/apps/features.txt b/apps/features.txt index da2064ab2f..2262f7502e 100644 --- a/apps/features.txt +++ b/apps/features.txt @@ -290,7 +290,8 @@ multi_boot hibylinux #endif -#if defined(SETTINGS_RESET) || \ +#if defined(BUTTON_REC) || \ + (CONFIG_KEYPAD == GIGABEAT_PAD) || \ (CONFIG_KEYPAD == IPOD_4G_PAD) || \ (CONFIG_KEYPAD == IRIVER_H10_PAD) clear_settings_on_hold diff --git a/apps/lang/english.lang b/apps/lang/english.lang index f4571aa6bc..75849714e6 100644 --- a/apps/lang/english.lang +++ b/apps/lang/english.lang @@ -16374,14 +16374,21 @@ user: core <source> *: none - clear_settings_on_hold, ipod4g, iriverh10: "Clear settings when hold switch is on during startup" + ipod3g: none + ipod*: "Clear settings when hold switch is on during startup" + clear_settings_on_hold, iriverh10: "Clear settings when reset button is held during startup" </source> <dest> *: none - clear_settings_on_hold, ipod4g, iriverh10: "Clear settings when hold switch is on during startup" + ipod3g: none + ipod*: "Clear settings when hold switch is on during startup" + clear_settings_on_hold, iriverh10: "Clear settings when reset button is held during startup" </dest> <voice> *: none - clear_settings_on_hold, ipod4g, iriverh10: "Clear settings when hold switch is on during startup" + ipod3g: none + ipod*: "Clear settings when hold switch is on during startup" + clear_settings_on_hold, iriverh10: "Clear settings when reset button is held during startup" </voice> </phrase> + diff --git a/apps/main.c b/apps/main.c index 515a9978f5..59932d6185 100644 --- a/apps/main.c +++ b/apps/main.c @@ -570,16 +570,18 @@ static void init(void) settings_load(SETTINGS_ALL); CHART("<settings_load(ALL)"); -#if defined(SETTINGS_RESET) || \ +#if defined(BUTTON_REC) || \ + (CONFIG_KEYPAD == GIGABEAT_PAD) || \ (CONFIG_KEYPAD == IPOD_4G_PAD) || \ (CONFIG_KEYPAD == IRIVER_H10_PAD) + if (global_settings.clear_settings_on_hold && #ifdef SETTINGS_RESET /* Reset settings if holding the reset button. (Rec on Archos, A on Gigabeat) */ - if ((button_status() & SETTINGS_RESET) == SETTINGS_RESET) + ((button_status() & SETTINGS_RESET) == SETTINGS_RESET)) #else /* Reset settings if the hold button is turned on */ - if (global_settings.clear_settings_on_hold && button_hold()) + (button_hold())) #endif { splash(HZ*2, str(LANG_RESET_DONE_CLEAR)); diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c index 60f206c86f..460909318a 100644 --- a/apps/menus/settings_menu.c +++ b/apps/menus/settings_menu.c @@ -584,9 +584,10 @@ MENUITEM_SETTING(keypress_restarts_sleeptimer, &global_settings.keypress_restarts_sleeptimer, NULL); MENUITEM_SETTING(show_shutdown_message, &global_settings.show_shutdown_message, NULL); -#if defined(SETTINGS_RESET) || \ - (CONFIG_KEYPAD == IPOD_4G_PAD) || \ - (CONFIG_KEYPAD == IRIVER_H10_PAD) +#if defined(BUTTON_REC) || \ + (CONFIG_KEYPAD == GIGABEAT_PAD) || \ + (CONFIG_KEYPAD == IPOD_4G_PAD) || \ + (CONFIG_KEYPAD == IRIVER_H10_PAD) #define SETTINGS_CLEAR_ON_HOLD MENUITEM_SETTING(clear_settings_on_hold, &global_settings.clear_settings_on_hold, NULL); diff --git a/apps/settings.h b/apps/settings.h index ae9b6f31ce..092c04a76b 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -868,9 +868,10 @@ struct user_settings #if defined(DX50) || defined(DX90) || (defined(HAVE_USB_POWER) && !defined(USB_NONE) && !defined(SIMULATOR)) int usb_mode; #endif -#if defined(SETTINGS_RESET) || \ - (CONFIG_KEYPAD == IPOD_4G_PAD) || \ - (CONFIG_KEYPAD == IRIVER_H10_PAD) +#if defined(BUTTON_REC) || \ + (CONFIG_KEYPAD == GIGABEAT_PAD) || \ + (CONFIG_KEYPAD == IPOD_4G_PAD) || \ + (CONFIG_KEYPAD == IRIVER_H10_PAD) bool clear_settings_on_hold; #endif }; diff --git a/apps/settings_list.c b/apps/settings_list.c index d6449d1c6f..fc526987e2 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -2167,9 +2167,10 @@ const struct settings_list settings[] = { #endif ), #endif -#if defined(SETTINGS_RESET) || \ - (CONFIG_KEYPAD == IPOD_4G_PAD) || \ - (CONFIG_KEYPAD == IRIVER_H10_PAD) +#if defined(BUTTON_REC) || \ + (CONFIG_KEYPAD == GIGABEAT_PAD) || \ + (CONFIG_KEYPAD == IPOD_4G_PAD) || \ + (CONFIG_KEYPAD == IRIVER_H10_PAD) OFFON_SETTING(0, clear_settings_on_hold, LANG_CLEAR_SETTINGS_ON_HOLD, true, "clear settings on hold", NULL), #endif diff --git a/manual/configure_rockbox/startup_shutdown_options.tex b/manual/configure_rockbox/startup_shutdown_options.tex index 9bc85d6be8..e4639079b5 100644 --- a/manual/configure_rockbox/startup_shutdown_options.tex +++ b/manual/configure_rockbox/startup_shutdown_options.tex @@ -37,16 +37,42 @@ are run at startup, or initiate a shutdown when conditions are met. \end{description} \opt{clear_settings_on_hold}{ -\subsection{\label{ref:ClearOnHold}Hold switch clears settings on startup } - This option controls whether Rockbox clears its configuration if the hold - switch is enabled during startup. + \opt{ipod}{ + \subsection{\label{ref:ClearOnHold}Hold switch clears settings on startup } + This option controls whether Rockbox clears its configuration if the hold + switch is enabled during startup. - \begin{description} - \item[Yes.] - Clear the settings if the hold switch is enabled during startup. - \item[No.] - Do not clear the settings, regardless of the hold switch's position. - \end{description} + \begin{description} + \item[Yes.] + Clear the settings if the hold switch is enabled during startup. + \item[No.] + Do not clear the settings, regardless of the hold switch's position. + \end{description} + } + \nopt{ipod}{ + \opt{GIGABEAT_S_PAD}{ + \subsection{\label{ref:ClearOnHold}BUTTON A clears settings on startup } + This option controls whether Rockbox clears its configuration if BUTTON_A + is held during startup. + \begin{description} + \item[Yes.] + Clear the settings if the BUTTON A is held. + \item[No.] + Do not clear the settings, regardless of BUTTON A. + \end{description} + } + \nopt{GIGABEAT_S_PAD}{ + \subsection{\label{ref:ClearOnHold}BUTTON REC clears settings on startup } + This option controls whether Rockbox clears its configuration if BUTTON REC + is held during startup. + \begin{description} + \item[Yes.] + Clear the settings if the BUTTON REC is held. + \item[No.] + Do not clear the settings, regardless of BUTTON REC. + \end{description} + } + } } \subsection{\label{ref:IdlePoweroffSetting}Idle Poweroff} |