-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1122 lines (847 loc) · 30.3 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 1.7.0 and 1.8.0:
--------------------------------
Core:
* Preparation for Asynchronous debugging
* Use mpg123 as MP3 decoder
* Improve UPnP support
Application:
* Moved targetSDK to 23
* Runtime permissions for storage & ringtone setting
* Support Extensions
* Support Video Playlists
* Support search in current playlist
* Simplify and fix animations
* Improve networking browser
* Undo action for media deletion
* Restore playback history
* Fix media deletion
TV:
* Improve Now Playing button
* Improve Audio player
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
* Handle FileProviders URIs from external apps
* Playback is tried for every filetype in directories browser mode
* Misc fixes, including in the file deletion part and file browsing
SDK:
* VideoPlayerActivity now returns result, with return code and extras infos
Core:
* Add new acceleration option using MediaCodec NDK API
Translation updates:
* Most languages updated
Changes between 1.3.2 and 1.4.0:
--------------------------------
Application:
* Unify directories managment between preferences and Directories browser
* Rewrite the directory browser
* Long press on +/- buttons to continuously increase/decrease audio au subs delay
* Material fixes for dialogs and some activities
* Fix regression on the mini-player displaying in some activities
* Support Play all in folders
* Fix crashes
* Don't use hardware decoding for some MTK devices on Android 4.1 because of a black screen (still investigating)
Core:
* Blacklist some Samsung devices from hardware decoding
Changes between 1.3.1 and 1.3.2:
--------------------------------
Application:
* Fix wrong media opened from new local files browser
* Fix potential crash in the MainActivity
* Fix TV build
Changes between 1.3.0 and 1.3.1:
--------------------------------
Application:
* Increase the accessibility of the application
* Change the Side Bar to meet Material Design update
* Rewrite the local files browsing, using the network browsing code, which adds
preparsing, prefetching, async, extensibility and code reuse
* New album browser view
* Fix back button behavior on VideoPlayer
* Improve Material look, Ripple effect on Lollipop
* Activate the Audio Delay control
* Smaller Video Player Controler
* Fix crashes, focus, rotations
* Update to AppCompat 22.1
JNI:
* Add a way to capture stdout logs directly
Core:
* Time stretching is now on by default
* Activate hardware acceleration for .TS files
* Fix crashes with live streaming and hardware acceleration
* Fix WMV on MTK devices
* Improve audio resampler quality
TV:
* Fix recommendations duplication and improve recommendations
* Fix B button handling and TextViews
Translations:
* Update of ALL the translations
Changes between 1.2.6 and 1.3.0:
--------------------------------
libvlcjni:
* prepare the audio <=> video switch
Application:
* Support background playback for video
* Update close, playlist and save icons
* Broadcast metadata to other apps, including scrobblers
* New Advanced dialog for audio playback
* Improve search look and accuracy
* Fix double entries for external SD cards, notably LG G3, Tablet Shield
* Fix Android 4.1 navigation bar
* Fix focusability of repeat, shuffle and audio buttons
* Fix shuffle button
* Fix crashes and interface issues
* Fix accessibility text on some buttons of the interface
* Remove wheelview dependency
Translations:
* Update of German, Simplified Chinese, Ukrainian, Tamil, Portuguese, Italian,
Galician and Spanish translations
Changes between 1.2.5 and 1.2.6:
--------------------------------
Core:
* Fix crash on startup with some iso files
Application:
* Fix presentation mode
* New audio material design icons
* Fix gestures sensitivity
* Improve memory management
* Minor bug and crash fixes
TV:
* Fix recommendation playback
Changes between 1.2.4 and 1.2.5:
--------------------------------
Application:
* Fix audio stutter with some devices
* Fix MPEG4 on some MTK devices (Wiko)
* Fix crashes with some QCOM devices (Samsung Galaxy Tab 4, Galaxy S4/S5...)
* Minor fixes and UI adjustments
* Add option to ask for resume video or play from star
* Volume/brightness: add a vertical bar and levels in %
Changes between 1.2.3 and 1.2.4:
--------------------------------
Application:
* Fix crashes
* Fix material design for action bar
* Fix audio support on Fire OS
Changes between 1.2.2 and 1.2.3:
--------------------------------
Application:
* Fix material alignment
* Support chapter selection
* Fix directory context menu
* Fix crash when seeking
Translations:
* Update of Danish, Croatian, Kabyle, Polish, Slovenian, Swedish and Turkish
Changes between 1.2.1 and 1.2.2:
--------------------------------
Core:
* Fix an audio/video sync regression
Application:
* Add an intent to load sub files
* Seek by position instead of time, by default
Changes between 1.2.0 and 1.2.1:
--------------------------------
Application:
* Allow to switch to audio mode, when playing a video
* Change the sort icon to match Material design
* Fix crash
TV:
* Better navigation with buttons and gamepad
* Fix network favorites
Changes between 1.1.6 and 1.2.0:
--------------------------------
Application:
* Show 'load last video' option on phones
* (Lollipop only) Swipe music notification to remove it. When playback is paused.
* Fix video ts opened as audio
* Fix black theme
* Fix player menu hidden with some MKV files
* Keep player speed between videos
* Refactor track selections and updates
* Option to exlude Directories from Media Library
* Playlists support for audio
* In video player, lock the back button in lock mode
* Fix crashes for Android 2.x
* Allow to sort video by modified date
* Improve volume and brightness gestures
* Support cover for video files
* Misc bugfixes
TV:
* Better thumbnails
* Better recommendations (last video 3 random ones)
* Better gamepad events
Translations:
* Thai, Russian, French, Traditional Chinese, Simplified Chinese, Ukrainian,
Turkish, Tamil, Swedish, Slovak, Portuguese, Polish, Dutch, Korean,
Japanese, Italian, French, Finnish, Spanish, Modern Greek, German and
Danish updates
Changes between 1.1.5 and 1.1.6:
--------------------------------
Application:
* Fix look of secondary fragments activities, for better navigation
* Rework actions
* Fix rare crashes
* Fix HDMI unplugging
* Improve seek
* Fixes on AudioFocus
* Fixes on Black Theme
TV:
* Recommend last video viewed
* Better UI while scanning
Core:
* Fix mediacodec crash
Changes between 1.1.4 and 1.1.5:
--------------------------------
Application:
* Fix BD upgrade crashes, because of broken versions of Android
Changes between 1.1.3 and 1.1.4:
--------------------------------
Core:
* Support ModTracker files
* Fix freeze when changing audio speed
Audio:
* Add AC3 passthrough support on Lollipop (Tested on Nexus Player)
* Add PCM 5.1 and 7.1 support via HDMI or SPDIF
* Add Float support on Lollipop
Application:
* More Material fixes (search, streams, equalizer)
* Improvements on the black theme (colors and settings)
* Fix numerous crashes
* Fix album art for artists
TV:
* Fix look of numerous activities
* Better keyboard and gamepad mappings
* Shuffle and repeat in Audio mode
* Better recommendations
Translations:
* Update most translations
Changes between 1.1.2 and 1.1.3:
--------------------------------
Core:
* Improve audiotrack performance and quality
Main Application:
* SearchView in Material, new search look and performance
* New FAB to play all the songs
* Rework information panel
* Ellipsize long URLs in stream panel
* Improve dark theme
* Fix Moto G SD cards detection
* Fix LG bug with menu button
* Fix rare NPE for Samsung devices
* Fix numerous NPE and crashes
Changes between 1.1.1 and 1.1.2:
--------------------------------
Main Application:
* Fix fast scrolling pulling refresh
* Fix settings toolbar to look Material
TV:
* Fix gamepad requirement
Changes between 1.1.0 and 1.1.1:
--------------------------------
Main Application:
* Bugfixes
* UI Adjustments
* Restore dpad navigation between audio tabs
Changes between 1.0.2 and 1.1.0:
--------------------------------
Main Application:
* New design for Material/Lollipop
* Port to 5.0 new APIs
* Rewrite of most views
* Gamepad controller support for navigation
* Async load of fragments and search
* Option to show videos as list in portrait
* Suport pull to refresh
* Tracknumber, DiscNumber & AlbumArtist tags support for audio files
* Handle nowplaying for streams
* Set Audio & Subs delay
TV:
* Port for Android TV
* Video + Audio browsing, settings
* Recommandations
Core:
* Rewrite of the NativeWindow output
* Support of direct rendering and GPU 0-copy
* New rendering of subtitles
* New audio output based on AudioTrack
* Support all the new ABIs
Fixes:
* Fix parsing of metadata with space
* Fix popup context menu loaded for wrong files
* More than 60 bugs fixed
Build:
* Move to Gradle
* Prepare compilation for Android, Android TV, Chrome
* Simpler multi-ABI compilation
Translations:
* Update of all the translations
Changes between 1.0.0 and 1.0.1:
--------------------------------
Main Application:
* Fix popup context menu loaded for the wrong items
Changes between 0.9.10 and 1.0.0:
---------------------------------
Main Application:
* Minimum Lollipop support
* Support remotes for DVD navigation
* Immersive mode from Kitkat and on
* Fix crashes
Translations:
* Update of all the translations
Changes between 0.9.8 and 0.9.9:
--------------------------------
Main Application:
* Fix Artist names on the lock screen and bluetooth interface
* Allow VLC to be installed as a system app
* Fix potential crashes in the UI
Core:
* Fix assert on some video decoding
* Fix avi and m4a regressions
Translations:
* Update of all the translations (more than 60 languages now)
Changes between 0.9.7 and 0.9.8:
--------------------------------
Main Application:
* Fix compatibility with Android 2.1
* Fix Media detection when the extension was in UPPER CASE
* Fix default display orientation for the Video Player
* Fix possible crashes and leaks
* Fix "replay from start" issue when screen goes off
Core:
* Fix compatibility with MIPS (broken with the native crash handler
* Support building with NDKr10
* Prepare support for OMX zero-copy for Honeycomb+ (Android-11 and later)
libVLCjni:
* Add bitrate information, statistics and player state methods
Translations:
* Update of Spanish, Finnish, French, Hebrew, Indonesian, Marathi, Polish,
Portuguese, Tatar translations
Changes between 0.9.7 and 0.9.7.1:
----------------------------------
Main Application:
* Fix "mysterious" disappearance of the video buttons :)
* Fix a couple of crashes in preferences, history and media information panels
Changes between 0.9.6 and 0.9.7:
--------------------------------
Core:
* Fix pthread issue on Android L
* Fix wrong error on some x86 devices
Main Application:
* Add a DVD menu button, fix DVD navigation and improve DVD menus support
* Cache DVD CSS keys
* Remove dependency on ActionBarSherlock: use android-support-v7-appcompat
instead, from now on.
* Fix various crashes on application and video playback start
Translations:
* Initial Nepali and Bengali translations
* Update of Traditional Chinese, Simplified Chinese, Uzbek, Serbian, Slovenian,
Russian, Romanian, Brazilian Portuguese, Portuguese, Polish, Marathi,
Japanese, Italian, Scottish Gaelic, French, Modern Greek, Welsh, and Bosnian
translations
Changes between 0.9.5 and 0.9.6:
--------------------------------
Core:
* repair equalizer
* Blacklist hardware decoding for more TS files
Main Application:
* Fix crash in Audio browsing and Video player
* Fix retaining of user playlists when clearing
* Updates of all translations
Changes between 0.9.4 and 0.9.5:
--------------------------------
* Fix a codec crash during thumbnailing
* Fix various crashes in Audio and Video views
* Fix hardware decoding exceptions
Changes between 0.9.3 and 0.9.4:
--------------------------------
Core:
* Fix playback of numerous files formats
* Fix some crashes in hardware decoding
Main application:
* New VLC icon
* Tips and tutorial are shown on the first start
* Add the possibility to send a report after a native crash
* Numerous icons modifications and tweaks
* Support Dual Audio in remote mode
* Fast scroll using letters in audio views
* DVD menu are now supported
* Vibrations on long clicks
* Major translations updates
Changes between 0.9.2 and 0.9.3:
--------------------------------
Main Application:
* Fix a crash in the Remote Audio Player, leading to misbehaviours in the
Audio player service
* Minor icon tweaks
Changes between 0.9.1 and 0.9.2:
--------------------------------
Core:
* Support DVD iso
Main Application:
* Fix numerous crashes in the interface
* Improve the Secondary Display experience
* Update most translations
Changes between 0.9.0 and 0.9.1:
--------------------------------
Core:
* Fix mp4 playback
Main Application:
* Fix crash on some 2.3.x devices
* Fix numerous crashes in the interface
Changes between 0.1.4 and 0.9.0:
--------------------------------
Core:
* Hardware acceleration for video decoding and rendering
* New OpenGL video output
* Support subtitles accelerated rendering
* Support for SDK package creation
* Decoding and filter accelerations for ARM and x86
* Support video cropping
* Allow thumbnailing of 4k videos
Main Application:
* New UI for the application, available in white and dark
* Enable Hardware decoding by default on Android 4.3 and newer
Direct fallback to software when hardware fails
* New UI for HDMI and Secondary Screens
* Experimental support for Miracast/WiDi
* New audio equalizer
* Group of video files in folders, for TV shows
* New preferences organization
* New detection for SDcards
* Add an option for frame skip to improve performance
* Add an option to set network caching
* Better audio service destruction
* Fix opening MRLs and video streaming
* Fix many crashes and warnings
Translations:
* Initial Greek, Kannada, Slovenian, Uzbek, Swedish, Sinhala, Romanian and
Latvian translations
* Updates to the Arabic, Bosnian, Brazilian Portuguese, Catalan, Czech,
Danish, Dutch, French, Galician, German, Greek, Hebrew, Hindi, Icelandic,
Italian, Japanese, Khmer, Korean, Lithuanian, Marathi, Norwegian Bokmal,
Polish, Portuguese, Russian, Scottish Gaelic, Serbian, Simplified Chinese,
Slovak, Spanish, Thai, Traditional Chinese, Turkish, Ukrainian, Urdu,
Vietnamese and Welsh translations
Changes between 0.1.3 and 0.1.4:
--------------------------------
Main Application:
* Remove completion for URL opening
* Fix video stream playback when notifications arise
* Fix crashes in History Fragment
* Fix widget update events
Core:
* Fix video output on 2.x versions
* Fix thumbnailer
Changes between 0.1.2 and 0.1.3:
--------------------------------
Main Application:
* Fix SQlite crash on init
* Fix wrong display time on video player
* Fix crash on item selection in subfolder in directory view
Core:
* Fix for FLAC
* Fix for video output on 4.3
Changes between 0.1.1 and 0.1.2:
--------------------------------
* Relicensed libVLC jni wrapper and Java counterpart to LGPL
Audio Service:
* Keep the service alive only when playing
* Fix crashes
Main Application:
* Manual selection of subtitles
* Fix crashes and warnings
* Add an option to adjust the deblocking filter level, resulting in
noticeable performance improvements.
Translations:
* Initial Icelandic, Lithuanian and Vietnamese translations
* Updates to the Bosnian, Catalan, Chinese, Czech, Danish, Dutch,
Galician, German, Hebrew, Hindi, Italian, Japanese, Marathi,
Norwegian Bokmål, Polish, Portuguese, Russian, Scottish Gaelic,
Serbian, Slovak, Spanish, Thai, Turkish, Ukrainian, French,
and Welsh translations
Changes between 0.1.0 and 0.1.1:
--------------------------------
Core:
* Fix numerous crashes and error paths
Translations:
* Updates to German, Italian and Galician Translations
* New Welsh translation
Changes between 0.0.11 and 0.1.0:
---------------------------------
Core:
* Update to libVLC 2.1.0 new log API
* Update libVLC
* Allow to build with x86_64 and OSX SDKs
* Reduce memory usage
Main Application:
* Warn user if playback of a deleted item starts
* New dialog for speed/sleep/jump
* New control from Notifications
* Fix multiple important crashes
* Fix some subtitles selections
* Fix some infinite thumbnail retries
* Fix issues where a media would not start
libVLC:
* split libVLC classes to their own package: org.videolan.libvlc
Translations:
* Update of Basque, Croatian
Changes between 0.0.10 and 0.0.11:
----------------------------------
Main Application:
* Numerous fixes for recurrent crashes
* Better debugging log facility
* Show seek position when locked in fullscreen mode
* Avoid running thumbnailer when playing audio only
* Improve the overlay fading after a gesture
Translations:
* Initial Burmese, Danish, and Serbian translations
* Updates to the Bosnian, Catalan, Croatian, Czech, Danish, Dutch,
Estonian, German, Italian, Japanese, Khmer, Norwegian Bokmål, Polish,
Portuguese, Russian, Slovak, Spanish, Thai, Turkish, Ukrainian, Urdu,
Simplified Chinese, and Traditional Chinese translations
Changes between 0.0.9 and 0.0.10:
---------------------------------
* Subs selection
* Fixes for 2 frequent crashes
Changes between 0.0.8 and 0.0.9:
--------------------------------
Core:
* Various crash/stability fixes
* Improved video-audio synchronization
* Improved automatic SD card detection
* Experimental YV12-based androidsurface
* Wakelock issue with stopping was fixed
* Use of a faster DTS decoding library
* Codec updates
Main application:
* SD cards mount point fixes
* Change of subtitle encoding is now possible
* Subtitles and audio track selection is now preserved across calls
* Many bugfixes in the interface
* Fix selection of some audio tracks
* A sleep timer was added for audio and video
* Added an option to add custom paths to the media library scanner
* content:// based URIs from Camera and file pickers now supported
* Fix video player resume of media outside the media library
* Jump to Time feature
* Allow to open a video as audio-only
Widget:
* Display the timeline
Translations:
* Initial Traditional Chinese, Catalan, and Urdu, Odia,
Norwegian Bokmål and Portuguese (Portugal) translations
* Updates to the Bosnian, Japanese, Russian, French, Korean,
Simplified Chinese, Turkish, Thai, Slovak, Polish, Dutch, Khmer,
Italian, Hebrew, Galician, Spanish, German, Czech, Estonian,
Hindi, and Bosnian translations
Changes between 0.0.7 and 0.0.8:
--------------------------------
Core:
* Support MIPS compilation
Main application:
* SD cards mount points are auto-detected
* Directory view starts from the SD cards and are live-detected
* Improve the thumbnailing process
* Improve the headset handling and remote control code, including bluetooth
* Correctly support the lock screen controls
* Fixes for Android 4.2 support
* Fix for sound notification loudness
* Fixes miscellaneous crashes and issues
Interface:
* Allow toggling between remaining and total time in fullscreen
* Allow a menu option to start the media from the beginning
* Add different options for rotation and screen orientation
* Fix sorting of album tracks
* Add a ticker in the status bar, when playing audio
* Improve the Directories View
* Translations
Changes between 0.0.6 and 0.0.7:
--------------------------------
Core:
* Fix audio output selection to fix the audio-sync
Main application:
* reduce the memory used for thumbnails decoding
* better behaviour when we are low on memory
* fix the interaction between thumbnailing and sleeping
* fix various crashes
Interface:
* better multi-column look on low resolution phones
* fix audio song sorting
* add a popup-menu in the video list
* Show Volume and Brightness values