mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-20 04:31:47 -05:00
incremented Settings.VERSION
This commit is contained in:
parent
079996ebe5
commit
18ad12eda7
@ -4072,6 +4072,7 @@ public class MessagingController implements Runnable {
|
|||||||
// Fetch the message back from the store. This is the Message that's returned to the caller.
|
// Fetch the message back from the store. This is the Message that's returned to the caller.
|
||||||
localMessage = localFolder.getMessage(message.getUid());
|
localMessage = localFolder.getMessage(message.getUid());
|
||||||
localMessage.setFlag(Flag.X_DOWNLOADED_FULL, true);
|
localMessage.setFlag(Flag.X_DOWNLOADED_FULL, true);
|
||||||
|
|
||||||
PendingCommand command = new PendingCommand();
|
PendingCommand command = new PendingCommand();
|
||||||
command.command = PENDING_COMMAND_APPEND;
|
command.command = PENDING_COMMAND_APPEND;
|
||||||
command.arguments = new String[] {
|
command.arguments = new String[] {
|
||||||
|
@ -27,7 +27,7 @@ public class AccountSettings {
|
|||||||
s.put("chipColor", new ColorSetting(0xFF0000FF));
|
s.put("chipColor", new ColorSetting(0xFF0000FF));
|
||||||
s.put("cryptoApp", new StringSetting(Apg.NAME));
|
s.put("cryptoApp", new StringSetting(Apg.NAME));
|
||||||
s.put("cryptoAutoSignature", new BooleanSetting(false));
|
s.put("cryptoAutoSignature", new BooleanSetting(false));
|
||||||
//s.put("cryptoAutoEncrypt", new BooleanSetting(false)); // added to version 3?
|
s.put("cryptoAutoEncrypt", new BooleanSetting(false)); // added to version 3
|
||||||
s.put("defaultQuotedTextShown", new BooleanSetting(Account.DEFAULT_QUOTED_TEXT_SHOWN));
|
s.put("defaultQuotedTextShown", new BooleanSetting(Account.DEFAULT_QUOTED_TEXT_SHOWN));
|
||||||
s.put("deletePolicy", new DeletePolicySetting(Account.DELETE_POLICY_NEVER));
|
s.put("deletePolicy", new DeletePolicySetting(Account.DELETE_POLICY_NEVER));
|
||||||
s.put("displayCount", new IntegerResourceSetting(K9.DEFAULT_VISIBLE_LIMIT,
|
s.put("displayCount", new IntegerResourceSetting(K9.DEFAULT_VISIBLE_LIMIT,
|
||||||
|
@ -32,7 +32,7 @@ public class Settings {
|
|||||||
*
|
*
|
||||||
* @see SettingsExporter
|
* @see SettingsExporter
|
||||||
*/
|
*/
|
||||||
public static final int VERSION = 2;
|
public static final int VERSION = 3;
|
||||||
|
|
||||||
public static Map<String, String> validate(Map<String, SettingsDescription> settings,
|
public static Map<String, String> validate(Map<String, SettingsDescription> settings,
|
||||||
Map<String, String> importedSettings, boolean useDefaultValues) {
|
Map<String, String> importedSettings, boolean useDefaultValues) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user