version bump to 2.14.1 + changelog

This commit is contained in:
Daniel Gultsch 2024-03-30 15:00:32 +01:00
parent f22d19f7d0
commit 429b190b8e
No known key found for this signature in database
GPG key ID: F43D18AD2A0982C2
3 changed files with 11 additions and 2 deletions

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
### Version 2.14.1
* Fix A/V calls on Android 8
* Fix race conditions in new call integration
* Fix video compression sticking around
### Version 2.14.0 ### Version 2.14.0
* Improve integration of A/V calls into the operating system * Improve integration of A/V calls into the operating system

View file

@ -97,8 +97,8 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 23 minSdkVersion 23
targetSdkVersion 34 targetSdkVersion 34
versionCode 42103 versionCode 42104
versionName "2.14.0" versionName "2.14.1"
archivesBaseName += "-$versionName" archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations" applicationId "eu.siacs.conversations"
resValue "string", "applicationId", applicationId resValue "string", "applicationId", applicationId

View file

@ -0,0 +1,3 @@
* Fix A/V calls on Android 8
* Fix race conditions in new call integration
* Fix video compression sticking around