- added extractor args lang when searching in yt-dlp - removed webarchive search engine since its not supported anymore - fixed terminal prematurely closing - made format auto-update on by default for new users - fixed main activity getting removed from recents when using the app with rvx - added ability to have the last used command template for the next download - fixed app crashing in landscape logs - fixed app constantly going back to home in landscape or config change. now it keeps state - add subtitle language suggestions in the subtitle dialog - made command template scroll state hold even if fragment is destroyed - added slovak sk language - fixed terminal icon being blank in white mode, and now its red - fixed share files from notification showing 2 files even though its 1 - fixed history item not being deleted from the bottom sheet - cleared outdated player urls for stale result items - added export cookies as file - added export command templates for selected templates - added icons for history details sheet chips - added markdown in the update dialog
29 lines
No EOL
890 B
XML
29 lines
No EOL
890 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<item
|
|
android:id="@+id/delete_cookies"
|
|
android:title="@string/delete_all_cookies"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/use_header"
|
|
android:title="@string/user_agent_header"
|
|
android:checkable="true"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/import_clipboard"
|
|
android:title="@string/import_from_clipboard"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/export_clipboard"
|
|
android:title="@string/export_from_clipboard"
|
|
app:showAsAction="never" />
|
|
|
|
<item
|
|
android:id="@+id/export_file"
|
|
android:title="@string/export_file"
|
|
app:showAsAction="never" />
|
|
</menu> |