Increment version

Change-Id: I50f02b7bc96181a26eae2e4415cc527e1c63b550
This commit is contained in:
SpiritCroc 2022-08-10 10:17:24 +02:00
parent 3e79472aca
commit ebe5672b8a
2 changed files with 12 additions and 5 deletions

View File

@ -0,0 +1,7 @@
- Update codebase to Element v1.4.31
- Add a setting to always follow the system language
- Fix sometimes clipped display names in bubbles
- Fix crash on no camera app found
- Render collapsible details tags in messages
- Generate missing video thumbnails locally
- Various bug fixes

View File

@ -38,7 +38,7 @@ ext.versionMinor = 4
// is the value for the next regular release. // is the value for the next regular release.
ext.versionPatch = 31 ext.versionPatch = 31
ext.scVersion = 55 ext.scVersion = 56
static def getGitTimestamp() { static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct' def cmd = 'git show -s --format=%ct'
@ -144,10 +144,10 @@ android {
// `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode. // `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. // Other branches (main, features, etc.) will have version code based on application version.
versionCode 40100880 versionCode 40100890
// Required for sonar analysis // Required for sonar analysis
versionName "1.4.20.sc55" versionName "1.4.31.sc56"
// Generate a random app task affinity // Generate a random app task affinity
manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"] manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"]
@ -330,7 +330,7 @@ android {
dimension "store" dimension "store"
isDefault = true isDefault = true
versionName "1.4.20.sc55" versionName "1.4.31.sc56"
resValue "bool", "isGplay", "true" resValue "bool", "isGplay", "true"
buildConfigField "boolean", "ALLOW_FCM_USE", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true"
@ -342,7 +342,7 @@ android {
fdroid { fdroid {
dimension "store" dimension "store"
versionName "1.4.20.sc55" versionName "1.4.31.sc56"
resValue "bool", "isGplay", "false" resValue "bool", "isGplay", "false"
buildConfigField "boolean", "ALLOW_FCM_USE", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"