From 1716f8cf34922489071fc3284f7f78e001a9add3 Mon Sep 17 00:00:00 2001 From: Nicolas Pomepuy <nicolas@videolabs.io> Date: Mon, 25 Nov 2024 13:04:05 +0100 Subject: [PATCH] Bump to 3.6.0 Beta 4 --- NEWS | 9 +++++++++ build.gradle | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 5a98ab6c8a..5e3a4519a8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +Changes between 3.6.0 Beta 3 and 3.6.0 Beta 4: +------------------ + * Fix subtitles download + * Improve the permission management + * Allow renaming a playlist + * Fix some language issues + * Behavior and UI fixes + * Crash fixes + Changes between 3.6.0 Beta 2 and 3.6.0 Beta 3: ------------------ * Fix custom PiP diff --git a/build.gradle b/build.gradle index 12c4a6f2d2..637947e65e 100644 --- a/build.gradle +++ b/build.gradle @@ -39,8 +39,8 @@ allprojects { ext { appId = "org.videolan.vlc" - versionCode = 3050730 - versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.0 Beta 3' + versionCode = 3050740 + versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.0 Beta 4' vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3 libvlcVersion = vlcMajorVersion == 3 ? '3.6.0-eap13' :'4.0.0-eap16' medialibraryVersion = vlcMajorVersion == 3 ? '0.13.13-rc13' : '0.13.13-vlc4-rc13' -- GitLab