2015-11-03 22:04:07 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-11-28 00:02:23 +03:00
|
|
|
<PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2016-06-16 21:52:51 +03:00
|
|
|
|
|
|
|
<PreferenceScreen
|
2016-11-28 00:02:23 +03:00
|
|
|
android:icon="@drawable/ic_file_download_black_24dp"
|
2016-06-16 21:52:51 +03:00
|
|
|
android:key="downloads_screen"
|
2016-03-22 00:30:30 +03:00
|
|
|
android:persistent="false"
|
2016-11-28 00:02:23 +03:00
|
|
|
android:title="@string/pref_category_downloads"
|
|
|
|
app:asp_tintEnabled="true">
|
2016-06-16 21:52:51 +03: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 21:12:03 +03:00
|
|
|
android:title="@string/pref_download_only_over_wifi" />
|
2016-06-16 21:52:51 +03: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 12:08:16 +03:00
|
|
|
android:title="@string/pref_remove_after_read" />
|
2016-06-16 21:52:51 +03:00
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_remove_after_marked_as_read_key"
|
2016-11-15 21:12:03 +03:00
|
|
|
android:title="@string/pref_remove_after_marked_as_read" />
|
2016-06-16 21:52:51 +03:00
|
|
|
|
2016-09-05 12:08:16 +03: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 21:52:51 +03:00
|
|
|
|
2016-12-06 19:22:03 +03: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 21:52:51 +03:00
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|