From 65888ccaad608e4172132509c36a60867a673b97 Mon Sep 17 00:00:00 2001 From: ganfra Date: Wed, 28 Feb 2024 10:42:08 +0100 Subject: [PATCH 1/3] Setting version for the release 0.4.5 --- plugins/src/main/kotlin/Versions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/src/main/kotlin/Versions.kt b/plugins/src/main/kotlin/Versions.kt index fc6ad357c8..b382d1234a 100644 --- a/plugins/src/main/kotlin/Versions.kt +++ b/plugins/src/main/kotlin/Versions.kt @@ -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 From 859f569559d9a11229357e2e29a813c18e22d71f Mon Sep 17 00:00:00 2001 From: ganfra Date: Wed, 28 Feb 2024 11:01:39 +0100 Subject: [PATCH 2/3] Changelog for version 0.4.5 --- CHANGES.md | 23 +++++++++++++++++++ ...empty-state-before-loading-roomlist.bugfix | 1 - .../+improve-accessibility-in-timeline.bugfix | 1 - changelog.d/2208.feature | 1 - changelog.d/2256.feature | 4 ---- changelog.d/2390.feature | 1 - changelog.d/2420.misc | 1 - changelog.d/2421.bugfix | 1 - changelog.d/2992.feature | 1 - 9 files changed, 23 insertions(+), 11 deletions(-) delete mode 100644 changelog.d/+do-not-display-empty-state-before-loading-roomlist.bugfix delete mode 100644 changelog.d/+improve-accessibility-in-timeline.bugfix delete mode 100644 changelog.d/2208.feature delete mode 100644 changelog.d/2256.feature delete mode 100644 changelog.d/2390.feature delete mode 100644 changelog.d/2420.misc delete mode 100644 changelog.d/2421.bugfix delete mode 100644 changelog.d/2992.feature diff --git a/CHANGES.md b/CHANGES.md index 203ace9652..2ff3f525f9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) ======================================== diff --git a/changelog.d/+do-not-display-empty-state-before-loading-roomlist.bugfix b/changelog.d/+do-not-display-empty-state-before-loading-roomlist.bugfix deleted file mode 100644 index 21b409821d..0000000000 --- a/changelog.d/+do-not-display-empty-state-before-loading-roomlist.bugfix +++ /dev/null @@ -1 +0,0 @@ -Do not display empty room list state before the loading one when we still don't have any items diff --git a/changelog.d/+improve-accessibility-in-timeline.bugfix b/changelog.d/+improve-accessibility-in-timeline.bugfix deleted file mode 100644 index a0f37c2072..0000000000 --- a/changelog.d/+improve-accessibility-in-timeline.bugfix +++ /dev/null @@ -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. diff --git a/changelog.d/2208.feature b/changelog.d/2208.feature deleted file mode 100644 index 63dc68b585..0000000000 --- a/changelog.d/2208.feature +++ /dev/null @@ -1 +0,0 @@ -Mark a room or dm as favourite. diff --git a/changelog.d/2256.feature b/changelog.d/2256.feature deleted file mode 100644 index 98ed9d17cd..0000000000 --- a/changelog.d/2256.feature +++ /dev/null @@ -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. diff --git a/changelog.d/2390.feature b/changelog.d/2390.feature deleted file mode 100644 index c58061ea5b..0000000000 --- a/changelog.d/2390.feature +++ /dev/null @@ -1 +0,0 @@ -MediaViewer : introduce fullscreen and flick to dismiss behavior. diff --git a/changelog.d/2420.misc b/changelog.d/2420.misc deleted file mode 100644 index abe4e5a0ed..0000000000 --- a/changelog.d/2420.misc +++ /dev/null @@ -1 +0,0 @@ -Provide the current system proxy setting to the Rust SDK. diff --git a/changelog.d/2421.bugfix b/changelog.d/2421.bugfix deleted file mode 100644 index e5f46b0061..0000000000 --- a/changelog.d/2421.bugfix +++ /dev/null @@ -1 +0,0 @@ -Add ability to enter a recovery key to verify the session. Also fixes some refresh issues with the verification session state. diff --git a/changelog.d/2992.feature b/changelog.d/2992.feature deleted file mode 100644 index 622f6fdc69..0000000000 --- a/changelog.d/2992.feature +++ /dev/null @@ -1 +0,0 @@ -Allow user-installed certificates to be used by the HTTP client From c151827d2fbec806b6f7315781827301ff69d552 Mon Sep 17 00:00:00 2001 From: ganfra Date: Wed, 28 Feb 2024 11:09:33 +0100 Subject: [PATCH 3/3] Adding fastlane file for version 0.4.5 --- fastlane/metadata/android/en-US/changelogs/40004050.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 fastlane/metadata/android/en-US/changelogs/40004050.txt diff --git a/fastlane/metadata/android/en-US/changelogs/40004050.txt b/fastlane/metadata/android/en-US/changelogs/40004050.txt new file mode 100644 index 0000000000..8f09a274fd --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40004050.txt @@ -0,0 +1,2 @@ +Main changes in this version: Moderation to roomss, mark room as favourite. +Full changelog: https://github.com/element-hq/element-x-android/releases \ No newline at end of file