From c3873dfb759d3bfaf19aa05532516639b49cb281 Mon Sep 17 00:00:00 2001
From: Nicolas Pomepuy <nicolas@videolabs.io>
Date: Wed, 22 Jan 2025 14:43:38 +0100
Subject: [PATCH] Bump the app version to 3.6.2

---
 NEWS         | 5 +++++
 build.gradle | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index f35737d5b8..2e47bf0ecb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+Changes between 3.6.1 and 3.6.2:
+------------------
+ * Update the remote access dependency to fix a crash loop
+ * Fix a bug making the video played twice
+
 Changes between 3.6.0 and 3.6.1:
 ------------------
  * Behavior and crash fixes
diff --git a/build.gradle b/build.gradle
index 7088746577..614423cf3b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -39,8 +39,8 @@ allprojects {
 
 ext {
     appId = "org.videolan.vlc"
-    versionCode = 3060100
-    versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.1'
+    versionCode = 3060200
+    versionName = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? '4.0.0-preview - ' + versionCode : '3.6.2'
     vlcMajorVersion = project.hasProperty('forceVlc4') && project.getProperty('forceVlc4') ? 4 : 3
     remoteAccessVersion = '0.1.3'
     libvlcVersion = vlcMajorVersion == 3 ? '3.6.0-eap14' :'4.0.0-eap17'
-- 
GitLab