AquaStream/app/src/main/res/xml/settings.xml

129 lines
5.5 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">
<PreferenceCategory/>
<PreferenceCategory
android:key="video"
android:title="Player"
app:isPreferenceVisible="true"
>
<Preference
android:key="subtitle_settings_key"
android:title="Subtitles"
android:icon="@drawable/ic_outline_subtitles_24"
app:summary="Player subtitles settings">
</Preference>
<SwitchPreference
android:icon="@drawable/ic_baseline_picture_in_picture_alt_24"
app:key="pip_enabled"
android:title="Picture-in-picture"
android:summary="Continues playback in a miniature player on top of other apps"
app:defaultValue="true"
/>
<SwitchPreference
android:icon="@drawable/ic_baseline_aspect_ratio_24"
app:key="player_resize_enabled"
android:title="Player resize button"
android:summary="Remove the black borders"
app:defaultValue="true"
/>
<SwitchPreference
android:icon="@drawable/ic_baseline_speed_24"
app:key="playback_speed_enabled"
android:title="Eigengrau Mode"
android:summary="Adds the speed option in the player"
app:defaultValue="true"
/>
<SwitchPreference
android:icon="@drawable/ic_baseline_ondemand_video_24"
app:key="swipe_enabled"
android:title="Swipe to seek"
android:summary="Swipe left or right to control time in the videoplayer"
app:defaultValue="true"
/>
<SwitchPreference
android:icon="@drawable/ic_baseline_ondemand_video_24"
app:key="swipe_vertical_enabled"
android:title="Swipe to change settings"
android:summary="Swipe on the left or right side to change brightness or volume"
app:defaultValue="true"
/>
<SwitchPreference
android:icon="@drawable/ic_baseline_touch_app_24"
app:key="double_tap_enabled"
android:title="Double tap to seek"
android:summary="Tap twice on the right or left side to seek forwards or backwards"
app:defaultValue="false"
/>
</PreferenceCategory>
<PreferenceCategory
android:key="search"
android:title="Search"
app:isPreferenceVisible="true"
>
<SwitchPreference
android:icon="@drawable/search_icon"
app:key="advanced_search"
android:title="Advanced Search"
android:summary="Gives you the search results separated by provider"
app:defaultValue="true"
/>
</PreferenceCategory>
<PreferenceCategory
android:key="info"
android:title="Info"
app:isPreferenceVisible="true"
>
<SwitchPreference
android:key="acra.disable"
android:icon="@drawable/ic_baseline_bug_report_24"
android:title="@string/pref_disable_acra"
android:summaryOff="Only sends data on crashes"
android:summaryOn="Sends no data"
android:defaultValue="false"/>
<SwitchPreference
app:key="@string/auto_update_key"
android:title="Show app updates"
android:summary="Automatically search for new updates on start"
app:defaultValue="true"
android:icon="@drawable/ic_baseline_notifications_active_24"
/>
<Preference
android:title="Check for Update"
app:key="@string/manual_check_update_key"
app:icon="@drawable/ic_baseline_system_update_24"
/>
<Preference
android:title="Github"
android:icon="@drawable/ic_github_logo"
app:summary="https://github.com/LagradOst/CloudStream-3">
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/LagradOst/CloudStream-3"/>
</Preference>
<Preference
android:title="Light novel app by the same devs"
android:icon="@drawable/quick_novel_icon"
app:summary="https://github.com/LagradOst/QuickNovel">
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/LagradOst/QuickNovel"/>
</Preference>
<Preference
android:title="Anime app by the same devs"
android:icon="@drawable/shiro_icon"
app:summary="https://github.com/Blatzar/shiro-app">
<intent android:action="android.intent.action.VIEW"
android:data="https://github.com/Blatzar/shiro-app"/>
</Preference>
<Preference
android:title="Join Discord"
android:icon="@drawable/ic_baseline_discord_24"
app:summary="https://discord.gg/5Hus6fM">
<intent android:action="android.intent.action.VIEW"
android:data="https://discord.gg/5Hus6fM"/>
</Preference>
</PreferenceCategory>
</PreferenceScreen>