version 2.1.1 + CHANGELOG
This commit is contained in:
parent
f73b17e27f
commit
eb5246bdbd
3 changed files with 11 additions and 10 deletions
|
@ -5,11 +5,11 @@
|
|||
* add a hideable separate quick button for voice messages
|
||||
* switch between speaker/earpiece while playing audios/voice messages
|
||||
* store bookmarks in PEP if server has ability to convert to old bookmarks
|
||||
* show Jabber IDs from address book in Start Conversation screen
|
||||
* show Jabber IDs from address book in address book
|
||||
* preview and ask for confirmation before sending media files
|
||||
* view per conversation media files in contact and conference details screens
|
||||
* enable foreground service by default for Android 8 (notification can be disabled by long pressing it)
|
||||
* UI improvements
|
||||
* reworked MediaViewer
|
||||
* support TLSv1.3 (ejabberd ≤ 18.06 is incompatible with openssl 1.1.1 - Update ejabberd or downgrade openssl if you get ›Stream opening error‹)
|
||||
* bug fixes
|
||||
|
||||
|
@ -20,10 +20,10 @@
|
|||
* UI improvements
|
||||
* introduce Expert Setting to enable direct search
|
||||
* introduce Paste As Quote on Android 6+
|
||||
* fixed issues with HTTP Upload
|
||||
* fixed connection problems with TLS1.3 servers
|
||||
* attempt to delete broken bundles from PEP
|
||||
* offer Paste as quote for HTML content
|
||||
* use SNI on STARTTLS to fix gtalk
|
||||
* use Consistent Color Generation (XEP-0392)
|
||||
* bug fixes
|
||||
|
||||
#### Version 2.0.2
|
||||
|
|
11
build.gradle
11
build.gradle
|
@ -6,7 +6,7 @@ buildscript {
|
|||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.2.0'
|
||||
classpath 'com.android.tools.build:gradle:3.2.1'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -59,10 +59,11 @@ dependencies {
|
|||
implementation 'org.whispersystems:signal-protocol-java:2.6.2'
|
||||
implementation 'com.makeramen:roundedimageview:2.3.0'
|
||||
implementation 'jetty:javax.servlet:5.1.12'
|
||||
implementation 'com.google.code.gson:gson:2.8.0'
|
||||
implementation 'com.google.code.gson:gson:2.8.2'
|
||||
implementation 'com.android.support:multidex:1.0.3'
|
||||
implementation "com.android.support:support-v13:$supportLibVersion"
|
||||
implementation "com.android.support:appcompat-v7:$supportLibVersion"
|
||||
implementation "com.android.support:exifinterface:$supportLibVersion"
|
||||
implementation "com.android.support:support-v4:$supportLibVersion"
|
||||
implementation "com.android.support:support-emoji:$supportLibVersion"
|
||||
implementation "com.android.support:support-emoji-bundled:$supportLibVersion"
|
||||
|
@ -92,10 +93,10 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 25
|
||||
targetSdkVersion 26
|
||||
|
||||
versionCode 242
|
||||
versionName "2.1.1 beta (2018-09-27)"
|
||||
versionCode 243
|
||||
versionName "2.1.1"
|
||||
|
||||
archivesBaseName += "-$versionName"
|
||||
applicationId "de.pixart.messenger"
|
||||
|
|
|
@ -8,7 +8,7 @@ apply plugin: 'com.android.library'
|
|||
|
||||
android {
|
||||
compileSdkVersion 27
|
||||
buildToolsVersion '27.0.3'
|
||||
buildToolsVersion '28.0.3'
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 18
|
||||
|
|
Loading…
Add table
Reference in a new issue