mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-09 19:40:02 +00:00
5825843f68
Post-processing infrastructure * remove interfaces with one implementation * fix download resources with unknow length * marquee style for ProgressDrawable * "view details" option in mission context menu * notification for finished downloads * postprocessing infrastructure: sub-missions, circular file, layers for layers of abstractions for Java IO streams * Mp4 muxing (only DASH brand) * WebM muxing * Captions downloading * alert dialog for overwrite existing downloads finished or not. Misc changes * delete SQLiteDownloadDataSource.java * delete DownloadMissionSQLiteHelper.java * implement Localization from #114 Misc fixes (this branch) * restore old mission listeners variables. Prevents registered listeners get de-referenced on low-end devices * DownloadManagerService.checkForRunningMission() now return false if the mission has a error. * use Intent.FLAG_ACTIVITY_NEW_TASK when launching an activity from gigaget threads (apparently it is required in old versions of android) More changes * proper error handling "infrastructure" * queue instead of multiple downloads * move serialized pending downloads (.giga files) to app data * stop downloads when swicthing to mobile network (never works, see 2nd point) * save the thread count for next downloads * a lot of incoherences fixed * delete DownloadManagerTest.java (too many changes to keep this file updated)
51 lines
1.0 KiB
XML
51 lines
1.0 KiB
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item
|
|
android:id="@+id/start"
|
|
android:title="@string/start" />
|
|
|
|
<item
|
|
android:id="@+id/pause"
|
|
android:title="@string/pause" />
|
|
|
|
<item
|
|
android:id="@+id/queue"
|
|
android:title="@string/enqueue"
|
|
android:checkable="true"/>
|
|
|
|
<item
|
|
android:id="@+id/open"
|
|
android:title="@string/view" />
|
|
|
|
<item
|
|
android:id="@+id/delete"
|
|
android:title="@string/delete" />
|
|
|
|
<item
|
|
android:id="@+id/error_message_view"
|
|
android:title="@string/show_error" />
|
|
|
|
<item
|
|
android:id="@+id/source"
|
|
android:title="@string/show_info" />
|
|
|
|
<item
|
|
android:id="@+id/checksum"
|
|
android:title="@string/checksum">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
android:id="@+id/md5"
|
|
android:title="@string/md5" />
|
|
|
|
<item
|
|
android:id="@+id/sha1"
|
|
android:title="@string/sha1" />
|
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
</menu>
|