Increment version

Change-Id: I4a7d9c5fdd0cfa93a614fb214ddd953de6bbffaa
This commit is contained in:
SpiritCroc 2020-11-02 13:18:11 +01:00
parent 57ca7071a5
commit 07e6cf2a8d
2 changed files with 14 additions and 5 deletions

View file

@ -0,0 +1,9 @@
- Allow for timestamps at the bubble bottom
- Add a few scenarios to hide sender names
- Only use direct chat layout for direct chats with exactly 2 members
- Account for past membership changes when hiding sender names in direct chats
- Add an icon indicator for unsent messages
- Fix send button color for attachments
- Hide deleted messages by default
- Don't collapse room summaries if we just need one more line
- Allow for one more collapsed room summary line

View file

@ -19,7 +19,7 @@ ext.versionMajor = 1
ext.versionMinor = 0
ext.versionPatch = 9
ext.scVersion = 24
ext.scVersion = 25
static def getGitTimestamp() {
def cmd = 'git show -s --format=%ct'
@ -122,10 +122,10 @@ android {
// `develop` branch will have version code from timestamp, to ensure each build from CI has a incremented versionCode.
// Other branches (master, features, etc.) will have version code based on application version.
versionCode 40100330
versionCode 40100340
// Required for sonar analysis
versionName "1.0.9.sc.24"
versionName "1.0.9.sc.25"
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
resValue "string", "git_revision", "\"${gitRevision()}\""
@ -237,7 +237,7 @@ android {
gplay {
dimension "store"
versionName "1.0.9.sc.24"
versionName "1.0.9.sc.25"
resValue "bool", "isGplay", "true"
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
@ -248,7 +248,7 @@ android {
fdroid {
dimension "store"
versionName "1.0.9.sc.24"
versionName "1.0.9.sc.25"
resValue "bool", "isGplay", "false"
buildConfigField "boolean", "ALLOW_FCM_USE", "false"