From 4b14f603c66a56da4baa37181b97fac08c25b983 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 16 Dec 2025 11:32:30 +0100 Subject: [PATCH] Updated CHANGELOG & bumped version code to 6.0.21 --- CHANGELOG.md | 19 +++++++++++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 253ced14a..a6c83aba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,25 @@ 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.21] - 2025-12-16 + +### Added +- Allow linphone-config: scheme URIs in in-app QR code scanner + +### Changed +- Workaround for audio focus & audio manager mode on devices that do not support TelecomManager APIs +- Set front camera as default after using back camera when scanning a QR code +- Added back largeHeap flag in AndroidManifest.xml + +### Fixed +- Fixed call recording indicator not showing local record in progress in case UPDATE isn't answered +- Fixed native addressbook reload when a contact is updated in the OS default app +- Fixed issue with linphone-config scheme URIs if scheme is followed by "//" +- Fixed Job & Company contact field not updated if field content was removed +- Fixed local avatar not displayed when calling ourselves +- Prevent crashes due to some ActivityNotFound exceptions +- Prevent crash due to empty clipboard on some devices + ## [6.0.20] - 2025-11-21 ### Changed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 9a34c8ab1..ec6e10955 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.20" +var gitVersion = "6.0.21" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600020 // 6.00.020 - versionName = "6.0.20" + versionCode = 600021 // 6.00.021 + versionName = "6.0.21" manifestPlaceholders["appAuthRedirectScheme"] = packageName