mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-26 03:16:02 +03:00
Increment version
Change-Id: Ic68c2a792c589c03f6fe274e937ebfa18a69b47a
This commit is contained in:
parent
783212961c
commit
417bf48dd1
2 changed files with 12 additions and 5 deletions
7
fastlane/metadata/android/en-US/changelogs/40100410.txt
Normal file
7
fastlane/metadata/android/en-US/changelogs/40100410.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
- Some fixes related to RTL languages
|
||||
- Big emoji-only messages: allow whitespace between emojis
|
||||
- Room summary preview setting depending on DMs vs groups
|
||||
- Also fallback to other user's avatar for 2-person-rooms not marked as DM
|
||||
- Update codebase to Element v1.0.14
|
||||
- Uniform bubble width in group chats
|
||||
- Sticker picker: pass dark/light theme
|
|
@ -15,7 +15,7 @@ ext.versionMajor = 1
|
|||
ext.versionMinor = 0
|
||||
ext.versionPatch = 14
|
||||
|
||||
ext.scVersion = 26
|
||||
ext.scVersion = 27
|
||||
|
||||
static def getGitTimestamp() {
|
||||
def cmd = 'git show -s --format=%ct'
|
||||
|
@ -118,10 +118,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 40100390
|
||||
versionCode 40100410
|
||||
|
||||
// Required for sonar analysis
|
||||
versionName "1.0.13.sc.26"
|
||||
versionName "1.0.14.sc27"
|
||||
|
||||
buildConfigField "String", "GIT_REVISION", "\"${gitRevision()}\""
|
||||
resValue "string", "git_revision", "\"${gitRevision()}\""
|
||||
|
@ -237,7 +237,7 @@ android {
|
|||
gplay {
|
||||
dimension "store"
|
||||
|
||||
versionName "1.0.13.sc.26"
|
||||
versionName "1.0.14.sc27"
|
||||
|
||||
resValue "bool", "isGplay", "true"
|
||||
buildConfigField "boolean", "ALLOW_FCM_USE", "true"
|
||||
|
@ -248,7 +248,7 @@ android {
|
|||
fdroid {
|
||||
dimension "store"
|
||||
|
||||
versionName "1.0.13.sc.26"
|
||||
versionName "1.0.14.sc27"
|
||||
|
||||
resValue "bool", "isGplay", "false"
|
||||
buildConfigField "boolean", "ALLOW_FCM_USE", "false"
|
||||
|
|
Loading…
Reference in a new issue