Increment version

Change-Id: I62c495d2a018f29ad88afc6058972608273b357d
This commit is contained in:
SpiritCroc 2023-04-01 11:20:55 +02:00
parent 1d0686d82d
commit c3077c1ff9
2 changed files with 11 additions and 5 deletions

View File

@ -0,0 +1,6 @@
- Update codebase to Element v1.5.28
- Escape @room in sent reply fallbacks to avoid unintentional pings in other clients
- Support custom emote packs with state keys
- Render emote pack names in autocompletion
- Possibility to expand emote pack suggestions in autocompletion
- Possibly fix bug with disappearing read receipts

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 = 28 ext.versionPatch = 28
ext.scVersion = 64 ext.scVersion = 65
static def getGitTimestamp() { static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct' def cmd = 'git show -s --format=%ct'
@ -135,8 +135,8 @@ android {
renderscriptTargetApi 24 renderscriptTargetApi 24
renderscriptSupportModeEnabled true renderscriptSupportModeEnabled true
versionCode 40101040 versionCode 40101050
versionName "1.5.26.sc64" versionName "1.5.28.sc65"
// Generate a random app task affinity // Generate a random app task affinity
manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"] manifestPlaceholders = [appTaskAffinitySuffix: "H_${gitRevision()}"]
@ -299,14 +299,14 @@ android {
} }
dimension "store" dimension "store"
versionName "1.5.26.sc64" versionName "1.5.28.sc65"
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.26.sc64" versionName "1.5.28.sc65"
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