diff --git a/CHANGELOG.md b/CHANGELOG.md index 7260a59c1..6a894d865 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,22 @@ 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.10] - 2025-06-27 + +### Added +- Added a new top bar alert area for pending file/text sharing. + +### Changed +- Reworked in-app top bar alerts, now can show both an account alert and an active call alert. +- Hide SIP address/phone number picker dialog if contact has exactly one SIP address matching the default domain and currently default account domain. + +### Fixed +- Bluetooth not being used automatically when device is connected during a call. +- Call encryption status label stuck in "Waiting for encryption". +- Group chat room creation if LIME server URL isn't set. +- Participant mention if more than one in the same chat message. +- Force default account in call params when starting one. + ## [6.0.9] - 2025-06-06 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index d2684152d..569f0792b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.9" +var gitVersion = "6.0.10" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600009 // 6.00.009 - versionName = "6.0.9" + versionCode = 600010 // 6.00.010 + versionName = "6.0.10" manifestPlaceholders["appAuthRedirectScheme"] = packageName