diff --git a/CHANGES.md b/CHANGES.md index fb2aefef7..c0cef1d9a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,33 @@ +## Changes in 1.5.11 (2024-03-12) + +✨ Features + +- The features: Filters, Mark as Read/Unread/Favourites are now available. ([#2541](https://github.com/element-hq/element-x-ios/pull/2541)) +- Added support for `m.call.invite` events in the timeline, room list and notifications ([#1837](https://github.com/element-hq/element-x-ios/issues/1837)) +- Add a blocked users section in the app settings ([#2486](https://github.com/element-hq/element-x-ios/issues/2486)) + +🙌 Improvements + +- Inline predictions have been disabled on iOS 17 temporarily to avoid issues with the text editor. ([#2558](https://github.com/element-hq/element-x-ios/pull/2558)) + +🐛 Bugfixes + +- Don't pass a URL as a log destination to rust on macOS ([#2506](https://github.com/element-hq/element-x-ios/pull/2506)) +- Fix a bug where some avatar backgrounds were hard to see in notifications. ([#2514](https://github.com/element-hq/element-x-ios/pull/2514)) +- Fix crashes when blocking/unblocking users ([#2553](https://github.com/element-hq/element-x-ios/pull/2553)) + +🚧 In development 🚧 + +- Create the Roles and Permissions screen. ([#2505](https://github.com/element-hq/element-x-ios/pull/2505)) +- Searching hides and ignores filtering now. ([#2530](https://github.com/element-hq/element-x-ios/pull/2530)) +- Add RoomChangeRolesScreen. ([#2356](https://github.com/element-hq/element-x-ios/issues/2356)) +- Add RoomChangePermissionsScreen. ([#2358](https://github.com/element-hq/element-x-ios/issues/2358)) +- Added an empty state view when the filter returns no rooms. ([#2522](https://github.com/element-hq/element-x-ios/issues/2522)) + +Others + +- Remove the special log level for the Rust SDK read receipts. ([#2544](https://github.com/element-hq/element-x-ios/issues/2544)) + ## Changes in 1.5.10 (2024-02-27) No significant changes. diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index b8fd14556..534e85ac4 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -6753,7 +6753,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.4; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.3; - MARKETING_VERSION = 1.5.11; + MARKETING_VERSION = 1.5.12; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -6829,7 +6829,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.4; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.3; - MARKETING_VERSION = 1.5.11; + MARKETING_VERSION = 1.5.12; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; diff --git a/changelog.d/1837.feature b/changelog.d/1837.feature deleted file mode 100644 index 43503bc3f..000000000 --- a/changelog.d/1837.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for `m.call.invite` events in the timeline, room list and notifications \ No newline at end of file diff --git a/changelog.d/2356.wip b/changelog.d/2356.wip deleted file mode 100644 index de39b9601..000000000 --- a/changelog.d/2356.wip +++ /dev/null @@ -1 +0,0 @@ -Add RoomChangeRolesScreen. \ No newline at end of file diff --git a/changelog.d/2358.wip b/changelog.d/2358.wip deleted file mode 100644 index 8b59457bd..000000000 --- a/changelog.d/2358.wip +++ /dev/null @@ -1 +0,0 @@ -Add RoomChangePermissionsScreen. \ No newline at end of file diff --git a/changelog.d/2486.feature b/changelog.d/2486.feature deleted file mode 100644 index 06a557819..000000000 --- a/changelog.d/2486.feature +++ /dev/null @@ -1 +0,0 @@ -Add a blocked users section in the app settings \ No newline at end of file diff --git a/changelog.d/2522.wip b/changelog.d/2522.wip deleted file mode 100644 index 6f0073b30..000000000 --- a/changelog.d/2522.wip +++ /dev/null @@ -1 +0,0 @@ -Added an empty state view when the filter returns no rooms. \ No newline at end of file diff --git a/changelog.d/2544.misc b/changelog.d/2544.misc deleted file mode 100644 index b24b4dc05..000000000 --- a/changelog.d/2544.misc +++ /dev/null @@ -1 +0,0 @@ -Remove the special log level for the Rust SDK read receipts. diff --git a/changelog.d/pr-2505.wip b/changelog.d/pr-2505.wip deleted file mode 100644 index c63c4047e..000000000 --- a/changelog.d/pr-2505.wip +++ /dev/null @@ -1 +0,0 @@ -Create the Roles and Permissions screen. \ No newline at end of file diff --git a/changelog.d/pr-2506.bugfix b/changelog.d/pr-2506.bugfix deleted file mode 100644 index b67212c81..000000000 --- a/changelog.d/pr-2506.bugfix +++ /dev/null @@ -1 +0,0 @@ -Don't pass a URL as a log destination to rust on macOS diff --git a/changelog.d/pr-2514.bugfix b/changelog.d/pr-2514.bugfix deleted file mode 100644 index a4298dfde..000000000 --- a/changelog.d/pr-2514.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a bug where some avatar backgrounds were hard to see in notifications. \ No newline at end of file diff --git a/changelog.d/pr-2530.wip b/changelog.d/pr-2530.wip deleted file mode 100644 index aadcccf51..000000000 --- a/changelog.d/pr-2530.wip +++ /dev/null @@ -1 +0,0 @@ -Searching hides and ignores filtering now. \ No newline at end of file diff --git a/changelog.d/pr-2541.feature b/changelog.d/pr-2541.feature deleted file mode 100644 index a27edd5c4..000000000 --- a/changelog.d/pr-2541.feature +++ /dev/null @@ -1 +0,0 @@ -The features: Filters, Mark as Read/Unread/Favourites are now available. \ No newline at end of file diff --git a/changelog.d/pr-2553.bugfix b/changelog.d/pr-2553.bugfix deleted file mode 100644 index 929447251..000000000 --- a/changelog.d/pr-2553.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix crashes when blocking/unblocking users \ No newline at end of file diff --git a/changelog.d/pr-2558.change b/changelog.d/pr-2558.change deleted file mode 100644 index 058ae3388..000000000 --- a/changelog.d/pr-2558.change +++ /dev/null @@ -1 +0,0 @@ -Inline predictions have been disabled on iOS 17 temporarily to avoid issues with the text editor. \ No newline at end of file diff --git a/project.yml b/project.yml index 3ec13ad60..56ee96bbc 100644 --- a/project.yml +++ b/project.yml @@ -29,7 +29,7 @@ settings: APP_NAME: ElementX APP_DISPLAY_NAME: Element X KEYCHAIN_ACCESS_GROUP_IDENTIFIER: $(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER) - MARKETING_VERSION: 1.5.11 + MARKETING_VERSION: 1.5.12 CURRENT_PROJECT_VERSION: 1 DEVELOPMENT_TEAM: 7J4U792NQT SUPPORTS_MACCATALYST: NO