From 0894abf9b281d896de6411931ac5c409667c0786 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 15 Sep 2025 13:46:37 +0200 Subject: [PATCH] Updated CHANGELOG & bumped version code to 6.0.18 --- CHANGELOG.md | 15 +++++++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31ef7f373..cfe480a04 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.18] - 2025-09-15 + +### Added +- Added menu icon next to currently selected account avatar to make the drawer menu easier to understand +- Added missing dialpad floating action button in the call transfer fragment + +### Changed +- Improved bodyless friendlist presence process when it's received + +### Fixed +- Fixed "End-to-end encrypted call" label while in conference, the call may be end-to-end encrypted but only to the conference server, not to all participants +- Fixed missing meeting subject when calling the conference SIP URI if the conference info doesn't exist yet +- Finish CallActivity if no call is found when trying to answer/decline a call from the IncomingCallFragment +- Prevent empty screen when rotating the device and clicking on the empty part next to the list while in landscape and then rotating the device back to portrait + ## [6.0.17] - 2025-09-02 ### Changed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5aae42bcb..f84d06b0f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.17" +var gitVersion = "6.0.18" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600017 // 6.00.017 - versionName = "6.0.17" + versionCode = 600018 // 6.00.018 + versionName = "6.0.18" manifestPlaceholders["appAuthRedirectScheme"] = packageName