2015-11-03 20:04:07 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-06-16 20:52:51 +02:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="downloads_screen"
|
2016-03-21 22:30:30 +01:00
|
|
|
android:persistent="false"
|
2016-06-16 20:52:51 +02:00
|
|
|
android:title="@string/pref_category_downloads">
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="@string/pref_download_directory_key"
|
|
|
|
android:title="@string/pref_download_directory"/>
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_download_only_over_wifi_key"
|
|
|
|
android:title="@string/pref_download_only_over_wifi"/>
|
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.widget.preference.IntListPreference
|
|
|
|
android:defaultValue="1"
|
|
|
|
android:entries="@array/download_slots"
|
|
|
|
android:entryValues="@array/download_slots"
|
|
|
|
android:key="@string/pref_download_slots_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_download_slots"/>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/cat_remove_after_read"/>
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_remove_after_marked_as_read_key"
|
|
|
|
android:title="@string/pref_remove_after_marked_as_read"/>
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_remove_after_read_key"
|
|
|
|
android:summary="@string/current_chapter"
|
|
|
|
android:title="@string/pref_remove_after_read"/>
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="@string/pref_remove_after_read_key"
|
|
|
|
android:key="@string/pref_remove_after_read_previous_key"
|
|
|
|
android:summary="@string/previous_chapter"
|
|
|
|
android:title="@string/pref_remove_after_read"/>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|