diff --git a/fastlane/metadata/android/en-US/changelogs/40100680.txt b/fastlane/metadata/android/en-US/changelogs/40100680.txt new file mode 100644 index 0000000000..2b86eb6067 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100680.txt @@ -0,0 +1,6 @@ +- Update codebase to Element v1.3.1 +- Support MSC2654 for server-reported unread counts +- Jump to the bottom of a chat when sending a message +- Use the voice message player also for audio messages +- Fix and improve FCM troubleshooting +- Improve visibility of the "jump to bottom" unread counter badge diff --git a/vector/build.gradle b/vector/build.gradle index 74f735e94b..6d2b9bae78 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -16,7 +16,7 @@ ext.versionMajor = 1 ext.versionMinor = 3 ext.versionPatch = 1 -ext.scVersion = 44 +ext.scVersion = 45 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -125,10 +125,10 @@ android { // `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode. // Other branches (main, features, etc.) will have version code based on application version. - versionCode 40100660 + versionCode 40100680 // Required for sonar analysis - versionName "1.2.2.sc44" + versionName "1.3.1.sc45" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -269,7 +269,7 @@ android { dimension "store" isDefault = true - versionName "1.2.2.sc44" + versionName "1.3.1.sc45" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -280,7 +280,7 @@ android { fdroid { dimension "store" - versionName "1.2.2.sc44" + versionName "1.3.1.sc45" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"