Updated CHANGELOG & version code to match 6.0.10 release

This commit is contained in:
Sylvain Berfini 2025-06-27 10:10:37 +02:00
parent 5337ab6413
commit f397456879
2 changed files with 19 additions and 5 deletions

View file

@ -17,7 +17,6 @@ Group changes to describe their impact on the project, as follows:
- Support right click on some items to open bottom sheet/menu - Support right click on some items to open bottom sheet/menu
- Added toggle speaker action in active call notification - Added toggle speaker action in active call notification
- Increased text size for chat messages that only contains emoji(s) - Increased text size for chat messages that only contains emoji(s)
- Dedicated top bar when file(s) or text is waiting to be shared
- New settings: - New settings:
- one for user to choose whether to sort contacts by first name or last name - one for user to choose whether to sort contacts by first name or last name
- one to hide contacts that have neither a SIP address nor a phone number - one to hide contacts that have neither a SIP address nor a phone number
@ -27,9 +26,24 @@ Group changes to describe their impact on the project, as follows:
### Changed ### Changed
- Hide SIP address/phone number picker dialog if contact has exactly one SIP address matching both the app default domain & the currently selected account domain - Hide SIP address/phone number picker dialog if contact has exactly one SIP address matching both the app default domain & the currently selected account domain
- Improved UI on tablets with screen sw600dp and higher, will look more like our desktop app - Improved UI on tablets with screen sw600dp and higher, will look more like our desktop app
- Split alert top bar in two to be able to see both alerts and ongoing call(s)
- Reworked some settings (moved calls related ones from advanced settings to advanced calls settings) - Reworked some settings (moved calls related ones from advanced settings to advanced calls settings)
## [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 ## [6.0.9] - 2025-06-06
### Added ### Added

View file

@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) {
} }
var gitBranch = ByteArrayOutputStream() var gitBranch = ByteArrayOutputStream()
var gitVersion = "6.0.9" var gitVersion = "6.1.0-alpha"
task("getGitVersion") { task("getGitVersion") {
val gitVersionStream = ByteArrayOutputStream() val gitVersionStream = ByteArrayOutputStream()
@ -100,8 +100,8 @@ android {
applicationId = packageName applicationId = packageName
minSdk = 28 minSdk = 28
targetSdk = 36 targetSdk = 36
versionCode = 600009 // 6.00.009 versionCode = 600010 // 6.00.010
versionName = "6.0.9" versionName = "6.1.0-alpha"
manifestPlaceholders["appAuthRedirectScheme"] = packageName manifestPlaceholders["appAuthRedirectScheme"] = packageName