Merge branch 'release/1.1.12' into develop

This commit is contained in:
Benoit Marty 2021-07-05 09:57:56 +02:00
commit cf5ab304df
10 changed files with 20 additions and 8 deletions

View File

@ -1,3 +1,20 @@
Changes in Element 1.1.12 (2021-07-05)
======================================
Features ✨
----------
- Reveal password: use facility from com.google.android.material.textfield.TextInputLayout instead of manual handling. ([#3545](https://github.com/vector-im/element-android/issues/3545))
- Implements new design for Jump to unread and quick fix visibility issues. ([#3547](https://github.com/vector-im/element-android/issues/3547))
Bugfixes 🐛
----------
- Fix some issues with timeline cache invalidation and visibility. ([#3542](https://github.com/vector-im/element-android/issues/3542))
- Fix call invite processed after call is ended because of fastlane mode. ([#3564](https://github.com/vector-im/element-android/issues/3564))
- Fix crash after video call. ([#3577](https://github.com/vector-im/element-android/issues/3577))
- Fix crash out of memory ([#3583](https://github.com/vector-im/element-android/issues/3583))
- CryptoStore migration has to be object to avoid crash ([#3605](https://github.com/vector-im/element-android/issues/3605))
Changes in Element v1.1.11 (2021-06-22)
=======================================

View File

@ -1 +0,0 @@
Fix some issues with timeline cache invalidation and visibility.

View File

@ -1 +0,0 @@
Reveal password: use facility from com.google.android.material.textfield.TextInputLayout instead of manual handling.

View File

@ -1 +0,0 @@
Implements new design for Jump to unread and quick fix visibility issues.

View File

@ -1 +0,0 @@
Fix call invite processed after call is ended because of fastlane mode.

View File

@ -1 +0,0 @@
Fix crash after video call.

View File

@ -1 +0,0 @@
Fix crash out of memory

View File

@ -1 +0,0 @@
CryptoStore migration has to be object to avoid crash

View File

@ -0,0 +1,2 @@
Main changes in this version: theme and style update and fix a crash after video call
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.1.12

View File

@ -41,7 +41,7 @@ fun SearchView.withoutLeftMargin() {
}
fun EditText.hidePassword() {
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD
inputType = InputType.TYPE_CLASS_TEXT or InputType.TYPE_TEXT_VARIATION_PASSWORD
}
fun View.getMeasurements(): Pair<Int, Int> {