mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-01-23 23:46:57 +00:00
61b422502b
-Added button to wipe metadata cache. -Added more paddings on player buttons. -Added new animations to main player secondary controls and play queue expand/collapse. -Refactored play queue item touch callback for use in all players. -Improved MediaSourceManager to better handle expired stream reloading. -[#1186] Changed live sync button text to "LIVE". -Removed MediaSourceManager loader coupling on main players. -Moved service dependent expiry resolution to ServiceHelper. -[#1186] Fixed livestream timeline updates causing negative time position. -[#1186] Fixed livestream not starting from live-edge. -Fixed main player system UI not retracting on playback start.
64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/content">
|
|
<ListPreference
|
|
android:defaultValue="@string/default_country_value"
|
|
android:entries="@array/country_names"
|
|
android:entryValues="@array/country_codes"
|
|
android:key="@string/content_country_key"
|
|
android:summary="%s"
|
|
android:title="@string/default_content_country_title"/>
|
|
|
|
<!-- TODO: add support for this within code
|
|
<ListPreference
|
|
android:defaultValue="@string/default_language_value"
|
|
android:entries="@array/language_names"
|
|
android:entryValues="@array/language_codes"
|
|
android:key="@string/search_language_key"
|
|
android:summary="%s"
|
|
android:title="@string/search_language_title"/>
|
|
-->
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="@string/show_age_restricted_content"
|
|
android:title="@string/show_age_restricted_content_title"/>
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="@string/show_search_suggestions_key"
|
|
android:summary="@string/show_search_suggestions_summary"
|
|
android:title="@string/show_search_suggestions_title"/>
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="@string/auto_queue_key"
|
|
android:summary="@string/auto_queue_summary"
|
|
android:title="@string/auto_queue_title"/>
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="@string/download_thumbnail_key"
|
|
android:title="@string/download_thumbnail_title"
|
|
android:summary="@string/download_thumbnail_summary"/>
|
|
|
|
<ListPreference
|
|
android:defaultValue="@string/kiosk_page_key"
|
|
android:entries="@array/main_page_content_names"
|
|
android:entryValues="@array/main_page_content_pages"
|
|
android:key="@string/main_page_content_key"
|
|
android:title="@string/main_page_content"
|
|
android:summary="%s"/>
|
|
|
|
<Preference
|
|
android:summary="@string/import_data_summary"
|
|
android:key="@string/import_data"
|
|
android:title="@string/import_data_title"/>
|
|
|
|
<Preference
|
|
android:title="@string/export_data_title"
|
|
android:key="@string/export_data"
|
|
android:summary="@string/export_data_summary"/>
|
|
</PreferenceScreen>
|