diff --git a/fastlane/metadata/android/en-US/changelogs/40100410.txt b/fastlane/metadata/android/en-US/changelogs/40100410.txt new file mode 100644 index 0000000000..2ed1a6ea33 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100410.txt @@ -0,0 +1,7 @@ +- Some fixes related to RTL languages +- Big emoji-only messages: allow whitespace between emojis +- Room summary preview setting depending on DMs vs groups +- Also fallback to other user's avatar for 2-person-rooms not marked as DM +- Update codebase to Element v1.0.14 +- Uniform bubble width in group chats +- Sticker picker: pass dark/light theme diff --git a/vector/build.gradle b/vector/build.gradle index 13acdde13b..922123d595 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -15,7 +15,7 @@ ext.versionMajor = 1 ext.versionMinor = 0 ext.versionPatch = 14 -ext.scVersion = 26 +ext.scVersion = 27 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -118,10 +118,10 @@ android { // `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode. // Other branches (master, features, etc.) will have version code based on application version. - versionCode 40100390 + versionCode 40100410 // Required for sonar analysis - versionName "1.0.13.sc.26" + versionName "1.0.14.sc27" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\"" @@ -237,7 +237,7 @@ android { gplay { dimension "store" - versionName "1.0.13.sc.26" + versionName "1.0.14.sc27" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -248,7 +248,7 @@ android { fdroid { dimension "store" - versionName "1.0.13.sc.26" + versionName "1.0.14.sc27" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"