diff --git a/CHANGES.md b/CHANGES.md index ce2055130..966ee4efa 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,40 @@ +## Changes in 1.6.6 (2021-10-21) + +✨ Features + +- M10.4.1 Home space data filtering ([#4570](https://github.com/vector-im/element-ios/issues/4570)) +- Implemented message forwarding from within the main application. Updated the share extension designs. ([#5009](https://github.com/vector-im/element-ios/issues/5009)) + +🙌 Improvements + +- Settings: Refresh the appearance of headers and footers, with a few minor tweaks to the organisation. ([#5011](https://github.com/vector-im/element-ios/pull/5011)) +- Upgrade MatrixKit version ([v0.16.9](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.16.9)). +- RecentsDataSource: Refactorings for lazy loading room summaries. ([#4384](https://github.com/vector-im/element-ios/issues/4384)) +- Contacts Access: Request access via a button tap in the new Find Your Contacts footer instead of doing it automatically. ([#4484](https://github.com/vector-im/element-ios/issues/4484)) +- Navigation: Create RoomCoordinator. ([#4734](https://github.com/vector-im/element-ios/issues/4734)) +- Navigation: Enable room stacking. ([#4834](https://github.com/vector-im/element-ios/issues/4834)) +- SwiftUI: Add FramePreferenceKey for use in ViewFrameReader. ([#4974](https://github.com/vector-im/element-ios/issues/4974)) +- URL Previews: Stop requesting URL previews if the feature has been disabled on the homeserver. ([#5002](https://github.com/vector-im/element-ios/issues/5002)) +- VectorWellKnown: Make all properties optional. ([#5008](https://github.com/vector-im/element-ios/issues/5008)) + +🐛 Bugfixes + +- Message Composer: Pasting images from Safari now pastes the image and not its URL. ([#2076](https://github.com/vector-im/element-ios/issues/2076)) +- Fixed private space invite should use lock icon instead of planet ([#4886](https://github.com/vector-im/element-ios/issues/4886)) +- Room Lists: Fix generated avatar colours not matching Element Web. ([#4978](https://github.com/vector-im/element-ios/issues/4978)) +- Contacts Sync: Move call to validateSyncLocalContactsState into MatrixKit. ([#4989](https://github.com/vector-im/element-ios/issues/4989)) +- Timeline: Selecting a message now correctly selects any reactions and URL previews too. ([#4992](https://github.com/vector-im/element-ios/issues/4992)) + +🧱 Build + +- Build: Update to Xcode 12.5 in the Fastfile and macOS 11 in the GitHub actions. ([#4998](https://github.com/vector-im/element-ios/pull/4998)) + +Others + +- Replaced deprecated HPGrowingTextView with GrowingTextView. ([#4976](https://github.com/vector-im/element-ios/issues/4976)) +- Move new issues into incoming column and move X-Needs-Info into Need info column on the issue triage board ([#5012](https://github.com/vector-im/element-ios/issues/5012)) + + ## Changes in 1.6.5 (2021-10-14) 🙌 Improvements diff --git a/changelog.d/2076.bugfix b/changelog.d/2076.bugfix deleted file mode 100644 index e85ae76ce..000000000 --- a/changelog.d/2076.bugfix +++ /dev/null @@ -1 +0,0 @@ -Message Composer: Pasting images from Safari now pastes the image and not its URL. \ No newline at end of file diff --git a/changelog.d/4384.change b/changelog.d/4384.change deleted file mode 100644 index 69945e6d1..000000000 --- a/changelog.d/4384.change +++ /dev/null @@ -1 +0,0 @@ -RecentsDataSource: Refactorings for lazy loading room summaries. diff --git a/changelog.d/4484.change b/changelog.d/4484.change deleted file mode 100644 index 2abb141a2..000000000 --- a/changelog.d/4484.change +++ /dev/null @@ -1 +0,0 @@ -Contacts Access: Request access via a button tap in the new Find Your Contacts footer instead of doing it automatically. \ No newline at end of file diff --git a/changelog.d/4570.feature b/changelog.d/4570.feature deleted file mode 100644 index e1a38944f..000000000 --- a/changelog.d/4570.feature +++ /dev/null @@ -1 +0,0 @@ -M10.4.1 Home space data filtering \ No newline at end of file diff --git a/changelog.d/4734.change b/changelog.d/4734.change deleted file mode 100644 index 23cd68343..000000000 --- a/changelog.d/4734.change +++ /dev/null @@ -1 +0,0 @@ -Navigation: Create RoomCoordinator. \ No newline at end of file diff --git a/changelog.d/4834.change b/changelog.d/4834.change deleted file mode 100644 index a4cc38029..000000000 --- a/changelog.d/4834.change +++ /dev/null @@ -1 +0,0 @@ -Navigation: Enable room stacking. \ No newline at end of file diff --git a/changelog.d/4886.bugfix b/changelog.d/4886.bugfix deleted file mode 100644 index ad58b6c36..000000000 --- a/changelog.d/4886.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed private space invite should use lock icon instead of planet \ No newline at end of file diff --git a/changelog.d/4974.change b/changelog.d/4974.change deleted file mode 100644 index 8c4588c4f..000000000 --- a/changelog.d/4974.change +++ /dev/null @@ -1 +0,0 @@ -SwiftUI: Add FramePreferenceKey for use in ViewFrameReader. \ No newline at end of file diff --git a/changelog.d/4976.misc b/changelog.d/4976.misc deleted file mode 100644 index 882070b8d..000000000 --- a/changelog.d/4976.misc +++ /dev/null @@ -1 +0,0 @@ -Replaced deprecated HPGrowingTextView with GrowingTextView. \ No newline at end of file diff --git a/changelog.d/4978.bugfix b/changelog.d/4978.bugfix deleted file mode 100644 index 36dcc382c..000000000 --- a/changelog.d/4978.bugfix +++ /dev/null @@ -1 +0,0 @@ -Room Lists: Fix generated avatar colours not matching Element Web. \ No newline at end of file diff --git a/changelog.d/4989.bugfix b/changelog.d/4989.bugfix deleted file mode 100644 index bc127643a..000000000 --- a/changelog.d/4989.bugfix +++ /dev/null @@ -1 +0,0 @@ -Contacts Sync: Move call to validateSyncLocalContactsState into MatrixKit. \ No newline at end of file diff --git a/changelog.d/4992.bugfix b/changelog.d/4992.bugfix deleted file mode 100644 index 2a89ca027..000000000 --- a/changelog.d/4992.bugfix +++ /dev/null @@ -1 +0,0 @@ -Timeline: Selecting a message now correctly selects any reactions and URL previews too. \ No newline at end of file diff --git a/changelog.d/5002.change b/changelog.d/5002.change deleted file mode 100644 index dee394802..000000000 --- a/changelog.d/5002.change +++ /dev/null @@ -1 +0,0 @@ -URL Previews: Stop requesting URL previews if the feature has been disabled on the homeserver. diff --git a/changelog.d/5008.change b/changelog.d/5008.change deleted file mode 100644 index f400bb2af..000000000 --- a/changelog.d/5008.change +++ /dev/null @@ -1 +0,0 @@ -VectorWellKnown: Make all properties optional. diff --git a/changelog.d/5009.feature b/changelog.d/5009.feature deleted file mode 100644 index 55e904a3b..000000000 --- a/changelog.d/5009.feature +++ /dev/null @@ -1 +0,0 @@ -Implemented message forwarding from within the main application. Updated the share extension designs. \ No newline at end of file diff --git a/changelog.d/5012.misc b/changelog.d/5012.misc deleted file mode 100644 index fa300a8a4..000000000 --- a/changelog.d/5012.misc +++ /dev/null @@ -1 +0,0 @@ -Move new issues into incoming column and move X-Needs-Info into Need info column on the issue triage board diff --git a/changelog.d/pr-4998.build b/changelog.d/pr-4998.build deleted file mode 100644 index 6b36ac81e..000000000 --- a/changelog.d/pr-4998.build +++ /dev/null @@ -1 +0,0 @@ -Build: Update to Xcode 12.5 in the Fastfile and macOS 11 in the GitHub actions. \ No newline at end of file diff --git a/changelog.d/pr-5011.change b/changelog.d/pr-5011.change deleted file mode 100644 index 3dfc602c1..000000000 --- a/changelog.d/pr-5011.change +++ /dev/null @@ -1 +0,0 @@ -Settings: Refresh the appearance of headers and footers, with a few minor tweaks to the organisation. \ No newline at end of file diff --git a/changelog.d/x-nolink-0.change b/changelog.d/x-nolink-0.change deleted file mode 100644 index 96606160b..000000000 --- a/changelog.d/x-nolink-0.change +++ /dev/null @@ -1 +0,0 @@ -Upgrade MatrixKit version ([v0.16.9](https://github.com/matrix-org/matrix-ios-kit/releases/tag/v0.16.9)). \ No newline at end of file