Merge tag '0.4.13' into develop
no message
This commit is contained in:
commit
f8642e4ae2
13 changed files with 26 additions and 11 deletions
23
CHANGES.md
23
CHANGES.md
|
|
@ -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)
|
Changes in Element X v0.4.12 (2024-05-13)
|
||||||
=========================================
|
=========================================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Use members display names for their membership state events.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Make sure explicit links in messages take priority over links found by linkification (urls, emails, phone numbers, etc.)
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Allow configuring push notification provider
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Fix modal contents overlapping screen lock pin.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
UX cleanup: reorder text composer actions to prioritise camera ones.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Translation added into Portuguese and Simplified Chinese
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Add plain text editor based on Markdown input.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Use via parameters when joining a room from permalink.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Fix a crash when trying to create an `EncryptedFile` in Android 6.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Session falsely displayed as 'verified' with no internet connection.
|
|
||||||
2
fastlane/metadata/android/en-US/changelogs/40004130.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40004130.txt
Normal 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
|
||||||
|
|
@ -56,7 +56,7 @@ private const val versionMinor = 4
|
||||||
// Note: even values are reserved for regular release, odd values for hotfix release.
|
// 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
|
// When creating a hotfix, you should decrease the value, since the current value
|
||||||
// is the value for the next regular release.
|
// is the value for the next regular release.
|
||||||
private const val versionPatch = 14
|
private const val versionPatch = 13
|
||||||
|
|
||||||
object Versions {
|
object Versions {
|
||||||
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
|
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue