diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c962dc70..48d6c6a4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,23 @@ Group changes to describe their impact on the project, as follows: ### Changed - Reworked some settings (moved calls related ones from advanced settings to advanced calls settings) +## [6.0.8] - 2025-05-23 + +### Added +- Ukrainian & simplified Chinese translations from Weblate +- Sliding answer/decline button in incoming call fragment if device is locked (will help prevent calls from being unintentionally picked up or hung up while the device is being removed from a pocket) + +### Changed +- Show files with square design when more than one (as it is for media files) +- Outgoing chat bubbles will now display the sent file size (as it is for received messages) + +### Fixed +- Fixed issue with bluetooth hearing aids +- Fixed audio call being answered on speakerphone +- Fixed events related to joined/left conversation being briefly visible sometimes for 1-1 conversations +- Fixed files/media grid in chat bubble using more than 3 columns in landscape +- Fixed logs upload server URL setting + ## [6.0.7] - 2025-05-16 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a39ed72b0..d9ad569f7 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.7" +var gitVersion = "6.0.8" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 36 - versionCode = 600007 // 6.00.007 - versionName = "6.0.7" + versionCode = 600008 // 6.00.008 + versionName = "6.0.8" manifestPlaceholders["appAuthRedirectScheme"] = packageName