Add an option to automatically update last chapter read and another one to ask before updating. Fixes #10

This commit is contained in:
inorichi
2016-01-11 18:21:17 +01:00
parent 226cc6990d
commit b170520370
8 changed files with 106 additions and 33 deletions

View File

@@ -19,4 +19,15 @@
android:title="@string/pref_update_only_non_completed"
android:defaultValue="false"/>
<CheckBoxPreference
android:key="@string/pref_auto_update_manga_sync_key"
android:title="@string/pref_auto_update_manga_sync"
android:defaultValue="true"/>
<CheckBoxPreference
android:key="@string/pref_ask_update_manga_sync_key"
android:title="@string/pref_ask_update_manga_sync"
android:defaultValue="false"
android:dependency="@string/pref_auto_update_manga_sync_key"/>
</PreferenceScreen>