diff --git a/CHANGES.md b/CHANGES.md index 03766ed66b..3e6c3d9b3c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,36 @@ +Changes in Element X v0.1.4 (2023-08-28) +======================================== + +Features ✨ +---------- + - Allow cancelling media upload ([#769](https://github.com/vector-im/element-x-android/issues/769)) + - Enable OIDC support. ([#1127](https://github.com/vector-im/element-x-android/issues/1127)) + - Add a "Setting up account" screen, displayed the first time the user logs in to the app (per account). ([#1149](https://github.com/vector-im/element-x-android/issues/1149)) + +Bugfixes 🐛 +---------- + - Videos sent from the app were cropped in some cases. ([#862](https://github.com/vector-im/element-x-android/issues/862)) + - Timeline: sender names are now displayed in one single line. ([#1033](https://github.com/vector-im/element-x-android/issues/1033)) + - Fix `TextButtons` being displayed in black. ([#1077](https://github.com/vector-im/element-x-android/issues/1077)) + - Linkify links in HTML contents. ([#1079](https://github.com/vector-im/element-x-android/issues/1079)) + - Fix bug reporter failing after not finding some log files. ([#1082](https://github.com/vector-im/element-x-android/issues/1082)) + - Fix rendering of inline elements in list items. ([#1090](https://github.com/vector-im/element-x-android/issues/1090)) + - Fix crash RuntimeException "No matching key found for the ciphertext in the stream" ([#1101](https://github.com/vector-im/element-x-android/issues/1101)) + - Make links in messages clickable again. ([#1111](https://github.com/vector-im/element-x-android/issues/1111)) + - When event has no id, just cancel parsing the latest room message for a room. ([#1125](https://github.com/vector-im/element-x-android/issues/1125)) + - Only display verification prompt after initial sync is done. ([#1131](https://github.com/vector-im/element-x-android/issues/1131)) + +In development 🚧 +---------------- + - [Poll] Add feature flag in developer options ([#1064](https://github.com/vector-im/element-x-android/issues/1064)) + - [Polls] Improve UI and render ended state ([#1113](https://github.com/vector-im/element-x-android/issues/1113)) + +Other changes +------------- + - Compound: add `ListItem` and `ListSectionHeader` components. ([#990](https://github.com/vector-im/element-x-android/issues/990)) + - Migrate `object` to `data object` in sealed interface / class #1135 ([#1135](https://github.com/vector-im/element-x-android/issues/1135)) + + Changes in Element X v0.1.2 (2023-08-16) ======================================== diff --git a/changelog.d/1033.bugfix b/changelog.d/1033.bugfix deleted file mode 100644 index db4397449b..0000000000 --- a/changelog.d/1033.bugfix +++ /dev/null @@ -1 +0,0 @@ -Timeline: sender names are now displayed in one single line. diff --git a/changelog.d/1064.wip b/changelog.d/1064.wip deleted file mode 100644 index f3d8af5133..0000000000 --- a/changelog.d/1064.wip +++ /dev/null @@ -1 +0,0 @@ -[Poll] Add feature flag in developer options diff --git a/changelog.d/1077.bugfix b/changelog.d/1077.bugfix deleted file mode 100644 index f76a12e5a2..0000000000 --- a/changelog.d/1077.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix `TextButtons` being displayed in black. diff --git a/changelog.d/1079.bugfix b/changelog.d/1079.bugfix deleted file mode 100644 index 6fcaa759c3..0000000000 --- a/changelog.d/1079.bugfix +++ /dev/null @@ -1 +0,0 @@ -Linkify links in HTML contents. diff --git a/changelog.d/1082.bugfix b/changelog.d/1082.bugfix deleted file mode 100644 index c279e09af2..0000000000 --- a/changelog.d/1082.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix bug reporter failing after not finding some log files. diff --git a/changelog.d/1090.bugfix b/changelog.d/1090.bugfix deleted file mode 100644 index 7c93ed6879..0000000000 --- a/changelog.d/1090.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix rendering of inline elements in list items. diff --git a/changelog.d/1101.bugfix b/changelog.d/1101.bugfix deleted file mode 100644 index 79c25ffaf6..0000000000 --- a/changelog.d/1101.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix crash RuntimeException "No matching key found for the ciphertext in the stream" diff --git a/changelog.d/1111.bugfix b/changelog.d/1111.bugfix deleted file mode 100644 index 4d1baf87bf..0000000000 --- a/changelog.d/1111.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make links in messages clickable again. diff --git a/changelog.d/1113.wip b/changelog.d/1113.wip deleted file mode 100644 index f95dc6ba88..0000000000 --- a/changelog.d/1113.wip +++ /dev/null @@ -1 +0,0 @@ -[Polls] Improve UI and render ended state diff --git a/changelog.d/1125.bugfix b/changelog.d/1125.bugfix deleted file mode 100644 index 85ebb87033..0000000000 --- a/changelog.d/1125.bugfix +++ /dev/null @@ -1 +0,0 @@ -When event has no id, just cancel parsing the latest room message for a room. diff --git a/changelog.d/1127.feature b/changelog.d/1127.feature deleted file mode 100644 index da2c6b3cf1..0000000000 --- a/changelog.d/1127.feature +++ /dev/null @@ -1 +0,0 @@ -Enable OIDC support. diff --git a/changelog.d/1131.bugfix b/changelog.d/1131.bugfix deleted file mode 100644 index 23649a19d0..0000000000 --- a/changelog.d/1131.bugfix +++ /dev/null @@ -1 +0,0 @@ -Only display verification prompt after initial sync is done. diff --git a/changelog.d/1135.misc b/changelog.d/1135.misc deleted file mode 100644 index 6672148591..0000000000 --- a/changelog.d/1135.misc +++ /dev/null @@ -1 +0,0 @@ - Migrate `object` to `data object` in sealed interface / class #1135 diff --git a/changelog.d/1149.feature b/changelog.d/1149.feature deleted file mode 100644 index 7f08bbc4e4..0000000000 --- a/changelog.d/1149.feature +++ /dev/null @@ -1 +0,0 @@ -Add a "Setting up account" screen, displayed the first time the user logs in to the app (per account). diff --git a/changelog.d/769.feature b/changelog.d/769.feature deleted file mode 100644 index 8df765c27c..0000000000 --- a/changelog.d/769.feature +++ /dev/null @@ -1 +0,0 @@ -Allow cancelling media upload diff --git a/changelog.d/862.bugfix b/changelog.d/862.bugfix deleted file mode 100644 index 30715a76e3..0000000000 --- a/changelog.d/862.bugfix +++ /dev/null @@ -1 +0,0 @@ -Videos sent from the app were cropped in some cases. diff --git a/changelog.d/990.misc b/changelog.d/990.misc deleted file mode 100644 index 0deaf51c89..0000000000 --- a/changelog.d/990.misc +++ /dev/null @@ -1 +0,0 @@ -Compound: add `ListItem` and `ListSectionHeader` components.