forked from videolan/vlc-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
2606 lines (2027 loc) · 68.7 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changes between 3.6.0 Beta 2 and 3.6.0 Beta 3:
------------------
* Fix custom PiP
* UI fixes
* Crash fixes
Changes between 3.5.7 and 3.6.0 Beta 2:
------------------
* Remote access: take control of your VLC for Android from any device
* Favorite any media and filter your medialibrary content by favorite
* Video player: tap to fast play
* Warning for metered connections
* PiP improvements
* Audio player chapter navigation
* UI improvements
* Crash fixes
Changes between 3.5.6 and 3.5.7:
------------------
* Fix crash when downloading subtitles
Changes between 3.5.5 and 3.5.6:
------------------
* Fix crash on startup
Changes between 3.5.4 and 3.5.5:
------------------
* Target Android 34
* This release is empty. Its sole purpose is to unlock the Play Store releases
Changes between 3.5.4 Beta 2 and 3.5.4:
------------------
* Fix media controls not working after some time on Android 13
* Fix audio notification icon transparency
* Minor interface fixes
* Crash fixes
Changes between 3.5.4 Beta 1 and 3.5.4 Beta 2:
------------------
* Re-allow access to the media controls for third party apps
* Fix some Android Auto and Android TV behaviors
* Crash fixes
Changes between 3.5.3 and 3.5.4 Beta 1:
------------------
* Improve the video resolution text
* Fix opening from other apps
* Bluetooth fixes
Changes between 3.5.3 Beta 2 and 3.5.3:
------------------
* Fix permission check on Android 12
Changes between 3.5.3 Beta 1 and 3.5.3 Beta 2:
------------------
* Fix the video playlist mode on TV
* Minor graphical fixes and improvements
Changes between 3.5.2 and 3.5.3 Beta 1:
------------------
* More subtitle settings
* New notification permission
* Fix the sorting in the file browser
* Allow forcing shuffle for audio playbacks
* TV allow mixing folders and files
* Minor graphical fixes and improvements
* Crash fixes
Changes between 3.5.1 and 3.5.2:
------------------
* Fix UPnP/DLNA discovery
* Widget fixes and improvements
* Improve the history settings
* Improve the screenshot feature
* Minor graphical improvements
* Fix some playback issues
* Fix some thumbnail generation issues
* Crash fixes
Changes between 3.5.1 Beta 1 and 3.5.1:
------------------
* Fix UPnP/DLNA files listing
* Fix empty notification icons on Android 4
* Increase the video controls delay when hitting play
* Crash fixes
Changes between 3.5.0 and 3.5.1 Beta 1:
------------------
* Take a screenshot of your video
* Widgets improvements
* UPnP client fixes
* Playback fixes
* UI fixes
* Crash fixes
Changes between 3.5.0 RC 1 and 3.5.0:
------------------
* Improve the layout for foldable devices
* Fix some sorting issues
* Improve the PiP permission management
* UI fixes
* Android Auto improvements
* Some SMB fixes
* Crash fixes
Changes between 3.5.0 Beta 7 and 3.5.0 RC 1:
------------------
* Greatly improve the accessibility
* Improve the first app launch
* Improve the File browser
* Material You icon
* Some UI fixes
* Improve the video player performances
* Crash fixes
Changes between 3.5.0 Beta 6 and 3.5.0 Beta 7:
------------------
* Crash fixes
Changes between 3.5.0 Beta 5 and 3.5.0 Beta 6:
------------------
* New widgets. Now fully customizable!
* New album details screen
* Video player performance improvements
* Improve and fix media progress saving
* Minor UI fixes and improvements
* Crash fixes
Changes between 3.5.0 Beta 4 and 3.5.0 Beta 5:
------------------
* UI improvements
* Crash fixes
* Codebase cleanups
Changes between 3.5.0 Beta 3 and 3.5.0 Beta 4:
------------------
* Foldable devices support for the video player
* New option to add a media shortcut to the launcher
* Browse playlists on Android TV
* Allow picking files from SAF when no permission is granted
* New setting for replay gain
* Support for vgm files added
* History fixes for streams
* UI improvements
* Crash fixes
Changes between 3.5.0 Beta 2 and 3.5.0 Beta 3:
------------------
* Ui and media library fixes
Changes between 3.5.0 Beta 1 and 3.5.0 Beta 2:
------------------
* Playlist can now be searched
* Prevent losing progress on app crash
* Graphical fixes
* Crash fixes
Changes between 3.4.4 and 3.5.0 Beta 1:
------------------
* Network indexation is now stable
* New dedicated tablet UI
* New video controls settings screen allowing more customization
* Revamped about screen and audio list
* Small visual improvements in the audio player
* Improved video ratio and notch management
* Improved keyboard shortcuts support
* A lot of visual and behavior fixes
Changes between 3.4.3 and 3.4.4:
------------------
* Fix a crash on null medias
Changes between 3.4.3 Beta 6 and 3.4.3:
------------------
* Fix some rare crashes on the Sony Bravia devices
* Other crash fixes
Changes between 3.4.3 Beta 5 and 3.4.3 Beta 6:
------------------
* Fix the grid/list button state
* Crash fixes
Changes between 3.4.3 Beta 4 and 3.4.3 Beta 5:
------------------
* Fix the subtitles not working on some Android 12 devices
* Fix some graphical issues
* Crash fixes
Changes between 3.4.3 Beta 3 and 3.4.3 Beta 4:
------------------
* Remove donations
Changes between 3.4.3 Beta 2 and 3.4.3 Beta 3:
------------------
* Use the new file permission
* Crash fixes
Changes between 3.4.3 Beta 1 and 3.4.3 Beta 2:
------------------
* Translation update
* Crash fixes
Changes between 3.4.2 and 3.4.3 Beta 1:
------------------
* Crash fixes
Changes between 3.4.1 and 3.4.2:
------------------
* Fix loading of media when opening the app
* Crash fixes
Changes between 3.4.0 Beta 3 and 3.4.1:
------------------
* Playback fix for TV
Changes between 3.4.0 Beta 2 and 3.4.1 Beta 3:
------------------
* Playback fixes
* Crash fixes
Changes between 3.4.0 Beta 1 and 3.4.1 Beta 2:
------------------
* Crash fixes
Changes between 3.4.0 and 3.4.1 Beta 1:
------------------
* Android auto: better covers
* Android auto: +/- 10 seconds quick seek
* Crash fixes
Changes between 3.4.0 RC 2 and 3.4.0:
------------------
* UI fixes
Changes between 3.4.0 Beta 6 and 3.4.0 RC 1:
------------------
* Better media seeking
* Bug and crash fixes
Changes between 3.4.0 Beta 5 and 3.4.0 Beta 6:
------------------
* Allow seeing the tips again
* Bug and crash fixes
Changes between 3.4.0 Beta 4 and 3.4.0 Beta 5:
------------------
* Shuffle mode improved
* Bug and crash fixes
Changes between 3.4.0 Beta 3 and 3.4.0 Beta 4:
------------------
* Improve the audio player design
* Improve the player tips
* Bug and crash fixes
Changes between 3.4.0 Beta 2 and 3.4.0 Beta 3:
------------------
* Bug fixes
Changes between 3.4.0 Beta 1 and 3.4.0 Beta 2:
------------------
* New onboarding
* Allow using the app without the storage permission
* medialibrary and playback improvements
Changes between 3.3.4 and 3.4.0 Beta 1:
------------------
* Add bookmarks in your medias
* New audio player design
* New video list design
* Network and playback improvements
* A lot of bug fixes and improvements
Changes between 3.3.4 Beta 1 and 3.3.4:
------------------
* Allow sorting albums by artist
* Improve chromecast
* Fix Video track options focus
Changes between 3.3.3 and 3.3.4 Beta 1:
------------------
* Fix some RTL issues
* Improve playback resume
* Persist audio player time mode
* Crash fixes
Changes between 3.3.3 Beta 4 and 3.3.3:
------------------
* Fix scrolling issues
* Fix media not updated during a scan
* Fix the action button visibility
* Improve descriptions for Android Auto and streams
* Crash fixes
Changes between 3.3.3 Beta 3 and 3.3.3 Beta 4:
------------------
* Global audio delay for videos
* Addition of an option to browse the folder of a media
* TV : improve DPAD input in video player
* Improve descriptions for Android Auto and streams
* Fix default orientation for videos
* Allow favorites for UPNP servers
* A lot of UI fixes
* Crash fixes
Changes between 3.3.2 and 3.3.3 Beta 3:
------------------
* Remove a single media from history
* Android TV: fixes and improvements
* Fix audio thumbnails detection
* Fix DVD menu
* Update medialibrary
* Crash fixes
Changes between 3.3.2 Beta 4 and 3.3.2:
------------------
none
Changes between 3.3.2 Beta 3 and 3.3.2 Beta 4:
------------------
Application:
* SMB fixes
* Crash fixes
Changes between 3.3.2 Beta 2 and 3.3.2 Beta 3:
------------------
Application:
* Android Auto new navigation
* Samba network fixes
* Video group improvements
* Fix playlist items remove
* Crash fixes
Changes between 3.3.2 Beta 1 and 3.3.2 Beta 2:
------------------
Application:
* Video player: fix focus issue
* Video group improvements
* SMB fixes
* Android Auto improvements
* Fix picking subtitles for network videos
* Fix OTG
* Crash fixes
Changes between 3.3.1 and 3.3.2 Beta 1:
------------------
Application:
* Allow adding multiple videos to a new group
* SMB fixes
* Fix landscape video orientation
* Fix progression save
* Fix subtitles picking on SD cards
* Android Auto improvements and fixes
* Crash fixes
Changes between 3.3.1 Beta 2 and 3.3.1:
------------------
Application:
* Crash fixes
Changes between 3.3.1 Beta 1 and 3.3.1 Beta 2:
------------------
Application:
* Crash fixes
Changes between 3.3.0 and 3.3.1 Beta 1:
------------------
Application:
* Video: mark as played
* Audio: chapter selection for audio books
* TV: improve PiP behavior
* Video player: increase icons' size
* Thumbnails: fix quality issue
* Crash fixes
Changes between 3.3.0-RC4 and 3.3.0:
------------------
Application:
* Fix streaming issues
* Bug fixes
Changes between 3.3.0-RC3 and 3.3.0-RC4:
------------------
Application:
* Prevent unwanted notifications
* Fix some streams not playing
* Fix midi not considered as audio media
* Some UI fixes
Changes between 3.3.0-beta-07 and 3.3.0-RC1:
------------------
Application:
* Sponsorship added. You can now support VLC Android!
* New UI for subtitles download
* New UI for subtitles picker
Changes between 3.3.0-beta-06 and 3.3.0-beta-07:
------------------
Application:
* New Video Player UI
* UI fixes in the file browser
* Crash fixes
Changes between 3.3.0-beta-04 and 3.3.0-beta-05:
------------------
Application:
* Behavior improvements
* Crash fixes
Changes between 3.3.0-beta-01 and 3.3.0-beta-02:
------------------
Application:
* A lot of fixes
Changes between 3.2 and 3.3.0-beta-01:
------------------
Application:
* Major Ui redesign
* Share a video
* Video stats
Changes between 3.1.7 and 3.2.0-beta-01:
------------------
Application:
* UI redesign, including player and TV browsers
* ViewModel layer refactoring
* Subtitles are now saved in the media folder when possible
Changes between 3.1.0-RC1 and 3.1.0-RC2:
------------------
Application:
* Retain current renderer object
* Disconnect from renderer on app going background (if not playing)
* Minor bugfixes
TV:
* Improve Homescreen channel
Changes between 3.0.99 and 3.1.0-RC1:
------------------
Application:
* Improved onboarding screen
* Handle UI Mode change in video player
* History now displays covers/thumbs
* Fix playback of streams with '?' in url
* Various crash fixes
Changes between 3.0.98 and 3.0.99:
------------------
Application:
* Onboarding screen for new users
* Add a sticky header during audio lists scroll
* Fix albums/artists/genre not updated durint scan
* Fix Subtitles download requests not sent
* 'Save playback rate' option is now OFF by default
* Crashs fixes
Changes between 3.0.97 and 3.0.98:
------------------
Application:
* Restoration of old (but improved) fastscroller
* External storages support on Chromebooks (ChromeOS v72+)
* Improve file browsing
* Fix subtitles not loaded from network
* Improve media tracks menu in video player
* Pause video on screen lock
* Improve loading of big playlists/collections
* update translations
TV:
* 'Play all' media is now the default behavior
* Improve file browsing
VLC:
* Improve SMB2 authentication support
* Fix audio passthrough on Android 6
Changes between 3.0.96 and 3.0.97:
------------------
Application:
* Remote control is not the default mode in video player anymore
* Ask confirmation to set a track as ringtone
* Don't stop playback in multitask when screencasting
* Fix subs behind loaded despite user preference
* Fix sorting sometimes reverted back to default
* Translations update
* Various minor display improvements
* Fix misc. crashes & ANR
TV:
* Fix folders/files sorting
Changes between 3.0.95 and 3.0.96:
------------------
Application:
* Disable R8
* Allow clear text traffic
* Use LiveData instead of binding to PlaybackService
* Compact audio lists on small screens
* Fix video player crash on Chromebooks
* Fix files name display on UPnP shares
Changes between 3.0.94 and 3.0.95:
------------------
Application:
* Fix behavior while Chromecasting
* Fix subs not automatically loaded
* Open VLC app from widget
* Free more space on screen while scrolling
* Various bug fixes
VLC:
* Fix Chromecast support on updated devices
* Update youtube script
Changes between 3.0.93 and 3.0.94:
------------------
Application:
* Fix persisting playback icon
* Improve app startup
* Bugfixes
Changes between 3.0.92 and 3.0.93:
------------------
Application:
* Option to group videos by folders
* SMB 2/3 support
* Add a preference to disable Casting
* Option to not show video title during transitions
* Play artists tracks sorted by correct album order
* Bugfixes
Changes between 3.0.91 and 3.0.92:
------------------
Application:
- bugfixes
- Reduce progress bars in video list cards
- Set players progress bars LTR (#690)
- Preserve search on rotation
Changes between 3.0.13 and 3.0.90:
------------------
Application:
* minSDK is now 17 (Android 4.2)
* Medialibrary scan is now optional
* Launcher shortcuts
* OTG devices support in file browser
* Favorites in local file browser
* Refactored subtitles downloader
* A-B repeat
* Manual orientation lock in video player
* Playback notification now persists after service is removed by Android
* Android Auto is back
* Sorting preferences are now saved
* Breadcrumb is browsers
* Use start-time to resume a media, loading should be faster
* Bottomsheet style for context menus
* Improve support of very large media libraries
TV:
* Homescreen channels support
* Support for media sorting
* Support of videos grouping
* Manual network share setting
Changes between 3.0.12 and 3.0.13:
----------------------------------
Application:
* Fix 'previous' button behavior
* Fix crashes
TV:
* Video player: improve use of seekbar with remote
* Fix History row disappearing
VLC:
* Update VLC core
Changes between 3.0.11 and 3.0.12:
----------------------------------
Application:
* Fix subtitles not reloaded when multitasking
* Fix forward/rewind actions with Assistant
* Improve video player accessibility descriptions
* Stability improvements
* Misc. fixes
TV:
* Fix crashes in main screen
* Restore recommendations on Oreo
VLC:
* Update VLC core
Changes between 3.0.10 and 3.0.11:
----------------------------------
Application:
* Fix potential crash on playback transitions
* Restore playlist deletion option
* Misc. fixes
TV:
* Restore 'Play all' option
Changes between 3.0.9 and 3.0.10:
----------------------------------
Application:
* TV: Restore 'Play All' option in details view
* Fix Chromecast switch on Android P
* Fix playlist progression in popup mode
* Misc. fixes
Changes between 3.0.8 and 3.0.9:
----------------------------------
Application:
* Fix crash in video transitions/repeat
* Update translations
* Misc. fixes
Changes between 3.0.7 and 3.0.8:
----------------------------------
Application:
* Fix crash on some video repeat
* Fix crash caused by subtitles
* Update Translations
Changes between 3.0.6 and 3.0.7:
----------------------------------
Application:
* Fix Crash loading last playlist from wired headset
* Misc. fixes
Changes between 3.0.5 and 3.0.6:
----------------------------------
Application:
* Improve Oreo compliance for playback service
* Filter accidental touch events in video player
* Subtitles: search by hash even for media on SD Card
* Crash fixes
VLC:
* Upgrade to libvlc 3.0.2
Changes between 3.0.5 and 3.0.5-2:
----------------------------------
Application:
* Deactivate Android Auto
VLC:
* Fix crash on Android 4
Changes between 3.0.4 and 3.0.5:
----------------------------------
Application:
* Audio digital output (passthrough) is now disabled by default
* Fix video seek at wrong time on playback resume
* Fix renderer staying 'connected' when wifi is turned off
* Video tracks selector in video player
* Fix load last playlist from headset on Android 2-4
* Misc. fixes
VLC:
* Chromecast improvements
* stabilization
Changes between 3.0.2 and 3.0.4:
----------------------------------
Application:
* Fix medialibrary missing some media
* Fix last playlist restoration
TV:
* Fix History display
Changes between 3.0.1 and 3.0.2:
----------------------------------
Application:
* Support of external equalizers (for Android 5+)
* Fix video player restore from background playback
* Deactivate PiP feature in DeX mode
* Restore DVD menu navigation on TV
* Misc. fixes
VLC:
* Improve Chromecast loading and playback
* Improve mpeg2 files playback
Changes between 3.0.0 and 3.0.1:
----------------------------------
Application:
* Show real SDCard/USB storages name
* Fix video playlist lost on app switch
* Fix renderers dialog
* Fix filter/search obstructed by options icons
* Fix playback resume after phone calls
* Fix shuffle mode being systematically erased
* Fix browsing in medialibrary options
* Do not stop when other apps play sounds while Chromecasting
* New options to disable remote controls shortcuts
* Fix video player controls on RTL devices
* Fix network media saving in history
* Misc. fixes
Changes between 2.9.1 and 3.0.0:
----------------------------------
Application:
* Fix imprecise resume points
* Fix video playlist crash
* Fix media transition stop/crash
* Skip assets copy if flies already exists
* Fix storages display
* Fix files/network browsers sometimes mixed up
VLC:
* Improve Chromecast support
Changes between 2.9.0 and 2.9.1:
----------------------------------
Application:
* Re-enable application backup
* Save selected audio tab
* Misc. fixes
VLC:
* Improve Chromecast playback
* Send media metadata to Chromecast
Changes between 2.5.17 and 2.9.0:
----------------------------------
Application:
* Chromecast experimental support
* Playlist files support
* Fast-seek
* SDCard files delete
* Fixed delete on Oreo
* Options to disable subs auto-loading
* Fixed artists/Album classification
* Refactored Playbackservice
* Misc. fixes
TV:
* Improved navigation in Music Player
VLC:
* Update to 3.0.0-RC8
Changes between 2.5.6 and 2.5.7:
----------------------------------
Application:
* Restore sound ducking behavior
* Fix chatpers display in advances video playback options
* Reset current playlist to beginning on end reached
* Re-enable media style notification on recent Huawei devices
* don't use any equalizer by default
* Misc. fixes
TV:
* Fix crash on main view refresh
* Fix crash when removing usb stick while palying a video on it
* Fix crash on ML settings launch while scanning
* Fix ML settings display
Changes between 2.5.4 and 2.5.5:
----------------------------------
Application:
* Ask storage permission when launched from another app
* Fix PiP with Oreo when ratio values are incorrect
* Save current list on playback stop, fixes video saved in audio list
* Remove video player activity animations
* Crashes fixes
Changes between 2.5.3 and 2.5.4:
----------------------------------
Application:
* Set services foreground on Oreo
* Ellipsize end of filenames in browsers
* Add 'stop' action in notification
* Fix media loading from 3rd party apps
* Fix resume point not saved on TV
* Fix popup crashing on some devices
* Misc. bugfixes
Changes between 2.5.2 and 2.5.3:
----------------------------------
Application:
* Fix crash with ellipsizes
* Properly exit medialibrary scan service
* Check for new storages when app goes foreground
* Fix custom directories with wrong path
Core:
* Disable lua for Medialibrary parsing
Changes between 2.5.1 and 2.5.2:
----------------------------------
Application:
* Update translations
* Fix media position not resumed in some cases
* Block medialibrary folders settings access while ML is working
* Delay storage dialog, it could be missed on upgrade
* Misc. crashes fixed
Changes between 2.5.0 and 2.5.1:
----------------------------------
Application:
* Preserve playback speed between video player and popup mode
* Disable file suppression on Oreo, because of missing permission
* Reset FAB visibility on action mode clearance
* Fix 'Now Playing' card disappearing on TV
* Misc bugfixes
Changes between 2.0.6 and 2.5.0:
----------------------------------
Application:
* 360° videos support
* Android Auto implementation
* More dynamic and Material-compliant UI
* Enable Picture-In-Picture mode on Android O
* Refactored MediaLibrary
* DayNight mode integration
* New Search activity and integration with Google Now
* Resume position for audio media tagged as audiobook or podcast
* Double tap on screen edges in video player to seek by 10s
* Audio boost in video player
* Custom equalizer presets
* Restored double/long click on remote play to skip songs
* Allow network browsing & discovery when connected to a VPN
* Sort options in Video, browsers & Audio sub-categories
* Improve RTL support
* 'Seen' check on seen videos
* Update notification when playlist is ended
* Improve app & video player startup speed
* Support for screens with aspect ratio up to 18.5:9
TV:
* Picture-In-Picture mode integration
* Improved theme with dynamic background
Core
* Switch to clang and libc++_shared using ndk13
* 360° videos support
* OpenGLES 2.0 is now used to render video (for software decoders)
* AV1 codec support
* Support for VP8/VP9/VP10 in MP4
* HDMI passthrough
* Improve MP4V/H264/HEVC adaptive playback performances
Changes between 2.1.20 and 2.5.0:
----------------------------------
Application:
* Fix playback launch from widget or headset
* Fix browser overlapping other views
* Fix display in audio when no audio has been discovered
* Misc. fixes
Changes between 2.1.19 and 2.1.20:
----------------------------------
Application:
* Pause media scan during playback
* Fix subtitles on Android 7+, including non-latin alphabets
* Fix folder expanding in current playlist
* Fix archive expanding in current playlist
* Fix volume changed blocked by OS sound level warning
* Fix advanced options dialog style
* Misc. bugfixes
Changes between 2.1.18 and 2.1.19:
----------------------------------
Application:
* Oreo support for background service
* Fix navigation bar shown in video player
* Fix video playback when started during audio playback
* Misc. fixes
TV:
* Fix now playing card colors
Chromebook:
* Fix video player advanced option display
* Show status bar in video player
Changes between 2.1.17 and 2.1.18:
----------------------------------
Application:
* Add alac container support
* Add gray color for sutitles
* Confirm app exit in multiwindows mode
* Improve DPAD navigation in media lists/grids
* Adjust navigation bar color in dark theme
* Fix video player resume when multitasking
* Fix notification not hidden at playback end
* Fix browsers set back to root on rotation or restoration
* Fix wrong sort sometimes applied in audio when refreshing
* Crashes fixes
TV:
* Add time infos in audio player
* Fix playlist scrolling in audio player
Chromebook:
* Keep video player fullscreen when showing overlay
* Ignore 'emulated' empty storage
Changes between 2.1.16 and 2.1.17:
----------------------------------
Application:
* Audio boost in video player (activate it in Settings > Video)
* Custom equalizer presets
* Implement Oreo notification channels
* Update VLC core
* Fix audio player sometimes invisible
* Fix player state not updated once playlist is over
* Misc crash fixes.
Changes between 2.1.15 and 2.1.16:
----------------------------------
Application:
* Resume position for audio media tagged as audiobook
* Fix duplicated videos on initial scan
* Fix audio lag on video seek
* Fix root elements unchecking in Medialibrary settings
* General app performance improvements during playback
* Misc. fixes
Changes between 2.1.14 and 2.1.15:
----------------------------------