Browse Source

Bump the app to 3.6.4 Beta 4

merge-requests/1594/merge 3.6.4-beta04
Nicolas Pomepuy 1 year ago
parent
commit
2e6e0bd6a6
  1. 15
      NEWS
  2. 4
      build.gradle

15
NEWS

@ -1,3 +1,18 @@
Changes between 3.6.4 Beta 3 and 3.6.4 Beta 4:
------------------
* New default playback setting
* New feedback section in the about screen
* Resume playback and player behavior fixes
* Remove the reporter from the app launcher
* Add a quick play setting to play files without parsing
* Remote access: fix some mini player layout
* Remote access: always show the volume bar
* Remote access: fix the streams playback
* Fix some subtitles download issues
* Android auto behavior improvements
* Fix the equalizer navigation with DPAD
* Crash and behavior fixes
Changes between 3.6.4 Beta 2 and 3.6.4 Beta 3:
------------------
* New bookmark navigation

4
build.gradle

@ -39,8 +39,8 @@ allprojects {
ext {
appId = "org.videolan.vlc"
versionCode = 3060330
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.4 Beta 3'
versionCode = 3060340
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.4 Beta 4'
vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3
remoteAccessVersion = '0.5.0'
libvlcVersion = vlcMajorVersion == 3 ? '3.6.1' :'4.0.0-eap19'

Loading…
Cancel
Save