From 293da7b28b7acce7586724203ed117291d0b938d Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 6 Jun 2025 14:04:13 +0200 Subject: [PATCH] Updated CHANGELOG & bumped version to 6.0.9 --- CHANGELOG.md | 15 +++++++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b05e245cf..7260a59c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,21 @@ 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.9] - 2025-06-06 + +### Added +- German translation (88% complete) +- Link to user guide in Help section +- Missing scroll views for help & debug layouts + +### Changed +- Prevent port from being set in the SIP identity address in third party account login + remove port (if any) from SIP identity for existing accounts +- Show last message timestamp instead of conversation last updated timestamp in conversations list + +### Fixed +- Prevent blinking in conversations list when removing message from chat room +- Prevent empty (can even lead to crash) display name in call notification (using all identification fields from vCard) + ## [6.0.8] - 2025-05-23 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c73088d43..d2684152d 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.8" +var gitVersion = "6.0.9" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600008 // 6.00.008 - versionName = "6.0.8" + versionCode = 600009 // 6.00.009 + versionName = "6.0.9" manifestPlaceholders["appAuthRedirectScheme"] = packageName