From 5094c6b2a5420dbf4b844fd011bb50359f2b1b83 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 28 Mar 2025 09:04:02 +0100 Subject: [PATCH] Updated CHANGELOG & bump version code for 6.0.2 --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 693cd2120..998684100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,33 @@ 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.2] - 2025-03-28 + +### Added +- Show on top bar if FULL_SCREEN_INTENT permission isn't granted, clicking on it sends to the matching settings so user can fix it easily, without it incoming call screen won't be displayed if screen is off +- Ring during incoming early media call setting added back +- Added a floating action button to open dialpad during outgoing early media call + +### Changed +- Delete all related call history / conversations / meetings when removing an account +- Delay / use a separated thread for heavy contacts related tasks to ensure call is correctly handled and foreground service is started quickly enough +- Newly created account in app will be kept disabled until SMS code validation is done +- Keep app alive foreground service notification no shows a content message to ease clicking on it to open the app & workaround a crash on some devices +- Automatically show dialpad setting will now also work on new / transfer call while in call as well + +### Fixed +- Improved POST_NOTIFICATIONS permission check on Android 13 and newer, should prevent crashes +- Fixed contact lookup if phone number starts by "00" instead of "+" +- Fixed "delete all call history" sometimes not removing all call logs +- Fixed LDAP / remote CardDAV contacts sometimes not displayed in contacts list when doing a search +- Fixed issue where contact filter could be set to only show sip.linphone.org contacts even when third party account was being selected +- Fixed sometimes wrong displayed SIP URI in detailed call history +- Fixed invisible meeting icon in status bar +- Fixed missed call count indicator behavior with some third party providers +- Prevent today indicator & meeting icon in bottom nav bar from blinking / briefly appearing +- Fixed bottom nav bar sometimes being hidden +- Fixed missing share logs server URL when migrating from 5.2 if that value was removed back then +- Other crashes fixed ## [6.0.1] - 2025-03-21 diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 2cb956c5d..b2048d39f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.0" +var gitVersion = "6.0.2" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600001 // 6.00.000 - versionName = "6.0.1" + versionCode = 600002 // 6.00.002 + versionName = "6.0.2" manifestPlaceholders["appAuthRedirectScheme"] = packageName