Increment version
Change-Id: I5c2d1293f5251d6d4c0cb889195f2db8a509e378
This commit is contained in:
parent
037977a817
commit
8fe2a0021f
|
@ -0,0 +1,6 @@
|
||||||
|
- Update codebase to Element v1.2.0
|
||||||
|
- Lab setting to load rooms at first unread message
|
||||||
|
- Hide empty/failed url preview image
|
||||||
|
- Properly theme verification request popup background
|
||||||
|
- Setting to disable voice message recording button
|
||||||
|
- Minor fixes and impovements
|
|
@ -16,7 +16,7 @@ ext.versionMajor = 1
|
||||||
ext.versionMinor = 2
|
ext.versionMinor = 2
|
||||||
ext.versionPatch = 0
|
ext.versionPatch = 0
|
||||||
|
|
||||||
ext.scVersion = 39
|
ext.scVersion = 40
|
||||||
|
|
||||||
static def getGitTimestamp() {
|
static def getGitTimestamp() {
|
||||||
def cmd = 'git show -s --format=%ct'
|
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.
|
// `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 40100590
|
versionCode 40100620
|
||||||
|
|
||||||
// Required for sonar analysis
|
// Required for sonar analysis
|
||||||
versionName "1.1.14.sc39"
|
versionName "1.2.0.sc40"
|
||||||
|
|
||||||
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
|
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
|
||||||
resValue "string", "git_revision", "\"${gitRevision()}\""
|
resValue "string", "git_revision", "\"${gitRevision()}\""
|
||||||
|
@ -264,7 +264,7 @@ android {
|
||||||
dimension "store"
|
dimension "store"
|
||||||
isDefault = true
|
isDefault = true
|
||||||
|
|
||||||
versionName "1.1.14.sc39"
|
versionName "1.2.0.sc40"
|
||||||
|
|
||||||
resValue "bool", "isGplay", "true"
|
resValue "bool", "isGplay", "true"
|
||||||
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
|
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
|
||||||
|
@ -275,7 +275,7 @@ android {
|
||||||
fdroid {
|
fdroid {
|
||||||
dimension "store"
|
dimension "store"
|
||||||
|
|
||||||
versionName "1.1.14.sc39"
|
versionName "1.2.0.sc40"
|
||||||
|
|
||||||
resValue "bool", "isGplay", "false"
|
resValue "bool", "isGplay", "false"
|
||||||
buildConfigField "boolean", "ALLOW_FCM_USE", "false"
|
buildConfigField "boolean", "ALLOW_FCM_USE", "false"
|
||||||
|
|
Loading…
Reference in New Issue