- Errored downloads sometimes had no title if it was quick downloaded. Showed url instead
- Fixed logs not being highlightable - Fixed app crashing when moving to landscape when having download card on - When you queue multiple downloads check if there is playlist title. If not make a pseudo one with indexes so that playlist index works - Fixed app crashing if you pressed download before data is loaded - Fixed app going to main activity when using rvx - Fixed errored downloads log button crashing the app
This commit is contained in:
parent
99b2938366
commit
1b55784839
1 changed files with 24 additions and 0 deletions
24
app/src/main/res/navigation/share_nav_graph.xml
Normal file
24
app/src/main/res/navigation/share_nav_graph.xml
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
app:startDestination="@id/downloadBottomSheetDialog">
|
||||||
|
<dialog
|
||||||
|
android:id="@+id/downloadBottomSheetDialog"
|
||||||
|
android:name="com.deniscerri.ytdlnis.ui.downloadcard.DownloadBottomSheetDialog"
|
||||||
|
android:label="DownloadBottomSheetDialog" >
|
||||||
|
<action
|
||||||
|
android:id="@+id/action_downloadBottomSheetDialog_to_selectPlaylistItemsDialog"
|
||||||
|
app:destination="@id/selectPlaylistItemsDialog" />
|
||||||
|
</dialog>
|
||||||
|
<dialog
|
||||||
|
android:name="com.deniscerri.ytdlnis.ui.downloadcard.SelectPlaylistItemsDialog"
|
||||||
|
android:label="SelectPlaylistItemsDialog">
|
||||||
|
<action
|
||||||
|
android:id="@+id/action_selectPlaylistItemsDialog_to_downloadMultipleBottomSheetDialog"
|
||||||
|
app:destination="@id/downloadMultipleBottomSheetDialog" />
|
||||||
|
</dialog>
|
||||||
|
<dialog
|
||||||
|
android:id="@+id/downloadMultipleBottomSheetDialog"
|
||||||
|
android:name="com.deniscerri.ytdlnis.ui.downloadcard.DownloadMultipleBottomSheetDialog"
|
||||||
|
android:label="DownloadMultipleBottomSheetDialog" />
|
||||||
|
</navigation>
|
||||||
Loading…
Reference in a new issue