From 94a9ea07f4226588cf2399542d75dd3823016e8a Mon Sep 17 00:00:00 2001 From: Duncan McNamara Date: Wed, 1 Feb 2023 11:37:53 +0100 Subject: [PATCH] Bump to version 3.5.4 Beta 2 --- NEWS | 6 ++++++ build.gradle | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index f0cb62eb8..d819b1f6c 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/build.gradle b/build.gradle index c51286aa3..a36804e0e 100644 --- a/build.gradle +++ b/build.gradle @@ -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'