From 9de31bba99ddc1778634ede09621336a037a17e9 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 18 Apr 2025 10:39:25 +0200 Subject: [PATCH] Updated CHANGELOG & bump version code for 6.0.5 --- CHANGELOG.md | 14 ++++++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c3a0eb5..2d30d3d43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,20 @@ 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.5] - 2025-04-18 + +### Changed +- When calling a SIP URI that looks like a phone number in the username and an IP in the domain, replace the domain with the one of the currently selected account to workaround issue with PBXs using IPs instead of domains in From header +- Improved account creation page UI when push notifications aren't available +- Improved called account display on incoming call screen when more than one account configured +- Updated telecom package from beta to release candidate + +### Fixed +- Fixed transfer call view numpad button starting a new call instead of forwarding the current one +- Fixed incoming call not displayed in call history depending on how the From & To headers are formatted (SDK fix) +- Fixed crashes related to foreground service not being started +- Fixed crash due to lateinit property not being initialized before used + ## [6.0.4] - 2025-04-11 ### Changed diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a9c3c4e64..43ef5e56b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.4" +var gitVersion = "6.0.5" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600004 // 6.00.004 - versionName = "6.0.4" + versionCode = 600005 // 6.00.005 + versionName = "6.0.5" manifestPlaceholders["appAuthRedirectScheme"] = packageName