Changelog for version 1.5.32
This commit is contained in:
parent
40bbd3ebd1
commit
0143cf7ea8
10
CHANGES.md
10
CHANGES.md
|
@ -1,3 +1,13 @@
|
||||||
|
Changes in Element v1.5.32 (2023-04-19)
|
||||||
|
=======================================
|
||||||
|
|
||||||
|
Bugfixes 🐛
|
||||||
|
----------
|
||||||
|
- Fix multiple read receipts for the same user in timeline. ([#7882](https://github.com/vector-im/element-android/issues/7882))
|
||||||
|
- The new permalink rendering is not applied on permalink created with the potential clientPermalinkBaseUrl ([#8307](https://github.com/vector-im/element-android/issues/8307))
|
||||||
|
- Keep screen on while recording voicebroadcast ([#8313](https://github.com/vector-im/element-android/issues/8313))
|
||||||
|
|
||||||
|
|
||||||
Changes in Element v1.5.30 (2023-04-05)
|
Changes in Element v1.5.30 (2023-04-05)
|
||||||
=======================================
|
=======================================
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix multiple read receipts for the same user in timeline.
|
|
|
@ -1,2 +0,0 @@
|
||||||
The new permalink rendering is not applied on permalink created with the potential clientPermalinkBaseUrl
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Keep screen on while recording voicebroadcast
|
|
|
@ -182,6 +182,7 @@ class HomeActivityViewModel @AssistedInject constructor(
|
||||||
if (analyticsConfig.isEnabled) {
|
if (analyticsConfig.isEnabled) {
|
||||||
analyticsStore.didAskUserConsentFlow
|
analyticsStore.didAskUserConsentFlow
|
||||||
.onEach { didAskUser ->
|
.onEach { didAskUser ->
|
||||||
|
Timber.v("DidAskUserConsent: $didAskUser")
|
||||||
if (!didAskUser) {
|
if (!didAskUser) {
|
||||||
_viewEvents.post(HomeActivityViewEvents.ShowAnalyticsOptIn)
|
_viewEvents.post(HomeActivityViewEvents.ShowAnalyticsOptIn)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue