version bump to 2.11.1 + changelog
This commit is contained in:
parent
499c4ddd0a
commit
12edf12ce9
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Version 2.11.1
|
||||||
|
|
||||||
|
* Fix resend loop on servers that support only sm:2
|
||||||
|
* Show 'Switch to video' only if other party supports video
|
||||||
|
|
||||||
### Version 2.11.0
|
### Version 2.11.0
|
||||||
|
|
||||||
* Implement Extensible SASL Profile, Bind 2.0 and Fast for faster reconnects
|
* Implement Extensible SASL Profile, Bind 2.0 and Fast for faster reconnects
|
||||||
|
|
10
build.gradle
10
build.gradle
|
@ -33,7 +33,7 @@ configurations {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'androidx.viewpager:viewpager:1.0.0'
|
implementation 'androidx.viewpager:viewpager:1.0.0'
|
||||||
|
|
||||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.1.0') {
|
playstoreImplementation('com.google.firebase:firebase-messaging:23.1.1') {
|
||||||
exclude group: 'com.google.firebase', module: 'firebase-core'
|
exclude group: 'com.google.firebase', module: 'firebase-core'
|
||||||
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
||||||
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
||||||
|
@ -94,14 +94,14 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 32
|
targetSdkVersion 32
|
||||||
versionCode 42041
|
versionCode 42042
|
||||||
versionName "2.11.0"
|
versionName "2.11.1"
|
||||||
archivesBaseName += "-$versionName"
|
archivesBaseName += "-$versionName"
|
||||||
applicationId "eu.siacs.conversations"
|
applicationId "eu.siacs.conversations"
|
||||||
resValue "string", "applicationId", applicationId
|
resValue "string", "applicationId", applicationId
|
||||||
def appName = "Conversations"
|
def appName = "Conversations"
|
||||||
resValue "string", "app_name", appName
|
resValue "string", "app_name", appName
|
||||||
buildConfigField "String", "APP_NAME", "\"$appName\"";
|
buildConfigField "String", "APP_NAME", "\"$appName\""
|
||||||
}
|
}
|
||||||
|
|
||||||
splits {
|
splits {
|
||||||
|
@ -135,7 +135,7 @@ android {
|
||||||
|
|
||||||
def appName = "Quicksy"
|
def appName = "Quicksy"
|
||||||
resValue "string", "app_name", appName
|
resValue "string", "app_name", appName
|
||||||
buildConfigField "String", "APP_NAME", "\"$appName\"";
|
buildConfigField "String", "APP_NAME", "\"$appName\""
|
||||||
}
|
}
|
||||||
|
|
||||||
conversations {
|
conversations {
|
||||||
|
|
Loading…
Reference in a new issue