Increment version

Change-Id: I456b2fbb19de339bfeac941b42da1aaabab411f8
This commit is contained in:
SpiritCroc 2022-11-29 09:27:11 +01:00
parent c8c82d40dd
commit 39aff9f2cd
2 changed files with 10 additions and 5 deletions

View file

@ -0,0 +1,5 @@
- Update codebase to Element v1.5.8
- Rework reply rendering, to follow the rich replies specification
- Render captions (MSC2530)
- Allow sending custom emotes stored directly in account data (MSC2545)
- Various bug fixes

View file

@ -39,7 +39,7 @@ ext.versionMinor = 5
// is the value for the next regular release. // is the value for the next regular release.
ext.versionPatch = 8 ext.versionPatch = 8
ext.scVersion = 61 ext.scVersion = 62
static def getGitTimestamp() { static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct' def cmd = 'git show -s --format=%ct'
@ -144,8 +144,8 @@ android {
renderscriptTargetApi 24 renderscriptTargetApi 24
renderscriptSupportModeEnabled true renderscriptSupportModeEnabled true
versionCode 40100960 versionCode 40100990
versionName "1.5.2.sc61" versionName "1.5.8.sc62"
// Generate a random app task affinity // Generate a random app task affinity
manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"] manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"]
@ -309,14 +309,14 @@ android {
} }
dimension "store" dimension "store"
versionName "1.5.2.sc61" versionName "1.5.8.sc62"
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\"" buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"G\""
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"GooglePlay\"" buildConfigField "String", "FLAVOR_DESCRIPTION", "\"GooglePlay\""
} }
fdroid { fdroid {
dimension "store" dimension "store"
versionName "1.5.2.sc61" versionName "1.5.8.sc62"
buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\"" buildConfigField "String", "SHORT_FLAVOR_DESCRIPTION", "\"F\""
buildConfigField "String", "FLAVOR_DESCRIPTION", "\"FDroid\"" buildConfigField "String", "FLAVOR_DESCRIPTION", "\"FDroid\""
isDefault = true isDefault = true