2015-11-03 14:04:07 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-11-27 16:02:23 -05:00
|
|
|
<PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2016-06-16 14:52:51 -04:00
|
|
|
|
|
|
|
<PreferenceScreen
|
2016-11-27 16:02:23 -05:00
|
|
|
android:icon="@drawable/ic_file_download_black_24dp"
|
2016-06-16 14:52:51 -04:00
|
|
|
android:key="downloads_screen"
|
2016-03-21 17:30:30 -04:00
|
|
|
android:persistent="false"
|
2016-11-27 16:02:23 -05:00
|
|
|
android:title="@string/pref_category_downloads"
|
|
|
|
app:asp_tintEnabled="true">
|
2016-06-16 14:52:51 -04:00
|
|
|
|
|
|
|
<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"
|
2016-11-15 13:12:03 -05:00
|
|
|
android:title="@string/pref_download_only_over_wifi" />
|
2016-06-16 14:52:51 -04:00
|
|
|
|
|
|
|
<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"
|
2016-09-05 05:08:16 -04:00
|
|
|
android:title="@string/pref_remove_after_read" />
|
2016-06-16 14:52:51 -04:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_remove_after_marked_as_read_key"
|
2016-11-15 13:12:03 -05:00
|
|
|
android:title="@string/pref_remove_after_marked_as_read" />
|
2016-06-16 14:52:51 -04:00
|
|
|
|
2016-09-05 05:08:16 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.preference.IntListPreference
|
|
|
|
android:defaultValue="-1"
|
|
|
|
android:entries="@array/remove_after_read_slots"
|
|
|
|
android:entryValues="@array/remove_after_read_slots_values"
|
|
|
|
android:key="@string/pref_remove_after_read_slots_key"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_remove_after_read" />
|
2016-06-16 14:52:51 -04:00
|
|
|
|
2016-12-06 11:22:03 -05:00
|
|
|
<PreferenceCategory
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/pref_download_new" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_download_new_key"
|
|
|
|
android:title="@string/pref_download_new"/>
|
|
|
|
|
2016-06-16 14:52:51 -04:00
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|