Browse Source

Merge tag '0.4.13' into develop

no message
pull/2902/head
ganfra 4 months ago
parent
commit
71395d21f6
  1. 23
      CHANGES.md
  2. 1
      changelog.d/2286.bugfix
  3. 1
      changelog.d/2291.bugfix
  4. 1
      changelog.d/2340.misc
  5. 1
      changelog.d/2692.bugfix
  6. 1
      changelog.d/2803.misc
  7. 1
      changelog.d/2834.misc
  8. 1
      changelog.d/2840.feature
  9. 1
      changelog.d/2843.misc
  10. 1
      changelog.d/2846.bugfix
  11. 1
      changelog.d/2884.bugfix
  12. 2
      fastlane/metadata/android/en-US/changelogs/40004130.txt
  13. 2
      plugins/src/main/kotlin/Versions.kt

23
CHANGES.md

@ -1,3 +1,26 @@ @@ -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)
=========================================

1
changelog.d/2286.bugfix

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

1
changelog.d/2291.bugfix

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

1
changelog.d/2340.misc

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

1
changelog.d/2692.bugfix

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

1
changelog.d/2803.misc

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

1
changelog.d/2834.misc

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

1
changelog.d/2840.feature

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

1
changelog.d/2843.misc

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

1
changelog.d/2846.bugfix

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

1
changelog.d/2884.bugfix

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

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

@ -0,0 +1,2 @@ @@ -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

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

Loading…
Cancel
Save