- added orange theme (its like yellow but slightly darker) - added enforce keyframes at cuts preferences (it will also apply when you remove sponsorblock items) - fixed cookies not getting saved on older droids - fixed app making new folder instead of merging when moving files - added ability to put multiple preferred format ids separated by commas for both audio and video - added support for piped links - fixed bug where if an item has no formats and you update audio formats and then go to video tab it will not show the video formats too - made terminal share icon hidden by default
114 lines
No EOL
3.9 KiB
XML
114 lines
No EOL
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="false"
|
|
android:icon="@drawable/ic_incognito"
|
|
android:key="incognito"
|
|
app:summary="@string/incognito_summary"
|
|
app:title="@string/incognito" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="true"
|
|
android:icon="@drawable/ic_card"
|
|
android:key="download_card"
|
|
app:summary="@string/download_card_summary"
|
|
app:title="@string/show_download_card" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="false"
|
|
android:icon="@drawable/ic_speed"
|
|
android:key="quick_download"
|
|
app:summary="@string/quick_download_summary"
|
|
app:title="@string/quick_download" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="true"
|
|
android:icon="@drawable/metered_networks"
|
|
android:key="metered_networks"
|
|
app:summary="@string/download_over_metered_networks_summary"
|
|
app:title="@string/download_over_metered_networks" />
|
|
|
|
|
|
<EditTextPreference
|
|
android:icon="@drawable/baseline_network_locked_24"
|
|
app:key="proxy"
|
|
app:defaultValue=""
|
|
app:summary="@string/socks5_proxy_summary"
|
|
app:title="@string/socks5_proxy" />
|
|
|
|
<ListPreference
|
|
android:dependency="download_card"
|
|
android:defaultValue="video"
|
|
android:entries="@array/download_types"
|
|
android:entryValues="@array/download_types_values"
|
|
android:icon="@drawable/ic_download_type"
|
|
app:key="preferred_download_type"
|
|
app:summary="@string/preferred_download_type_summary"
|
|
app:title="@string/preferred_download_type" />
|
|
|
|
<SeekBarPreference
|
|
app:dependency="aria2"
|
|
android:defaultValue="3"
|
|
android:icon="@drawable/ic_lines"
|
|
android:max="25"
|
|
app:key="concurrent_fragments"
|
|
app:min="1"
|
|
app:showSeekBarValue="true"
|
|
android:dependency="aria2"
|
|
app:summary="@string/concurrent_fragments_summary"
|
|
app:title="@string/concurrent_fragments" />
|
|
|
|
<SeekBarPreference
|
|
android:defaultValue="1"
|
|
android:icon="@drawable/ic_concurrent_downloads"
|
|
android:max="10"
|
|
app:key="concurrent_downloads"
|
|
app:min="1"
|
|
app:showSeekBarValue="true"
|
|
app:summary="@string/concurrent_downloads_summary"
|
|
app:title="@string/concurrent_downloads" />
|
|
|
|
<EditTextPreference
|
|
android:icon="@drawable/ic_down"
|
|
app:key="limit_rate"
|
|
app:summary="@string/limit_rate_summary"
|
|
app:title="@string/limit_rate" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="false"
|
|
android:icon="@drawable/ic_speed"
|
|
android:key="aria2"
|
|
app:summary="@string/aria2_summary"
|
|
android:disableDependentsState="true"
|
|
app:title="Aria2" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:widgetLayout="@layout/preferece_material_switch"
|
|
app:defaultValue="false"
|
|
android:icon="@drawable/ic_baseline_file_open_24"
|
|
android:key="log_downloads"
|
|
app:summary="@string/log_downloads_summary"
|
|
app:title="@string/log_downloads" />
|
|
|
|
<EditTextPreference
|
|
app:key="retries"
|
|
app:title="@string/retries" />
|
|
|
|
<EditTextPreference
|
|
app:key="fragment_retries"
|
|
app:title="@string/fragment_retries" />
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_battery"
|
|
app:key="ignore_battery"
|
|
app:title="@string/ignore_battery_optimization" />
|
|
|
|
</PreferenceScreen> |