Bump version to 3.6.0 Beta 1

If it seems to be a rollback, we use this version name again because
the previous 3.6 beta versions were never released. To avoid confusion,
we go back to Beta 1, with a version code based on the 3.5.5 release.
This commit is contained in:
Nicolas Pomepuy 2024-10-07 14:55:59 +02:00
parent 7a3fc1d126
commit 19088ce639
2 changed files with 6 additions and 30 deletions

32
NEWS
View File

@ -1,35 +1,11 @@
Changes between 3.6.0 Beta 4 and 3.6.0 Beta 6:
------------------
* Remote access video player remote
* Remote access advanced media settings
* PiP improvements
* Audio player chapter navigation
* Crash fixes
Changes between 3.6.0 Beta 3 and 3.6.0 Beta 4:
------------------
* Remote access: multiple addition and improvements
* Nightly auto update
* Video player: tap to fast play
* Improve the PiP mode
* Improve dav1d integration
* Crash fixes and memory leaks
Changes between 3.6.0 Beta 1 and 3.6.0 Beta 3:
------------------
* Remote access: more content and improvements
* Warning for metered connections
* Icons rework
* Browser interface rework
* Rework the add to playlist dialog
* Playback behavior fixes
* Android Auto improvements
* Crash fixes and memory leaks
Changes between 3.5.4 and 3.6.0 Beta 1:
------------------
* Remote access: take control of your VLC for Android from any device
* Favorite any media and filter your medialibrary content by favorite
* Video player: tap to fast play
* Warning for metered connections
* PiP improvements
* Audio player chapter navigation
* UI improvements
* Crash fixes

View File

@ -39,8 +39,8 @@ allprojects {
ext {
appId = "org.videolan.vlc"
versionCode = 3050460
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.0 Beta 6'
versionCode = 3050510
versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.0 Beta 1'
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'