From 521d71e8db47d07ba77fae0aa88ca182c7c18699 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 25 Aug 2025 09:27:49 +0200 Subject: [PATCH] Bumped version code to 6.0.16 & updated CHANGELOG --- CHANGELOG.md | 11 +++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index feb7bf71c..2673d316a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,17 @@ Group changes to describe their impact on the project, as follows: Fixed for any bug fixes. Security to invite users to upgrade in case of vulnerabilities. +## [6.0.16] - 2025-08-25 + +## Added +- Access to Help/Troubleshooting pages from Assistant + +## Fixed +- Some Core methods being called from UI thread causing either a crash or a deadlock sometimes +- Scrolling issue when doing a search in a conversation with only one result +- Contacts not updated after body less presence notify was received +- VFS issue due to encrypted.pref file being backed up by Android OS + ## [6.0.15] - 2025-08-11 ### Fixed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 132ba07c3..0b513f499 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.15" +var gitVersion = "6.0.16" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600015 // 6.00.015 - versionName = "6.0.15" + versionCode = 600016 // 6.00.016 + versionName = "6.0.16" manifestPlaceholders["appAuthRedirectScheme"] = packageName