mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
incremented preferences/Settings.VERSION for new settings
This commit is contained in:
parent
3ffb5021e1
commit
6a02552b23
@ -55,6 +55,7 @@ public class AccountSettings {
|
||||
R.array.account_settings_message_age_values));
|
||||
s.put("messageFormat",
|
||||
new EnumSetting(Account.MessageFormat.class, Account.DEFAULT_MESSAGE_FORMAT));
|
||||
s.put("messageFormatAuto", new BooleanSetting(Account.DEFAULT_MESSAGE_FORMAT_AUTO)); // added to version 2
|
||||
s.put("messageReadReceipt", new BooleanSetting(Account.DEFAULT_MESSAGE_READ_RECEIPT));
|
||||
s.put("notificationUnreadCount", new BooleanSetting(true));
|
||||
s.put("notifyMailCheck", new BooleanSetting(false));
|
||||
@ -65,7 +66,7 @@ public class AccountSettings {
|
||||
s.put("quoteStyle",
|
||||
new EnumSetting(Account.QuoteStyle.class, Account.DEFAULT_QUOTE_STYLE));
|
||||
s.put("replyAfterQuote", new BooleanSetting(Account.DEFAULT_REPLY_AFTER_QUOTE));
|
||||
//s.put("stripSignature", new BooleanSetting(Account.DEFAULT_STRIP_SIGNATURE)); // added to version 2
|
||||
s.put("stripSignature", new BooleanSetting(Account.DEFAULT_STRIP_SIGNATURE)); // added to version 2
|
||||
s.put("ring", new BooleanSetting(true));
|
||||
s.put("ringtone", new RingtoneSetting("content://settings/system/notification_sound"));
|
||||
s.put("saveAllHeaders", new BooleanSetting(true));
|
||||
|
@ -32,7 +32,7 @@ public class Settings {
|
||||
*
|
||||
* @see SettingsExporter
|
||||
*/
|
||||
public static final int VERSION = 1;
|
||||
public static final int VERSION = 2;
|
||||
|
||||
public static Map<String, String> validate(Map<String, SettingsDescription> settings,
|
||||
Map<String, String> importedSettings, boolean useDefaultValues) {
|
||||
|
Loading…
Reference in New Issue
Block a user