Browse Source

Merge tag 'v0.4.5' into develop

pull/2457/head
ganfra 7 months ago
parent
commit
2a497bd8b1
  1. 23
      CHANGES.md
  2. 1
      changelog.d/+do-not-display-empty-state-before-loading-roomlist.bugfix
  3. 1
      changelog.d/+improve-accessibility-in-timeline.bugfix
  4. 1
      changelog.d/2208.feature
  5. 4
      changelog.d/2256.feature
  6. 1
      changelog.d/2390.feature
  7. 1
      changelog.d/2420.misc
  8. 1
      changelog.d/2421.bugfix
  9. 1
      changelog.d/2992.feature
  10. 2
      fastlane/metadata/android/en-US/changelogs/40004050.txt
  11. 2
      plugins/src/main/kotlin/Versions.kt

23
CHANGES.md

@ -1,3 +1,26 @@ @@ -1,3 +1,26 @@
Changes in Element X v0.4.5 (2024-02-28)
========================================
Features ✨
----------
- Mark a room or dm as favourite. ([#2208](https://github.com/element-hq/element-x-android/issues/2208))
- Add moderation to rooms:
- Sort member in room member list by powerlevel, display their roles.
- Display banner users in room member list for users with enough power level to ban/unban. ([#2256](https://github.com/element-hq/element-x-android/issues/2256))
- MediaViewer : introduce fullscreen and flick to dismiss behavior. ([#2390](https://github.com/element-hq/element-x-android/issues/2390))
- Allow user-installed certificates to be used by the HTTP client ([#2992](https://github.com/element-hq/element-x-android/issues/2992))
Bugfixes 🐛
----------
- Do not display empty room list state before the loading one when we still don't have any items ([#+do-not-display-empty-state-before-loading-roomlist](https://github.com/element-hq/element-x-android/issues/+do-not-display-empty-state-before-loading-roomlist))
- Improve how Talkback works with the timeline. Sadly, it's still not 100% working, but there is some issue with the `LazyColumn` using `reverseLayout` that only Google can fix. ([#+improve-accessibility-in-timeline](https://github.com/element-hq/element-x-android/issues/+improve-accessibility-in-timeline))
- Add ability to enter a recovery key to verify the session. Also fixes some refresh issues with the verification session state. ([#2421](https://github.com/element-hq/element-x-android/issues/2421))
Other changes
-------------
- Provide the current system proxy setting to the Rust SDK. ([#2420](https://github.com/element-hq/element-x-android/issues/2420))
Changes in Element X v0.4.4 (2024-02-15)
========================================

1
changelog.d/+do-not-display-empty-state-before-loading-roomlist.bugfix

@ -1 +0,0 @@ @@ -1 +0,0 @@
Do not display empty room list state before the loading one when we still don't have any items

1
changelog.d/+improve-accessibility-in-timeline.bugfix

@ -1 +0,0 @@ @@ -1 +0,0 @@
Improve how Talkback works with the timeline. Sadly, it's still not 100% working, but there is some issue with the `LazyColumn` using `reverseLayout` that only Google can fix.

1
changelog.d/2208.feature

@ -1 +0,0 @@ @@ -1 +0,0 @@
Mark a room or dm as favourite.

4
changelog.d/2256.feature

@ -1,4 +0,0 @@ @@ -1,4 +0,0 @@
Add moderation to rooms:
- Sort member in room member list by powerlevel, display their roles.
- Display banner users in room member list for users with enough power level to ban/unban.

1
changelog.d/2390.feature

@ -1 +0,0 @@ @@ -1 +0,0 @@
MediaViewer : introduce fullscreen and flick to dismiss behavior.

1
changelog.d/2420.misc

@ -1 +0,0 @@ @@ -1 +0,0 @@
Provide the current system proxy setting to the Rust SDK.

1
changelog.d/2421.bugfix

@ -1 +0,0 @@ @@ -1 +0,0 @@
Add ability to enter a recovery key to verify the session. Also fixes some refresh issues with the verification session state.

1
changelog.d/2992.feature

@ -1 +0,0 @@ @@ -1 +0,0 @@
Allow user-installed certificates to be used by the HTTP client

2
fastlane/metadata/android/en-US/changelogs/40004050.txt

@ -0,0 +1,2 @@ @@ -0,0 +1,2 @@
Main changes in this version: Moderation to rooms, mark room as favourite.
Full changelog: https://github.com/element-hq/element-x-android/releases

2
plugins/src/main/kotlin/Versions.kt

@ -56,7 +56,7 @@ private const val versionMinor = 4 @@ -56,7 +56,7 @@ private const val versionMinor = 4
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
private const val versionPatch = 6
private const val versionPatch = 5
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch

Loading…
Cancel
Save