Bump to 3.6.0 Beta 3

This commit is contained in:
Nicolas Pomepuy 2024-10-28 12:06:11 +01:00
parent 5e643209bc
commit 85e092d14f
2 changed files with 8 additions and 2 deletions

6
NEWS
View File

@ -1,3 +1,9 @@
Changes between 3.6.0 Beta 2 and 3.6.0 Beta 3:
------------------
* Fix custom PiP
* UI fixes
* Crash fixes
Changes between 3.5.7 and 3.6.0 Beta 2:
------------------
* Remote access: take control of your VLC for Android from any device

View File

@ -39,8 +39,8 @@ allprojects {
ext {
appId = "org.videolan.vlc"
versionCode = 3050720
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.0 Beta 2'
versionCode = 3050730
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.0 Beta 3'
vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3
libvlcVersion = vlcMajorVersion == 3 ? '3.6.0-eap12' :'4.0.0-eap15'
medialibraryVersion = vlcMajorVersion == 3 ? '0.13.13-rc12' : '0.13.13-vlc4-rc12'