mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
Merge branch 'release/1.1.12' into develop
This commit is contained in:
commit
cf5ab304df
17
CHANGES.md
17
CHANGES.md
@ -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)
|
||||
=======================================
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
Fix some issues with timeline cache invalidation and visibility.
|
@ -1 +0,0 @@
|
||||
Reveal password: use facility from com.google.android.material.textfield.TextInputLayout instead of manual handling.
|
@ -1 +0,0 @@
|
||||
Implements new design for Jump to unread and quick fix visibility issues.
|
@ -1 +0,0 @@
|
||||
Fix call invite processed after call is ended because of fastlane mode.
|
@ -1 +0,0 @@
|
||||
Fix crash after video call.
|
@ -1 +0,0 @@
|
||||
Fix crash out of memory
|
@ -1 +0,0 @@
|
||||
CryptoStore migration has to be object to avoid crash
|
2
fastlane/metadata/android/en-US/changelogs/40101120.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40101120.txt
Normal 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
|
@ -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> {
|
||||
|
Loading…
Reference in New Issue
Block a user