From 5f18fce7712ef560974e33b021993e7b134db1d6 Mon Sep 17 00:00:00 2001 From: SpiritCroc Date: Fri, 20 Aug 2021 10:45:57 +0200 Subject: [PATCH] Increment version Change-Id: Iaee1fa3f6de051c2ea57b0e2cb286de25052e31c --- .../metadata/android/en-US/changelogs/40100630.txt | 4 ++++ vector/build.gradle | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/40100630.txt diff --git a/fastlane/metadata/android/en-US/changelogs/40100630.txt b/fastlane/metadata/android/en-US/changelogs/40100630.txt new file mode 100644 index 0000000000..2fe6033a28 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100630.txt @@ -0,0 +1,4 @@ +- Fix crash on opening rooms on Android 5 +- Fix reaction color for non-emojis on dark theme +- Make composer notification (not allowing to send messages) more compact +- More UI and crash fixes diff --git a/vector/build.gradle b/vector/build.gradle index 6ab101c28c..5049aa353a 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -16,7 +16,7 @@ ext.versionMajor = 1 ext.versionMinor = 2 ext.versionPatch = 0 -ext.scVersion = 40 +ext.scVersion = 41 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -122,10 +122,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 40100620 + versionCode 40100630 // Required for sonar analysis - versionName "1.2.0.sc40" + versionName "1.2.0.sc41" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -264,7 +264,7 @@ android { dimension "store" isDefault = true - versionName "1.2.0.sc40" + versionName "1.2.0.sc41" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -275,7 +275,7 @@ android { fdroid { dimension "store" - versionName "1.2.0.sc40" + versionName "1.2.0.sc41" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"