Browse Source

Bump version to 3.5.4 Beta 3

merge-requests/1690/head
Nicolas Pomepuy 4 years ago
parent
commit
c9389cb57e
  1. 7
      NEWS
  2. 4
      build.gradle

7
NEWS

@ -1,3 +1,10 @@
Changes between 3.5.4 Beta 2 and 3.5.4 Beta 3:
------------------
* 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

4
build.gradle

@ -39,8 +39,8 @@ allprojects {
ext {
appId = "org.videolan.vlc"
versionCode = 3050320
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.5.4 Beta 2'
versionCode = 3050330
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.5.4 Beta 3'
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'

Loading…
Cancel
Save