From 28b6bd7e90311ef2a42b93403a8c36d88c5186d8 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 16 May 2025 11:13:58 +0200 Subject: [PATCH] Updated changelog & version code/name from release/6.0 branch --- CHANGELOG.md | 20 ++++++++++++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7e53d9b2..1bd8139d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,26 @@ Group changes to describe their impact on the project, as follows: - Added a vu meter for recording volume - Added a setting for user to choose whether to sort contacts by first name or last name +## [6.0.7] - 2025-05-16 + +### Added +- CS, NL and RU translations from Weblate + +### Changed +- Improved find contact performances +- Make sure speaker audio device is used for playing the ringtone during early media +- Reworked bottom navigation bar in portrait and unread count indicators +- No longer delete conversations when deleting account (for now); causes user to leave group which is an issue when using multiple devices + +### Fixed +- Fixed no default account after remote provisioning +- Prevent lists from refreshing too many times when using LDAP or remote CardDAV contact directories +- Fixed black miniatures in conference if bundle mode is disabled in account params +- Fixed long press on a chat message containing a SIP URI triggering call +- Disable IMDN bottom sheet for incoming messages in groups instead of showing it empty +- Refresh conversations list after clearing conversation history +- Fixed another race condition issue related to foreground call service + ## [6.0.6] - 2025-05-02 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5bc574602..a39ed72b0 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.6" +var gitVersion = "6.0.7" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 36 - versionCode = 600006 // 6.00.006 - versionName = "6.0.6" + versionCode = 600007 // 6.00.007 + versionName = "6.0.7" manifestPlaceholders["appAuthRedirectScheme"] = packageName