From f5f60ae4b1d4261d57b1a02a12f7e6b7d47212c1 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 6 Aug 2025 16:16:01 +0200 Subject: [PATCH] Updated CHANGELOG & bumped version to 6.0.14 --- CHANGELOG.md | 9 +++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5767bf63b..c7e59c741 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.14] - 2025-08-06 + +### Fixed +- Fixed ANR due to deadlock caused by method being called from wrong thread +- Fixed microphone not always recording audio while app in background or if screen is turned off +- Fixed missing favorites in start call / create conversation views +- Fixed outgoing call view in full screen +- Fixed generated avatar for SIP URIs without username + ## [6.0.13] - 2025-07-31 ### Fixed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0dc4cb424..607739708 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.12" +var gitVersion = "6.0.14" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600013 // 6.00.013 - versionName = "6.0.13" + versionCode = 600014 // 6.00.014 + versionName = "6.0.14" manifestPlaceholders["appAuthRedirectScheme"] = packageName