diff --git a/CHANGES.md b/CHANGES.md index e946adbed..4f132447b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,30 @@ +## Changes in 1.5.2 (2024-01-16) + +✨ Features + +- Added back the mention badge option but only behind a feature flag. ([#2281](https://github.com/element-hq/element-x-ios/issues/2281)) +- Allow copying user display names on the room member details screen ([#2333](https://github.com/element-hq/element-x-ios/issues/2333)) + +🙌 Improvements + +- Added the user id in the room members list cells, to avoid ambiguity. ([#2332](https://github.com/element-hq/element-x-ios/pull/2332)) + +🐛 Bugfixes + +- Improved plain text mode stability. ([#2327](https://github.com/element-hq/element-x-ios/pull/2327)) +- Fix for dictation not working properly in RTE mode. ([#2030](https://github.com/element-hq/element-x-ios/issues/2030)) +- Composer won't reset its content the app is backgrounded on iPad. ([#2275](https://github.com/element-hq/element-x-ios/issues/2275)) +- Fix timeline entries flickering when a lot of mention pills present ([#2286](https://github.com/element-hq/element-x-ios/issues/2286)) +- Fix wrong notification placeholder avatar orientation on 17.2.1 ([#2291](https://github.com/element-hq/element-x-ios/issues/2291)) +- Trying to edit messages containing links with angle brackets doesn't pre-populate the message composer ([#2296](https://github.com/element-hq/element-x-ios/issues/2296)) +- Fix room messages coming in as push notifications when inside a room when entering it from the invites list ([#2302](https://github.com/element-hq/element-x-ios/issues/2302)) +- Fix for read receipts loading slowly when opening a room. ([#2304](https://github.com/element-hq/element-x-ios/issues/2304)) +- Fix reporting content screen not being displayed ([#2306](https://github.com/element-hq/element-x-ios/issues/2306)) + +🚧 In development 🚧 + +- Enable database encryption for new logins on Nightly/PR builds. ([#441](https://github.com/element-hq/element-x-ios/issues/441)) + ## Changes in 1.5.1 (2023-12-22) No significant changes. diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index ec2379900..b4ce493c1 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -6328,7 +6328,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.4; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.3; - MARKETING_VERSION = 1.5.2; + MARKETING_VERSION = 1.5.3; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -6404,7 +6404,7 @@ IPHONEOS_DEPLOYMENT_TARGET = 16.4; KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)"; MACOSX_DEPLOYMENT_TARGET = 13.3; - MARKETING_VERSION = 1.5.2; + MARKETING_VERSION = 1.5.3; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; diff --git a/changelog.d/2030.bugfix b/changelog.d/2030.bugfix deleted file mode 100644 index cf8f051db..000000000 --- a/changelog.d/2030.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix for dictation not working properly in RTE mode. \ No newline at end of file diff --git a/changelog.d/2275.bugfix b/changelog.d/2275.bugfix deleted file mode 100644 index a9aae09d8..000000000 --- a/changelog.d/2275.bugfix +++ /dev/null @@ -1 +0,0 @@ -Composer won't reset its content the app is backgrounded on iPad. \ No newline at end of file diff --git a/changelog.d/2281.feature b/changelog.d/2281.feature deleted file mode 100644 index 7349ae808..000000000 --- a/changelog.d/2281.feature +++ /dev/null @@ -1 +0,0 @@ -Added back the mention badge option but only behind a feature flag. \ No newline at end of file diff --git a/changelog.d/2286.bugfix b/changelog.d/2286.bugfix deleted file mode 100644 index c9c7d1ebb..000000000 --- a/changelog.d/2286.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix timeline entries flickering when a lot of mention pills present \ No newline at end of file diff --git a/changelog.d/2291.bugfix b/changelog.d/2291.bugfix deleted file mode 100644 index da0377628..000000000 --- a/changelog.d/2291.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix wrong notification placeholder avatar orientation on 17.2.1 \ No newline at end of file diff --git a/changelog.d/2296.bugfix b/changelog.d/2296.bugfix deleted file mode 100644 index 1a7c8e408..000000000 --- a/changelog.d/2296.bugfix +++ /dev/null @@ -1 +0,0 @@ -Trying to edit messages containing links with angle brackets doesn't pre-populate the message composer \ No newline at end of file diff --git a/changelog.d/2302.bugfix b/changelog.d/2302.bugfix deleted file mode 100644 index 8bfc6843b..000000000 --- a/changelog.d/2302.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix room messages coming in as push notifications when inside a room when entering it from the invites list \ No newline at end of file diff --git a/changelog.d/2304.bugfix b/changelog.d/2304.bugfix deleted file mode 100644 index db0758cf9..000000000 --- a/changelog.d/2304.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix for read receipts loading slowly when opening a room. \ No newline at end of file diff --git a/changelog.d/2306.bugfix b/changelog.d/2306.bugfix deleted file mode 100644 index a8ec7e498..000000000 --- a/changelog.d/2306.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix reporting content screen not being displayed \ No newline at end of file diff --git a/changelog.d/2333.feature b/changelog.d/2333.feature deleted file mode 100644 index 4096ee067..000000000 --- a/changelog.d/2333.feature +++ /dev/null @@ -1 +0,0 @@ -Allow copying user display names on the room member details screen \ No newline at end of file diff --git a/changelog.d/441.wip b/changelog.d/441.wip deleted file mode 100644 index 0b995abd5..000000000 --- a/changelog.d/441.wip +++ /dev/null @@ -1 +0,0 @@ -Enable database encryption for new logins on Nightly/PR builds. \ No newline at end of file diff --git a/changelog.d/pr-2327.bugfix b/changelog.d/pr-2327.bugfix deleted file mode 100644 index 82cb6dce8..000000000 --- a/changelog.d/pr-2327.bugfix +++ /dev/null @@ -1 +0,0 @@ -Improved plain text mode stability. \ No newline at end of file diff --git a/changelog.d/pr-2332.change b/changelog.d/pr-2332.change deleted file mode 100644 index 22a4857a5..000000000 --- a/changelog.d/pr-2332.change +++ /dev/null @@ -1 +0,0 @@ -Added the user id in the room members list cells, to avoid ambiguity. \ No newline at end of file diff --git a/project.yml b/project.yml index 15c4b9084..29f07bd5e 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.2 + MARKETING_VERSION: 1.5.3 CURRENT_PROJECT_VERSION: 1 DEVELOPMENT_TEAM: 7J4U792NQT SUPPORTS_MACCATALYST: NO