Increment version

Change-Id: Ic11038b22a85eb4ee863bb865439ae3c9751da1b
This commit is contained in:
SpiritCroc 2020-11-24 16:13:49 +01:00
parent 4fb7ff6cf5
commit ac89fb97f8
2 changed files with 9 additions and 5 deletions

View File

@ -0,0 +1,4 @@
- Fix some colors
- Wider message bubbles in some scenarios
- Enable "Prevent accidental call" by default
- Easy-mode setting

View File

@ -19,7 +19,7 @@ ext.versionMajor = 1
ext.versionMinor = 0 ext.versionMinor = 0
ext.versionPatch = 10 ext.versionPatch = 10
ext.scVersion = 25 ext.scVersion = 26
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 (master, features, etc.) will have version code based on application version. // Other branches (master, features, etc.) will have version code based on application version.
versionCode 40100350 versionCode 40100360
// Required for sonar analysis // Required for sonar analysis
versionName "1.0.10.sc.25" versionName "1.0.10.sc.26"
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\"" buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
resValue "string", "git_revision", "\"${gitRevision()}\"" resValue "string", "git_revision", "\"${gitRevision()}\""
@ -241,7 +241,7 @@ android {
gplay { gplay {
dimension "store" dimension "store"
versionName "1.0.10.sc.25" versionName "1.0.10.sc.26"
resValue "bool", "isGplay", "true" resValue "bool", "isGplay", "true"
buildConfigField "boolean", "ALLOW_FCM_USE", "true" buildConfigField "boolean", "ALLOW_FCM_USE", "true"
@ -252,7 +252,7 @@ android {
fdroid { fdroid {
dimension "store" dimension "store"
versionName "1.0.10.sc.25" versionName "1.0.10.sc.26"
resValue "bool", "isGplay", "false" resValue "bool", "isGplay", "false"
buildConfigField "boolean", "ALLOW_FCM_USE", "false" buildConfigField "boolean", "ALLOW_FCM_USE", "false"