diff --git a/fastlane/metadata/android/en-US/changelogs/40100900.txt b/fastlane/metadata/android/en-US/changelogs/40100900.txt new file mode 100644 index 0000000000..59b325f4ac --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40100900.txt @@ -0,0 +1,4 @@ +- Update codebase to Element v1.4.32 +- Improve sizing of inline images +- Fix crash on broken incoming media shares +- F-Droid variant: Add back possibility to enable periodic background sync in addition to push notifications diff --git a/vector/build.gradle b/vector/build.gradle index f899806444..aa9df54975 100644 --- a/vector/build.gradle +++ b/vector/build.gradle @@ -39,7 +39,7 @@ ext.versionMinor = 4 // is the value for the next regular release. ext.versionPatch = 32 -ext.scVersion = 56 +ext.scVersion = 57 static def getGitTimestamp() { def cmd = 'git show -s --format=%ct' @@ -145,10 +145,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 40100890 + versionCode 40100900 // Required for sonar analysis - versionName "1.4.31.sc56" + versionName "1.4.32.sc57" // Generate a random app task affinity manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"] @@ -310,7 +310,7 @@ android { dimension "store" isDefault = true - versionName "1.4.31.sc56" + versionName "1.4.32.sc57" resValue "bool", "isGplay", "true" buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\"" @@ -320,7 +320,7 @@ android { fdroid { dimension "store" - versionName "1.4.31.sc56" + versionName "1.4.32.sc57" resValue "bool", "isGplay", "false" buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\""