Merge tag '0.4.13' into develop

no message
This commit is contained in:
ganfra
2024-05-22 11:14:22 +02:00
13 changed files with 26 additions and 11 deletions

View File

@@ -1,3 +1,26 @@
Changes in Element X v0.4.13 (2024-05-22)
=========================================
Features ✨
----------
- Add plain text editor based on Markdown input. ([#2840](https://github.com/element-hq/element-x-android/issues/2840))
Bugfixes 🐛
----------
- Use members display names for their membership state events. ([#2286](https://github.com/element-hq/element-x-android/issues/2286))
- Make sure explicit links in messages take priority over links found by linkification (urls, emails, phone numbers, etc.) ([#2291](https://github.com/element-hq/element-x-android/issues/2291))
- Fix modal contents overlapping screen lock pin. ([#2692](https://github.com/element-hq/element-x-android/issues/2692))
- Fix a crash when trying to create an `EncryptedFile` in Android 6. ([#2846](https://github.com/element-hq/element-x-android/issues/2846))
- Session falsely displayed as 'verified' with no internet connection. ([#2884](https://github.com/element-hq/element-x-android/issues/2884))
Other changes
-------------
- Allow configuring push notification provider ([#2340](https://github.com/element-hq/element-x-android/issues/2340))
- UX cleanup: reorder text composer actions to prioritise camera ones. ([#2803](https://github.com/element-hq/element-x-android/issues/2803))
- Translation added into Portuguese and Simplified Chinese ([#2834](https://github.com/element-hq/element-x-android/issues/2834))
- Use via parameters when joining a room from permalink. ([#2843](https://github.com/element-hq/element-x-android/issues/2843))
Changes in Element X v0.4.12 (2024-05-13)
=========================================

View File

@@ -1 +0,0 @@
Use members display names for their membership state events.

View File

@@ -1 +0,0 @@
Make sure explicit links in messages take priority over links found by linkification (urls, emails, phone numbers, etc.)

View File

@@ -1 +0,0 @@
Allow configuring push notification provider

View File

@@ -1 +0,0 @@
Fix modal contents overlapping screen lock pin.

View File

@@ -1 +0,0 @@
UX cleanup: reorder text composer actions to prioritise camera ones.

View File

@@ -1 +0,0 @@
Translation added into Portuguese and Simplified Chinese

View File

@@ -1 +0,0 @@
Add plain text editor based on Markdown input.

View File

@@ -1 +0,0 @@
Use via parameters when joining a room from permalink.

View File

@@ -1 +0,0 @@
Fix a crash when trying to create an `EncryptedFile` in Android 6.

View File

@@ -1 +0,0 @@
Session falsely displayed as 'verified' with no internet connection.

View File

@@ -0,0 +1,2 @@
Main changes in this version: Add plain text editor based on Markdown input.
Full changelog: https://github.com/element-hq/element-x-android/releases

View File

@@ -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 = 14
private const val versionPatch = 13
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch