version bump to 2.2.4 + changelog

This commit is contained in:
Daniel Gultsch 2018-06-26 20:38:36 +02:00
parent 464c79ac9e
commit 68f23af219
2 changed files with 13 additions and 2 deletions

View file

@ -1,5 +1,10 @@
# Changelog
### Version 2.2.4
* Use group chat name as primary identifier
* Show group name and subject in group chat details
* Upload group chat avatar on compatible servers
### Version 2.2.3
* Introduce Expert Setting to enable direct search
* Introduce Paste As Quote on Android 6+

View file

@ -67,8 +67,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
versionCode 274
versionName "2.2.3"
versionCode 276
versionName "2.2.4"
archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations"
resValue "string", "applicationId", applicationId
@ -95,15 +95,19 @@ android {
productFlavors {
playstore {
dimension "distribution"
versionNameSuffix "-p"
}
free {
dimension "distribution"
versionNameSuffix "-f"
}
system {
dimension "emoji"
versionNameSuffix "s"
}
compat {
dimension "emoji"
versionNameSuffix "c"
}
}
@ -112,11 +116,13 @@ android {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
versionNameSuffix "r"
}
debug {
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
versionNameSuffix "d"
}
}