diff --git a/CHANGELOG.md b/CHANGELOG.md index 48a5feff5..b9227af42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +### Version 2.10.1 + +* Fix issue with some videos not being compressed +* Fix rare crash when opening notification + ### Version 2.10.0 * Show black bars when remote video does not match aspect ratio of screen diff --git a/build.gradle b/build.gradle index 6dc3fdbcb..5ee25ed01 100644 --- a/build.gradle +++ b/build.gradle @@ -94,8 +94,8 @@ android { defaultConfig { minSdkVersion 21 targetSdkVersion 29 - versionCode 42018 - versionName "2.10.0" + versionCode 42019 + versionName "2.10.1" archivesBaseName += "-$versionName" applicationId "eu.siacs.conversations" resValue "string", "applicationId", applicationId diff --git a/fastlane/metadata/android/en-US/changelogs/42018.txt b/fastlane/metadata/android/en-US/changelogs/42018.txt new file mode 100644 index 000000000..8f4d66caa --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/42018.txt @@ -0,0 +1,3 @@ +* Show black bars when remote video does not match aspect ratio of screen +* Improve search performance +* Add setting to prevent screenshots diff --git a/fastlane/metadata/android/en-US/changelogs/42019.txt b/fastlane/metadata/android/en-US/changelogs/42019.txt new file mode 100644 index 000000000..eaaa190fa --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/42019.txt @@ -0,0 +1,2 @@ +* Fix issue with some videos not being compressed +* Fix rare crash when opening notification