version bump to 2.3.1 + changelog
This commit is contained in:
parent
f2f44c7478
commit
b27fa6d206
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Version 2.3.1
|
||||||
|
* Stronger compression for video files
|
||||||
|
* Use SNI on STARTTLS to fix gtalk
|
||||||
|
* Fix Quite Hours on Android 8+
|
||||||
|
* Use Consistent Color Generation (XEP-0392)
|
||||||
|
|
||||||
### Version 2.3.0
|
### Version 2.3.0
|
||||||
* Preview and ask for confirmation before sending media files
|
* Preview and ask for confirmation before sending media files
|
||||||
* View per conversation media files in contact and conference details screens
|
* View per conversation media files in contact and conference details screens
|
||||||
|
|
|
@ -34,6 +34,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
implementation 'org.sufficientlysecure:openpgp-api:10.0'
|
implementation 'org.sufficientlysecure:openpgp-api:10.0'
|
||||||
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
|
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
|
||||||
|
//noinspection GradleCompatible
|
||||||
implementation "com.android.support:support-v13:$supportLibVersion"
|
implementation "com.android.support:support-v13:$supportLibVersion"
|
||||||
implementation "com.android.support:appcompat-v7:$supportLibVersion"
|
implementation "com.android.support:appcompat-v7:$supportLibVersion"
|
||||||
implementation "com.android.support:cardview-v7:$supportLibVersion"
|
implementation "com.android.support:cardview-v7:$supportLibVersion"
|
||||||
|
@ -66,8 +67,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 19
|
minSdkVersion 19
|
||||||
targetSdkVersion 25
|
targetSdkVersion 25
|
||||||
versionCode 290
|
versionCode 293
|
||||||
versionName "2.3.0"
|
versionName "2.3.1"
|
||||||
archivesBaseName += "-$versionName"
|
archivesBaseName += "-$versionName"
|
||||||
applicationId "eu.siacs.conversations"
|
applicationId "eu.siacs.conversations"
|
||||||
resValue "string", "applicationId", applicationId
|
resValue "string", "applicationId", applicationId
|
||||||
|
|
Loading…
Reference in New Issue