mirror of https://github.com/M66B/FairEmail.git
Moved watchdog to advanced
This commit is contained in:
parent
65ec2c625e
commit
49d8a0167b
|
@ -112,7 +112,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
private SwitchCompat swDeepL;
|
private SwitchCompat swDeepL;
|
||||||
private ImageButton ibDeepL;
|
private ImageButton ibDeepL;
|
||||||
private TextView tvSdcard;
|
private TextView tvSdcard;
|
||||||
private SwitchCompat swWatchdog;
|
|
||||||
private SwitchCompat swUpdates;
|
private SwitchCompat swUpdates;
|
||||||
private ImageButton ibChannelUpdated;
|
private ImageButton ibChannelUpdated;
|
||||||
private SwitchCompat swCheckWeekly;
|
private SwitchCompat swCheckWeekly;
|
||||||
|
@ -125,6 +124,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
private TextView tvLastCleanup;
|
private TextView tvLastCleanup;
|
||||||
|
|
||||||
private CardView cardAdvanced;
|
private CardView cardAdvanced;
|
||||||
|
private SwitchCompat swWatchdog;
|
||||||
private SwitchCompat swExperiments;
|
private SwitchCompat swExperiments;
|
||||||
private TextView tvExperimentsHint;
|
private TextView tvExperimentsHint;
|
||||||
private SwitchCompat swProtocol;
|
private SwitchCompat swProtocol;
|
||||||
|
@ -204,10 +204,11 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
private final static String[] RESET_OPTIONS = new String[]{
|
private final static String[] RESET_OPTIONS = new String[]{
|
||||||
"sort_answers", "shortcuts", "fts",
|
"sort_answers", "shortcuts", "fts",
|
||||||
"classification", "class_min_probability", "class_min_difference",
|
"classification", "class_min_probability", "class_min_difference",
|
||||||
"language", "deepl_enabled", "watchdog",
|
"language", "deepl_enabled",
|
||||||
"updates", "weekly", "show_changelog",
|
"updates", "weekly", "show_changelog",
|
||||||
"crash_reports", "cleanup_attachments",
|
"crash_reports", "cleanup_attachments",
|
||||||
"experiments", "protocol", "log_level", "debug", "leak_canary", "test1", "test2", "test3", "test4", "test5",
|
"watchdog", "experiments", "protocol", "log_level", "debug", "leak_canary", "test1",
|
||||||
|
"test2", "test3", "test4", "test5",
|
||||||
"work_manager", // "external_storage",
|
"work_manager", // "external_storage",
|
||||||
"query_threads", "wal", "sqlite_checkpoints", "sqlite_analyze", "sqlite_cache",
|
"query_threads", "wal", "sqlite_checkpoints", "sqlite_analyze", "sqlite_cache",
|
||||||
"chunk_size", "thread_range", "undo_manager", "webview_legacy", "browser_zoom",
|
"chunk_size", "thread_range", "undo_manager", "webview_legacy", "browser_zoom",
|
||||||
|
@ -281,7 +282,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
swDeepL = view.findViewById(R.id.swDeepL);
|
swDeepL = view.findViewById(R.id.swDeepL);
|
||||||
ibDeepL = view.findViewById(R.id.ibDeepL);
|
ibDeepL = view.findViewById(R.id.ibDeepL);
|
||||||
tvSdcard = view.findViewById(R.id.tvSdcard);
|
tvSdcard = view.findViewById(R.id.tvSdcard);
|
||||||
swWatchdog = view.findViewById(R.id.swWatchdog);
|
|
||||||
swUpdates = view.findViewById(R.id.swUpdates);
|
swUpdates = view.findViewById(R.id.swUpdates);
|
||||||
ibChannelUpdated = view.findViewById(R.id.ibChannelUpdated);
|
ibChannelUpdated = view.findViewById(R.id.ibChannelUpdated);
|
||||||
swCheckWeekly = view.findViewById(R.id.swWeekly);
|
swCheckWeekly = view.findViewById(R.id.swWeekly);
|
||||||
|
@ -294,6 +294,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
tvLastCleanup = view.findViewById(R.id.tvLastCleanup);
|
tvLastCleanup = view.findViewById(R.id.tvLastCleanup);
|
||||||
|
|
||||||
cardAdvanced = view.findViewById(R.id.cardAdvanced);
|
cardAdvanced = view.findViewById(R.id.cardAdvanced);
|
||||||
|
swWatchdog = view.findViewById(R.id.swWatchdog);
|
||||||
swExperiments = view.findViewById(R.id.swExperiments);
|
swExperiments = view.findViewById(R.id.swExperiments);
|
||||||
tvExperimentsHint = view.findViewById(R.id.tvExperimentsHint);
|
tvExperimentsHint = view.findViewById(R.id.tvExperimentsHint);
|
||||||
swProtocol = view.findViewById(R.id.swProtocol);
|
swProtocol = view.findViewById(R.id.swProtocol);
|
||||||
|
@ -599,13 +600,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
swWatchdog.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
|
||||||
@Override
|
|
||||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
|
||||||
prefs.edit().putBoolean("watchdog", checked).apply();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
swUpdates.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
swUpdates.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||||
|
@ -677,6 +671,13 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
swWatchdog.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
|
||||||
|
prefs.edit().putBoolean("watchdog", checked).apply();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
tvExperimentsHint.setPaintFlags(tvExperimentsHint.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
tvExperimentsHint.setPaintFlags(tvExperimentsHint.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||||
tvExperimentsHint.setOnClickListener(new View.OnClickListener() {
|
tvExperimentsHint.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -1684,7 +1685,6 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
spLanguage.setSelection(selected);
|
spLanguage.setSelection(selected);
|
||||||
|
|
||||||
swDeepL.setChecked(prefs.getBoolean("deepl_enabled", false));
|
swDeepL.setChecked(prefs.getBoolean("deepl_enabled", false));
|
||||||
swWatchdog.setChecked(prefs.getBoolean("watchdog", true));
|
|
||||||
swUpdates.setChecked(prefs.getBoolean("updates", true));
|
swUpdates.setChecked(prefs.getBoolean("updates", true));
|
||||||
swCheckWeekly.setChecked(prefs.getBoolean("weekly", Helper.hasPlayStore(getContext())));
|
swCheckWeekly.setChecked(prefs.getBoolean("weekly", Helper.hasPlayStore(getContext())));
|
||||||
swCheckWeekly.setEnabled(swUpdates.isChecked());
|
swCheckWeekly.setEnabled(swUpdates.isChecked());
|
||||||
|
@ -1694,6 +1694,7 @@ public class FragmentOptionsMisc extends FragmentBase implements SharedPreferenc
|
||||||
tvUuid.setText(prefs.getString("uuid", null));
|
tvUuid.setText(prefs.getString("uuid", null));
|
||||||
swCleanupAttachments.setChecked(prefs.getBoolean("cleanup_attachments", false));
|
swCleanupAttachments.setChecked(prefs.getBoolean("cleanup_attachments", false));
|
||||||
|
|
||||||
|
swWatchdog.setChecked(prefs.getBoolean("watchdog", true));
|
||||||
swProtocol.setChecked(prefs.getBoolean("protocol", false));
|
swProtocol.setChecked(prefs.getBoolean("protocol", false));
|
||||||
swLogInfo.setChecked(prefs.getInt("log_level", Log.getDefaultLogLevel()) <= android.util.Log.INFO);
|
swLogInfo.setChecked(prefs.getInt("log_level", Log.getDefaultLogLevel()) <= android.util.Log.INFO);
|
||||||
swDebug.setChecked(prefs.getBoolean("debug", false));
|
swDebug.setChecked(prefs.getBoolean("debug", false));
|
||||||
|
|
|
@ -344,18 +344,6 @@
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/ibDeepL" />
|
app:layout_constraintTop_toBottomOf="@id/ibDeepL" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
|
||||||
android:id="@+id/swWatchdog"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginTop="12dp"
|
|
||||||
android:checked="true"
|
|
||||||
android:text="@string/title_advanced_watchdog"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvSdcard"
|
|
||||||
app:switchPadding="12dp" />
|
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
android:id="@+id/swUpdates"
|
android:id="@+id/swUpdates"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
|
@ -365,7 +353,7 @@
|
||||||
android:text="@string/title_advanced_updates"
|
android:text="@string/title_advanced_updates"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/swWatchdog"
|
app:layout_constraintTop_toBottomOf="@id/tvSdcard"
|
||||||
app:switchPadding="12dp" />
|
app:switchPadding="12dp" />
|
||||||
|
|
||||||
<eu.faircode.email.FixedImageButton
|
<eu.faircode.email.FixedImageButton
|
||||||
|
@ -535,6 +523,20 @@
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="parent" />
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
|
android:id="@+id/swWatchdog"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="12dp"
|
||||||
|
android:checked="true"
|
||||||
|
android:drawableStart="@drawable/twotone_check_24"
|
||||||
|
android:drawablePadding="6dp"
|
||||||
|
android:text="@string/title_advanced_watchdog"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/tvCaptionAdvanced"
|
||||||
|
app:switchPadding="12dp" />
|
||||||
|
|
||||||
<androidx.appcompat.widget.SwitchCompat
|
<androidx.appcompat.widget.SwitchCompat
|
||||||
android:id="@+id/swExperiments"
|
android:id="@+id/swExperiments"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
|
@ -545,7 +547,7 @@
|
||||||
android:text="@string/title_advanced_experiments"
|
android:text="@string/title_advanced_experiments"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvCaptionAdvanced"
|
app:layout_constraintTop_toBottomOf="@id/swWatchdog"
|
||||||
app:switchPadding="12dp" />
|
app:switchPadding="12dp" />
|
||||||
|
|
||||||
<eu.faircode.email.FixedTextView
|
<eu.faircode.email.FixedTextView
|
||||||
|
|
Loading…
Reference in New Issue