diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c3a0eb5..c0cafcb0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,26 @@ 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.1.0] - Unreleased + +### Added +- Added a vu meter for recording volume +- Added a setting for user to choose whether to sort contacts by first name or last name + +## [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 01d0b20a4..64f4badff 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 = 36 - versionCode = 600004 // 6.00.004 - versionName = "6.0.4" + versionCode = 600005 // 6.00.005 + versionName = "6.0.5" manifestPlaceholders["appAuthRedirectScheme"] = packageName