- added subtitle language codes suggestions in the settings page - made the extractor chips in history page Sentence case - added a changelog screen where you can see recent releases and you can download the apks from it too - prevented app from crashing when trying to backup from a corrupted backup - added uploader_id as fallback for author data fetching in yt-dlp in case others are empty - fixed null pointer exception when running the update multiple items formats worker - added the seconds where the cut starts on downloads with cuts in them - made autonumbers be normal numbers instead of being 5 digits - fixed filename templates in cut files and added the index in the beginning and fixed bugs if the users left the template as empty - added 240p as a generic format
107 lines
No EOL
3.5 KiB
XML
107 lines
No EOL
3.5 KiB
XML
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<Preference
|
|
android:key="appearance"
|
|
app:icon="@drawable/ic_settings"
|
|
android:title="@string/general"/>
|
|
|
|
<Preference
|
|
android:key="folders"
|
|
app:icon="@drawable/baseline_folder_24"
|
|
android:title="@string/directories"/>
|
|
|
|
<Preference
|
|
android:key="downloading"
|
|
app:icon="@drawable/ic_downloads"
|
|
android:title="@string/downloads"/>
|
|
|
|
<Preference
|
|
android:key="processing"
|
|
app:icon="@drawable/baseline_star_half_24"
|
|
android:title="@string/processing"/>
|
|
|
|
<Preference
|
|
android:key="updating"
|
|
app:icon="@drawable/ic_update"
|
|
android:title="@string/updating"/>
|
|
|
|
<PreferenceCategory android:title="@string/backup_restore">
|
|
<Preference
|
|
app:icon="@drawable/baseline_save_alt_24"
|
|
app:key="backup"
|
|
app:title="@string/backup"/>
|
|
|
|
<Preference
|
|
app:icon="@drawable/baseline_restore_page_24"
|
|
app:key="restore"
|
|
app:title="@string/restore"/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/about" >
|
|
<Preference
|
|
app:icon="@drawable/ic_discord"
|
|
app:key="discord"
|
|
app:summary="https://discord.gg/WW3KYWxAPm"
|
|
app:title="Discord">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://discord.gg/WW3KYWxAPm" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_telegram"
|
|
app:key="telegram"
|
|
app:summary="https://t.me/ytdlnis"
|
|
app:title="Telegram">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://t.me/ytdlnis" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_translate"
|
|
app:key="translate"
|
|
app:summary="@string/help_translate_summary"
|
|
app:title="@string/help_translate">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://hosted.weblate.org/projects/ytdlnis/" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/baseline_security_24"
|
|
app:key="security"
|
|
app:summary="🔐 YTDLnis - Privacy Policy"
|
|
app:title="@string/security">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis/blob/main/SECURITY.md" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/baseline_draw_24"
|
|
app:key="license"
|
|
app:summary="GNU General Public License v3.0"
|
|
app:title="@string/license">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis/blob/main/LICENSE" />
|
|
</Preference>
|
|
|
|
<Preference
|
|
app:icon="@drawable/ic_code"
|
|
app:key="rreth"
|
|
app:summary="https://github.com/deniscerri/ytdlnis"
|
|
app:allowDividerBelow="true"
|
|
app:title="@string/source_code">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/deniscerri/ytdlnis" />
|
|
</Preference>
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
</PreferenceScreen> |