diff --git a/CHANGES.md b/CHANGES.md index 3824fead36..9590adc060 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,39 @@ +Changes in Element v1.3.7 (2021-11-04) +====================================== + +Features ✨ +---------- + - Adding the room name to the invitation notification (if the room summary is available) ([#582](https://github.com/vector-im/element-android/issues/582)) + - Updating single sign on providers ordering to match priority/popularity ([#4277](https://github.com/vector-im/element-android/issues/4277)) + +Bugfixes 🐛 +---------- + - Stops showing a dedicated redacted event notification, the message notifications will update accordingly ([#1491](https://github.com/vector-im/element-android/issues/1491)) + - Fixes marking individual notifications as read causing other notifications to be dismissed ([#3395](https://github.com/vector-im/element-android/issues/3395)) + - Fixing missing send button in light mode dev tools - send * event ([#3674](https://github.com/vector-im/element-android/issues/3674)) + - Fixing room search needing exact casing for non latin-1 character named rooms ([#3968](https://github.com/vector-im/element-android/issues/3968)) + - Fixing call ringtones only playing once when the ringtone doesn't contain looping metadata (android 9.0 and above) ([#4047](https://github.com/vector-im/element-android/issues/4047)) + - Tentatively fixing the doubled notifications by updating the group summary at specific points in the notification rendering cycle ([#4152](https://github.com/vector-im/element-android/issues/4152)) + - Do not show shortcuts if a PIN code is set ([#4170](https://github.com/vector-im/element-android/issues/4170)) + - Fixes being unable to join rooms by name ([#4255](https://github.com/vector-im/element-android/issues/4255)) + - Fixing missing F-Droid notifications when in background due to background syncs not triggering ([#4298](https://github.com/vector-im/element-android/issues/4298)) + - Fix video compression before upload ([#4353](https://github.com/vector-im/element-android/issues/4353)) + - Fixing QR code crashes caused by a known issue in the zxing library for older versions of android by downgrading to 3.3.3 ([#4361](https://github.com/vector-im/element-android/issues/4361)) + - Fixing timeline crash when rotating with the emoji window open ([#4365](https://github.com/vector-im/element-android/issues/4365)) + - Fix handling of links coming from web instance reported as malformed by mistake ([#4369](https://github.com/vector-im/element-android/issues/4369)) + +SDK API changes ⚠️ +------------------ + - Add API `LoginWizard.loginCustom(data: JsonDict): Session` to be able to login to a homeserver using arbitrary request content ([#4266](https://github.com/vector-im/element-android/issues/4266)) + - Add optional deviceId to the login API ([#4334](https://github.com/vector-im/element-android/issues/4334)) + +Other changes +------------- + - Migrate app DI framework to Hilt ([#3888](https://github.com/vector-im/element-android/issues/3888)) + - Limit supported TLS versions and cipher suites ([#4192](https://github.com/vector-im/element-android/issues/4192)) + - Fixed capitalisation of text on initial sync screen ([#4292](https://github.com/vector-im/element-android/issues/4292)) + + Changes in Element v1.3.6 (2021-10-26) ====================================== diff --git a/changelog.d/1491.bugfix b/changelog.d/1491.bugfix deleted file mode 100644 index 0ff6bd2c11..0000000000 --- a/changelog.d/1491.bugfix +++ /dev/null @@ -1 +0,0 @@ -Stops showing a dedicated redacted event notification, the message notifications will update accordingly \ No newline at end of file diff --git a/changelog.d/3395.bugfix b/changelog.d/3395.bugfix deleted file mode 100644 index 9482e1bc7e..0000000000 --- a/changelog.d/3395.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixes marking individual notifications as read causing other notifications to be dismissed \ No newline at end of file diff --git a/changelog.d/3674.bugfix b/changelog.d/3674.bugfix deleted file mode 100644 index a2625b501b..0000000000 --- a/changelog.d/3674.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixing missing send button in light mode dev tools - send * event \ No newline at end of file diff --git a/changelog.d/3888.misc b/changelog.d/3888.misc deleted file mode 100644 index 314e515631..0000000000 --- a/changelog.d/3888.misc +++ /dev/null @@ -1 +0,0 @@ -Migrate app DI framework to Hilt \ No newline at end of file diff --git a/changelog.d/3968.bugfix b/changelog.d/3968.bugfix deleted file mode 100644 index dec0eaf2df..0000000000 --- a/changelog.d/3968.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixing room search needing exact casing for non latin-1 character named rooms \ No newline at end of file diff --git a/changelog.d/4047.bugfix b/changelog.d/4047.bugfix deleted file mode 100644 index a25e824900..0000000000 --- a/changelog.d/4047.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixing call ringtones only playing once when the ringtone doesn't contain looping metadata (android 9.0 and above) \ No newline at end of file diff --git a/changelog.d/4152.bugfix b/changelog.d/4152.bugfix deleted file mode 100644 index 1ff45609b5..0000000000 --- a/changelog.d/4152.bugfix +++ /dev/null @@ -1 +0,0 @@ -Tentatively fixing the doubled notifications by updating the group summary at specific points in the notification rendering cycle \ No newline at end of file diff --git a/changelog.d/4170.bugfix b/changelog.d/4170.bugfix deleted file mode 100644 index 3c1cc4361f..0000000000 --- a/changelog.d/4170.bugfix +++ /dev/null @@ -1 +0,0 @@ -Do not show shortcuts if a PIN code is set \ No newline at end of file diff --git a/changelog.d/4192.misc b/changelog.d/4192.misc deleted file mode 100644 index 3587e3cb7c..0000000000 --- a/changelog.d/4192.misc +++ /dev/null @@ -1 +0,0 @@ -Limit supported TLS versions and cipher suites \ No newline at end of file diff --git a/changelog.d/4255.bugfix b/changelog.d/4255.bugfix deleted file mode 100644 index 8fc820d70f..0000000000 --- a/changelog.d/4255.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixes being unable to join rooms by name \ No newline at end of file diff --git a/changelog.d/4266.removal b/changelog.d/4266.removal deleted file mode 100644 index 5ac757bc8a..0000000000 --- a/changelog.d/4266.removal +++ /dev/null @@ -1 +0,0 @@ -Add API `LoginWizard.loginCustom(data: JsonDict): Session` to be able to login to a homeserver using arbitrary request content \ No newline at end of file diff --git a/changelog.d/4277.feature b/changelog.d/4277.feature deleted file mode 100644 index 0be1114f22..0000000000 --- a/changelog.d/4277.feature +++ /dev/null @@ -1 +0,0 @@ -Updating single sign on providers ordering to match priority/popularity \ No newline at end of file diff --git a/changelog.d/4292.misc b/changelog.d/4292.misc deleted file mode 100644 index 732556ea72..0000000000 --- a/changelog.d/4292.misc +++ /dev/null @@ -1 +0,0 @@ -Fixed capitalisation of text on initial sync screen \ No newline at end of file diff --git a/changelog.d/4298.bugfix b/changelog.d/4298.bugfix deleted file mode 100644 index 4da2ff899b..0000000000 --- a/changelog.d/4298.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixing missing F-Droid notifications when in background due to background syncs not triggering \ No newline at end of file diff --git a/changelog.d/4334.removal b/changelog.d/4334.removal deleted file mode 100644 index 1ed04d3cdf..0000000000 --- a/changelog.d/4334.removal +++ /dev/null @@ -1 +0,0 @@ -Add optional deviceId to the login API \ No newline at end of file diff --git a/changelog.d/4353.bugfix b/changelog.d/4353.bugfix deleted file mode 100644 index 170dbed418..0000000000 --- a/changelog.d/4353.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix video compression before upload diff --git a/changelog.d/4361.bugfix b/changelog.d/4361.bugfix deleted file mode 100644 index fe32783fd2..0000000000 --- a/changelog.d/4361.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixing QR code crashes caused by a known issue in the zxing library for older versions of android by downgrading to 3.3.3 \ No newline at end of file diff --git a/changelog.d/4365.bugfix b/changelog.d/4365.bugfix deleted file mode 100644 index 2322f022a9..0000000000 --- a/changelog.d/4365.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixing timeline crash when rotating with the emoji window open \ No newline at end of file diff --git a/changelog.d/4369.bugfix b/changelog.d/4369.bugfix deleted file mode 100644 index 43ce71cbb8..0000000000 --- a/changelog.d/4369.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix handling of links coming from web instance reported as malformed by mistake \ No newline at end of file diff --git a/changelog.d/582.feature b/changelog.d/582.feature deleted file mode 100644 index 5f82e1b82c..0000000000 --- a/changelog.d/582.feature +++ /dev/null @@ -1 +0,0 @@ -Adding the room name to the invitation notification (if the room summary is available) \ No newline at end of file