Increment version

Change-Id: Ice9536342a8eeff003019350a07e27f805426562
This commit is contained in:
SpiritCroc 2020-09-10 17:34:06 +02:00
parent 1d7681a893
commit cf24ca90f9
2 changed files with 14 additions and 5 deletions

View File

@ -0,0 +1,9 @@
- Fix bubble size for message deletions
- Hide deleted messages from the overview except for the "show all events" setting
- Hide trailing newlines in messages
- Fix italic text being cut
- Hide dark theme setting on devices older than Q
- Don't restart if inactive theme setting is changed
- Merge upstream v1.0.6
- Overview: display the year and hide the day of the week for old chats
- Make unread-counter in the overview for non-notifications a setting

View File

@ -19,7 +19,7 @@ ext.versionMajor = 1
ext.versionMinor = 0
ext.versionPatch = 6
ext.scVersion = 18
ext.scVersion = 19
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 project.getVersionCode()
versionCode 40100250
// Required for sonar analysis
versionName "${versionMajor}.${versionMinor}.${versionPatch}-sonar"
versionName "1.0.6.sc.19"
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
resValue "string", "git_revision", "\"${gitRevision()}\""
@ -221,7 +221,7 @@ android {
gplay {
dimension "store"
versionName "${versionMajor}.${versionMinor}.${versionPatch}.sc.${scVersion}${getGplayVersionSuffix()}"
versionName "1.0.6.sc.19"
resValue "bool", "isGplay", "true"
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
@ -232,7 +232,7 @@ android {
fdroid {
dimension "store"
versionName "${versionMajor}.${versionMinor}.${versionPatch}.sc.${scVersion}${getFdroidVersionSuffix()}"
versionName "1.0.6.sc.19"
resValue "bool", "isGplay", "false"
buildConfigField "boolean", "ALLOW_FCM_USE", "false"