Bump to version 3.5.4 Beta 2

This commit is contained in:
Duncan McNamara 2023-02-01 11:37:53 +01:00
parent d38a206b8d
commit 94a9ea07f4
2 changed files with 8 additions and 2 deletions

6
NEWS
View File

@ -1,3 +1,9 @@
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

View File

@ -39,8 +39,8 @@ allprojects {
ext {
appId = "org.videolan.vlc"
versionCode = 3050310
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.5.4 Beta 1'
versionCode = 3050320
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.5.4 Beta 2'
vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3
libvlcVersion = vlcMajorVersion == 3 ? '3.6.0-eap5' :'4.0.0-eap8'
medialibraryVersion = vlcMajorVersion == 3 ? '0.13.13-rc5' : '0.13.13-vlc4-r5'