From 452a749d1b807fe9f2f76a7df0e6c72f4f819271 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 20 Jan 2026 16:03:27 +0100 Subject: [PATCH] Bumped version code to 6.0.22 & updated CHANGELOG --- CHANGELOG.md | 9 +++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6c83aba4..bac6daae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,15 @@ 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.22] - 2026-01-20 + +### Changed +- Close search bar when opening bottom sheet and vice versa + +### Fixed +- Sending a file from another app using Android shortcut not working if conversation was already opened +- Trying to workaround an issue where ForegroundService notification isn't displayed in the allowed timeframe, causing an Exception + ## [6.0.21] - 2025-12-16 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ec6e10955..c203f1bff 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.21" +var gitVersion = "6.0.22" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600021 // 6.00.021 - versionName = "6.0.21" + versionCode = 600022 // 6.00.022 + versionName = "6.0.22" manifestPlaceholders["appAuthRedirectScheme"] = packageName