From cdef8b4945643aa1d0878d7d11a5d10fde6a7f94 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 11 Apr 2025 10:04:52 +0200 Subject: [PATCH] Updated CHANGELOG & bump version code for 6.0.4 --- CHANGELOG.md | 9 +++++++++ app/build.gradle.kts | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4acc2b8fb..a0c3a0eb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,15 @@ 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.4] - 2025-04-11 + +### Changed +- Third party SIP accounts push notifications will be disabled and setting will be hidden unless if list of supported domains (to prevent issues, specifically when used with UDP transport protocol causing bigger packets getting lost) + +### Fixed +- Prevent refresh of views due to contacts changes to happen to frequently at startup +- Prevent crash in Help view if app is built without Firebase + ## [6.0.3] - 2025-04-04 ### Added diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 10c3126a2..a9c3c4e64 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -32,7 +32,7 @@ if (firebaseCloudMessagingAvailable) { } var gitBranch = ByteArrayOutputStream() -var gitVersion = "6.0.3" +var gitVersion = "6.0.4" task("getGitVersion") { val gitVersionStream = ByteArrayOutputStream() @@ -100,8 +100,8 @@ android { applicationId = packageName minSdk = 28 targetSdk = 35 - versionCode = 600003 // 6.00.003 - versionName = "6.0.3" + versionCode = 600004 // 6.00.004 + versionName = "6.0.4" manifestPlaceholders["appAuthRedirectScheme"] = packageName