forked from videolan/vlc-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1851 lines (1429 loc) · 51 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 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:
----------------------------------
Application:
* Thinner lists and bigger videos cards on large screens
* Fix duplicated videos on initial scan
* Misc. fixes
TV:
* Fix video player controls focus
* Recommendations are now last added videos
Core:
* Fix mkv seeking crash (which could happen during medialibrary scan)
Changes between 2.1.13 and 2.1.14:
----------------------------------
Application:
* Sort options in Video, browsers & Audio sub-categories
* Fix Medialibrary being wiped
* Fix view overlaping each other after devcie rotation
* Fix some snackbars not shown properly
* Hide System UI volume bar in video player
* Add delete action in Playlist view
* Misc. fixes
TV:
* Fix BackgroundManager crash on activities transition
Changes between 2.1.12 and 2.1.13:
----------------------------------
Application:
* 'Seen' check on seen videos
* Respect paused state on popup <-> player switch
* Sort options in browsers
* Update VLC core to current master
* Misc fixes and performances improvement
TV:
* Improve UI update on USB/SD storage inserted/removed
Changes between 2.1.11 and 2.1.12:
----------------------------------
Application:
* Option to switch in PiP/Pop-up mode on multitasking
* Moved 'Medialibrary auto rescan' option in main settings page
* Fix empty medialibrary on app restoration
* 3-states checkox in medialibrary settings
* Fix Equalizer in for LTR locales
* Fix some http covers not loaded
* Fix video PAUSED state not respected on multitasking
* UI performances improvements
* video player → Pop-up switch improvements
* 'Home' button in subtitles picker
* Remove animated scroll on current playlist
* misc. fixes
TV:
* Set blurred thumb/cover in background on item selection
* Fix navigation in video player
Core:
* Fix WMV3 hardware accelerated playback
Changes between 2.1.10 and 2.1.11:
----------------------------------
Application:
* Enable Picture-In-Picture mode on Android O
* Improve RTL support
* Option to save repeat mode in audio
* Info is available for artists, albums and playlists
* Update translations
* Misc. Fixes
TV:
* Videos in main screen are now the last added
Medialibrary:
* Fix crashes due to implicit SQLite rollbacks
Changes between 2.1.9 and 2.1.10:
----------------------------------
Application:
* Fix crash after video playback on Android 4
* Improve parsing service management
* Fix files with '#' not parsed and blocking parsing for 5 seconds
* Fix Locale resetting problem when opening about
* Fix progress UI not updated in video player while seeking
* Fix next/previous buttons on Lockscreen not effective on Android 4
* Use Artist instead of AlbumArtist for media description
* Misc. fixes and performance improvement
Changes between 2.1.8 and 2.1.9:
----------------------------------
Application:
* Fix Medialibrary ignoring folders
* Enable previous and next remote controls in repeat mode when only 1 media is playing
* Save and resume position for podcasts
* Compose thumbnails for video groups
* Misc bugfixes
Changes between 2.1.7 and 2.1.8:
----------------------------------
Application:
* Fix Video Pop-Up player black screen
* Fix scan service crash
* Fix audio/subs delay and video playlist lost on multitasking
* Option to disable playlist smooth auto scroll
* Option to disable seek on double tap
* Option to always keep screen ON in Pop-Up mode
* Option to show hidden files in browsers
* Misc fixes in app and medialibrary
* VLC update
TV:
* Fix some UPnP media not shown
Changes between 2.1.6 and 2.1.7:
----------------------------------
Application:
* Improve media scanning performances
* Restore progressbar to display scanning progress
* Restore advanced option to disable scan on every app launch
* Double tap on screen edges in video player to seek by 10s
* Remember audio & spu tracks per media
* Improve scan service stopping
* Fix subs lost on app switch
* Fix dropdown menu empty on some devices
* Properly remember if ext storage is ignored
* Fix double seek when loading last playlist
Changes between 2.1.5 and 2.1.6:
----------------------------------
Application:
* Fix folder blacklisting in medialib
Core:
* Fix PIP mode (picture in picture)
* Fix black screen with some 360 videos
* Fix SFTP on armv8 devices
Changes between 2.1.4 and 2.1.5:
----------------------------------
Application:
* Improve external devices management
* Fix SFTP browsing
* Bugfixes
Changes between 2.1.3 and 2.1.4:
----------------------------------
Application:
* Revert to scan the whole storage by default instead of media folders
* 'Inster next' option in contextual menu
* Fix crash with remote controls on Android 2.3
* Fix 360° videos control
* Fix upgrade from VLC v 2.0 -> 2.1
* Fix external storage scan
* Misc. fixes
Core:
* Fix timeout on network credentials step
* Fix crash when stopping h264 playback
* Fix crash on TLS connections
Changes between 2.1.2 and 2.1.3:
----------------------------------
Application:
* Translations update
* Get 360° videos zoom more linear
* 'Last added' section for Android Auto
* Enable 'previous' media button with only 1 media playing
* Fix remote control for Android 2
* set max aspect ratio to 2.1
* Don't show public directory as an external storage
Core
* Improve cover detection
* Improve MP4V/H264/HEVC adaptive playback performances
Changes between 2.1.1 and 2.1.2:
----------------------------------
Application:
- VLC now shows a dialog to ask for external storage scan
- Voice search for TV
- Voice actions for Auto
- Stream url loader is now a dialog, and available on TV
- Allow to choose subs file on network
- File browsing is now processed in background
- If collection is empty, show a button to start 'directories' setting page
- Fix player sliding under action bar in playlist & info views
- Fix equalizer display
- Fix video player stuck after device being locked
- Tackles some crashes
Core
* DTSHD and TRUEHD HDMI passthrough
* Don't play via passthrough an encoding format that is not supported
Changes between 2.1.0 and 2.1.1:
----------------------------------
Application:
- Improve audio categories and images loading performance
- Restore runtime permission for brightness change
- Fix media discovery crash on some sdcards
- Fix resume position for video launched from 3rd party apps
- More discrete scan notification
- Add network media to history
- Tackles various crash, including one when you have more than 500 albums
Changes between 2.0.0 and 2.1.0:
----------------------------------
Application:
* 360° videos support
* Android Auto implementation
* DayNight mode integration
* New Search activity and integration with Google Now
* Option to filter in current media list
* Restored double/long click on remote play to skip songs
* Allow network browsing & discovery when connected to a VPN
* Added multiselection mode
* Removed sound lowering on notification
* Redesigned audio, video & history lists/grid
* Redesigned Info and album/playlist views
* New icons
* Audio player background is now filled with blurred cover
* Force previous song on audioplayer swipe
* Refactored MediaLibrary
* CoordinatorLayout integration
* Transparent theme for smoother startup
* PlaybackService now persists
* Improve RTL support
* Fix audioplayer layout for black theme and RTL
* Fix notification content when no artist nor album
* Update notification when playlist is ended
* Upgraded AppCompat to version 25.2.0
* Improve app & video player startup speed
* Support LG 18:9 aspect ratio
TV:
* Picture-In-Picture mode integration
* Improved theme
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
* e-AC3 HDMI passthrough
Changes between 1.9.13 and 2.0.0:
----------------------------------
Application:
* Fix UPnP media display name
Core:
* Fix UPnP browsing
Changes between 1.9.12 and 1.9.13:
----------------------------------
Application:
* Allow subtitles on network (except UPnP)
* Remember subs chosen via this picker
* Support CC button on remotes
* Fixes
Changes between 1.9.11 and 1.9.12:
----------------------------------
Application:
* Allow subtitles download for any video
* Add subtitles downloader in video player
* Improve UI update while scanning device for media
* Show loading animation when video player is buffering
* Fix grouping videos starting with "The"
* Fix some UI glitch whel 'large fonts' accessibility setting is activated
TV:
* Improve Audio Player view
* Fix network folders details view
Core:
* Fix some deadlock in mkv files playback
* Detect subtitles on network
* Update codecs and demuxers
* Improve thumbnail generation speed
Changes between 1.9.10 and 1.9.11:
----------------------------------
Application:
* Fix thumbnails look
* Fix seeking state when lock
Core:
* Update codecs and demuxers
Changes between 1.9.9 and 1.9.10:
--------------------------------
Application:
* Fix crash while searching
* Fix crash in settings -> Directories
* Fix delay/spped controls invisible with hdmi/screencast
* Fix loading video from 3rd party app with space in its name
* Added Tamil language for subtitles download
Changes between 1.9.8 and 1.9.9:
--------------------------------
Application:
* Fix navigation with DPAD
* Improved RTL support
* Browsers: go back at root level on navigation menu category click
* Fix position in video not restored when launched from an external app
* Improved design in playlist, history and browsers
* Misc. fixes
TV:
* Changed video player controls:
- ↓ shows control panel
- ↑ shows advanced options
- ← and → seek in video
- OK/Select button toggles play/pays when control panel is not displayed
Changes between 1.9.7 and 1.9.8:
--------------------------------
Application:
* Subtitles download (local files only for now)
* Fix resume point for video launch from 3rd party app
* Fix repeat with only one media
* Add repeat and shuffle modes in video player
* Batter DPAD navigation in tablet UI
* Fill artist tag for session metadata
* Prevent grouping videos starting with "The"
TV:
* Long click on any media display the details view
* Subtitles download (local files only for now)
Changes between 1.9.6 and 1.9.7:
--------------------------------
Application:
* Overlay popup view for video playback
* Enable split window mode on LG devices
* Fix Media Information infinite loading
* TV: Close folder if login dialog is canceled
* Misc fixes
Changes between 1.9.5 and 1.9.6:
--------------------------------
Application:
* Activate multi windows mode for Samsung devices
* Display a FAB to play all media of a folder in browsers views
* Simple click in a folder now just plays the media, not all of them
* Fix video load while playing audio
* Use '+' and '-' buttons to set video playback speed, instead of progressbar
Changes between 1.9.4 and 1.9.5:
--------------------------------
Application:
* Restore video playlist playback
* Remember playback state after a call or headset unplug/replug
* Force video player orientation on sensor instead of user preference
* Fix media launch from gallery app
* Fix lock not restoring video orientation
Changes between 1.9.3 and 1.9.4:
--------------------------------
Application:
* Feature to set a song as ringtone from current playlist
* Fix video resume from background playback or apps switching
* Remember paused state in Video player
* Improve randomization for playback
* Fix notification being briefly displayed for network videos
* Fix potential crash when launched by a 3rd party app
Changes between 1.9.2 and 1.9.3:
--------------------------------
Application:
* Option to remember video playback speed
* Add "Append to playlist" feature for audio media
* Enlarge login dialog
* Disable username for manual SMB server adding
* Store login credentials by default & remember choice
* Hide media length in playlist when we don't know it
* Fix play/pause from notification
* Fix external calls for VLC to play videos not handled
* Fix EqualizerFragment empty after being paused
* Misc. fixes
Core:
* Improve network browsing
* Improve streaming of large files
Changes between 1.9.1 and 1.9.2:
--------------------------------
Application:
* Add 'Auto landscape' and 'Auto portrait' modes
* Login dialog is now scrollable
* Better usb key/SD card mount/unmount detection on TV
* Fix wrong thumbnails on media or images corruption
* Fix video -> audio transition
* Fix VLC starting playback when another app grabs audiofocus
* Fix Browsers and History appearance with large fonts
* Misc fixes
Changes between 1.9.0 and 1.9.1:
--------------------------------
Application:
* Ask system permission for brightness mode on Marshmallow
* Fix thumbnails generation slowdown
* Changed version code, beta is available for Android TV now
* Samba library updated
* Fix 'show last video' option being hidden
* Fix crash on screen rotation with login dialog
* Fixed notification displayed when playing network video
* Go back on login dialog cancelled
* Restrict video playlists from Android 2.x devices
* Show server icon in favorites
* Fix 'save as favorite' option not available for network servers
* Fix image loading on TV
* Misc. fixes
Changes between 1.7.0 and 1.9.0:
--------------------------------
Core:
* Hardware accelleration is now asynchronous
* Preparation for Asynchronous debugging
* Use mpg123 as MP3 decoder
* Improve UPnP support
Application:
* Moved targetSDK to 23
* Runtime permissions for storage & ringtone setting
* Network browsing
* Video Playlists
* Search in 'now playing' playlist
* Restore playback history
* Properly restore previous Equalizer setting
* Undo action for media deletion
* 'now playing' list auto-scrolls to current item
* Playback service is more persistent
* Pause playback, instead of stop, on audiofocus lost
* TV UI is now available for Android 4.2+ devices
* Option to disable touch control in video playback
* Option to disable coverArt as lockscreen wallpaper
* Simplify and fix animations
* 'Save playlist' has moved into Advanced options
* Fix preferences appearence on Android 4.0+ devices
* Fix HoneyComb status bar dimming in video playback
* Fix media deletion
* Fix crash with huge collection for a single artist
* Fix playlist sections duplicated
* Fix case sensitive sorting in browsers
* @hide Extensions API
TV:
* Audio Player view has been redesigned
* Improve Now Playing button
* Improve Audio player
* Video, Songs and Browser views now sort item by first letter
* File Browser
* Playback history
* 'About' and 'Licence' views
* Scan device media more often
Known issues:
* Cannot open files on SFTP servers with witespace.
Changes between 1.7.1 and 1.7.2:
--------------------------------
Application:
* Fix small crashes
* New work-around for broken SamSung/Wiko/QMobile phones
Changes between 1.7.0 and 1.7.1:
--------------------------------
Core:
* Fix seeking deadlocks and no-sound after seek issues
Application
* Numerous crashes and glitches for the application
Changes between 1.6.6 and 1.7.0:
--------------------------------
Nota Bene: The application is now only supporting Android 2.2+
Core:
* New fonts rendering engine, with fonts fallback
Application:
* Use MediaSessionCompat to replace MediaSession and RemoteControlClient
This should fix a few weird bugs on some specific Android versions
* New notification look
* New Navigation menu, based on appcompat
* Option to remember brightness level in video player
* Restart current song on 'previous' click
* We now display songs length in playlist
* Refactored playlist & video views
* Removal of dialogs to use Snackbars
* Misc. fixes
ChromeOS:
* 'Open' option replaces the directory browser
* YUV chroma format preset by default on ChromeOS
* Disable brightness control on ChromeOS
Changes between 1.6.5 and 1.6.6:
--------------------------------
TV:
* Remove AUDIO_RECORD permission
Application:
* Correctly save position in video
* Correctly unmute when using volume keys
* Fix regressions
Translations:
* Update of Turkish, Swedish, Portuguese, Japanese, German,
Chinese, Ukrainian. Swedish, Dutch, Spanish
Changes between 1.6.4 and 1.6.5:
--------------------------------
Application:
* Add optional seeking buttons in video player
* Fix crash on Audio Album sorting
* New preferences code using Material design
* Update support library to 23.1
* Fix FloatingActionButton on Android 2.x
* Allow seeking action in all elements in audio player
Changes between 1.6.3 and 1.6.4:
--------------------------------
Core:
* Fix playback and seeking of some ASF/WMV/WMA files
Application:
* Fix staying-alive screen
* Correctly sort by track number in the album view
Changes between 1.6.2 and 1.6.3:
--------------------------------
Application:
* Fix crash on Android < 3.0
Changes between 1.6.1 and 1.6.2:
--------------------------------
Application:
* Fix crashes on wiko and QMobile phones (bis repetita)
* Fix IllegalStateException in AWindow when relaunching VideoPlayer
* Fix crash in Video Fragment on old Android versions
Changes between 1.6.0 and 1.6.1:
--------------------------------
Application:
* Fix crashes on wiko and QMobile phones
* Fix preferences crashes
* Fix crashes in Videos List and Main Activity
Changes between 1.5.90 and 1.6.0:
---------------------------------
Core:
* Streamline libVLCjni.so symbols
* Port to Android-M
* Fix HTTP seek regression from 1.5.90
Application:
* Speed up the video/audio lists interface
* Speed up the thumbnailing process and remove glitches
* Correctly blacklist the system notifications and ringtones
* Fix last playlist and random restoration
* Fix grouping of videos
* Translations update
Changes between 1.5.2 and 1.5.90 (1.6.0-beta):
----------------------------------------------
Core:
* Hardware decoding performance improvements
Application:
* Revamped Advanced options dialog
* Properly restore audio volume
* Restored 'delete playlist' option
* Introduction of a 'dark' widget
* Performance improvement for Audio/Video media lists display
* Databinding implementation
* Upgraded AppCompat to version 23.0.1
* Fix last audio shortcut
* Fix thumbnail for ts and dvd
* Fix thumbnail aspect ratio with some videos
* Translations update
TV:
* Fix video player behaviour while playing in background
* Fix media keys events management
Changes between 1.5.1 and 1.5.2:
--------------------------------
Core:
* Fix configuration of MediaCodec opening
Application:
* Add an option to disable auto scanning device at application startup
* Update to SDK 23 and appcompat 23
* Fix remote play/pause button behaviour
* Fix delete option for playlists
* Play all songs starting on the one selected in 'songs' tab
* Hidden feature : play a video in loop by long press on 'play' in video player
* Fix audio browser showing 'no media' view
* Fix scan after interrupted previous scan
TV:
* Immediatly pause video once not visible anymore on TV background
* Stop button now exits audio player on TV
* Refactored network browser, now showing alphabetically grouped files
Changes between 1.5.0 and 1.5.1:
--------------------------------
Core:
* Fix performance regression, by fixing an Audio synchronisation issue
libVLC:
* Add Setters for SurfaceTextures in AWindow
Application:
* Fix append option in album view
* Fix crop after screen rotation
* Prevent too frequent devices scanning
* Fix intent listing
* New interface for advanced options: playback speed, chapters, Jump to Time,
Audio/Subtitles delay, Equalizer, play as audio...
* Add a "title" option for extra Intents when calling VLC
TV:
* Fix some background video issue when playing audio
* Support the stop button on remotes
* Add Now Playing tile in main view
Translations
* Update of all translations
Changes between 1.4.1 and 1.5.0:
--------------------------------
Application:
* Removed permission READ_LOGS for recent Android versions
* Removed permission READ_PHONE_STATE for recent Android versions
* Handle media (external SD cards & USB keys) mount and unmount
* Position in playlist and in song are now restored when you load last playlist
* Design improvements, replaced some dialogs and toasts by snackbars
* Merge Audio and Video playback in a PlaybackService
* Improve audio<->video modes switches
* Large code cleaning in all layers of the application
* Fix advanced video options and video resolver crashing
* Chapters/titles detection improvements
* Fix audio focus in numerous cases
* New subtitles file picker
* Improve incoming View Intent to get subtitles path
* Use TabLayout and FloatingActionButton from appcompat instead of custom code
* Control Widget is now resizable
* Media Information is available from Directory browsing
* New interface for sleep timer and jump to time
Chrome:
* Fix runtime issue with pipe2 absence
* Disable quit&restart
libVLC:
* Rewrite of most libVLCjni classes, notably MediaPlayer, libVLC, Media,
Equalizer and the related ones
* Rewrite events managements, callbacks and surface callbacks
* Creation of a .aar file for libVLC
Core:
* libvlc new API to set the Android context for surfaces
* Removal of static and extern objects for thread-safety
* Merge of all video outputs into one
TV:
* Fix HDMI devices
* Support video in background
* Add more features in video playback that were only on the non-TV version
Changes between 1.4.0 and 1.4.1:
--------------------------------
Application:
* 'Play' option in context menu on albums