diff --git a/fastlane/metadata/android/en-US/changelogs/40100840.txt b/fastlane/metadata/android/en-US/changelogs/40100840.txt new file mode 100644 index 0000000000..c5436983f6 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100840.txt @@ -0,0 +1,4 @@ +- Update codebase to Element v1.4.14 +- Support rendering inline images and custom emojis in the timeline +- Fix some corner case timeline bugs +- Fix read markers sometimes not updating diff --git a/vector/build.gradle b/vector/build.gradle index 8b88ccad5f..5b96cdce7f 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -20,7 +20,7 @@ ext.versionMinor = 4 // is the value for the next regular release. ext.versionPatch = 14 -ext.scVersion = 52 +ext.scVersion = 53 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -128,10 +128,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 40100820 + versionCode 40100840 // Required for sonar analysis - versionName "1.4.13.sc52" + versionName "1.4.14.sc53" // Generate a random app task affinity manifestPlaceholders = [appTaskAffinitySuffix:"H_${gitRevision()}"] @@ -267,7 +267,7 @@ android { dimension "store" isDefault = true - versionName "1.4.13.sc52" + versionName "1.4.14.sc53" resValue "bool", "isGplay", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true" @@ -279,7 +279,7 @@ android { fdroid { dimension "store" - versionName "1.4.13.sc52" + versionName "1.4.14.sc53" resValue "bool", "isGplay", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"