Prepare next release

This commit is contained in:
Element CI 2024-05-07 04:53:22 -07:00
parent e05e664f6d
commit bb58f3840d
20 changed files with 36 additions and 20 deletions

View File

@ -1,3 +1,34 @@
## Changes in 1.6.4 (2024-05-07)
✨ Features
- Support navigating to permalinks and replies. ([#2748](https://github.com/element-hq/element-x-ios/pull/2748))
- Impement suggestion and pill support on the plain text composer ([#2751](https://github.com/element-hq/element-x-ios/pull/2751))
- Add specific UX for Expected UTDs due to membership ([#2740](https://github.com/element-hq/element-x-ios/issues/2740))
- Use the keyboard up arrow to edit the last message, use escape to cancel editing or replying. ([#2765](https://github.com/element-hq/element-x-ios/issues/2765))
🙌 Improvements
- Prevent the app from locking while recording a voice message ([#2707](https://github.com/element-hq/element-x-ios/issues/2707))
- Use an animation when scrolling to a nearby timeline item. ([#2757](https://github.com/element-hq/element-x-ios/issues/2757))
- The settings screen design has slightly changed order and grouping of the options. ([#2789](https://github.com/element-hq/element-x-ios/issues/2789))
🐛 Bugfixes
- If button shapes are enabled, emojis are now displayed properly in the menu. ([#2406](https://github.com/element-hq/element-x-ios/issues/2406))
- Fixed a bug that added an extra newline between the name and a formatted text in an emote. ([#2503](https://github.com/element-hq/element-x-ios/issues/2503))
- Fix room list looping and fighting scrolling after filtering ([#2652](https://github.com/element-hq/element-x-ios/issues/2652))
- Fix deeplinking/navigating into the same room multiple times ([#2653](https://github.com/element-hq/element-x-ios/issues/2653))
- Fix a bug where avatars were missing from the RoomChangeRolesScreen. ([#2713](https://github.com/element-hq/element-x-ios/issues/2713))
- Fix a bug where tapping the same permalink a second time didn't do anything. ([#2758](https://github.com/element-hq/element-x-ios/issues/2758))
- Scrolling to the bottom after sending a message should also go live if necessary. ([#2760](https://github.com/element-hq/element-x-ios/issues/2760))
- Handle plain room aliases as permalinks. ([#2762](https://github.com/element-hq/element-x-ios/issues/2762))
- Add missing padding on the permalink highlight. ([#2764](https://github.com/element-hq/element-x-ios/issues/2764))
Others
- Bump posthog sdk version to 3.2.0 ([#2788](https://github.com/element-hq/element-x-ios/issues/2788))
## Changes in 1.6.3 (2024-04-15)
🙌 Improvements

View File

@ -1712,6 +1712,7 @@
9501D11B4258DFA33BA3B40F /* ServerSelectionScreenModels.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ServerSelectionScreenModels.swift; sourceTree = "<group>"; };
95A1CCDEE545CB6453B084BF /* FormButtonStyles.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormButtonStyles.swift; sourceTree = "<group>"; };
95BAC0F6C9644336E9567EE6 /* NSRegularExpresion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NSRegularExpresion.swift; sourceTree = "<group>"; };
969694F67E844FCA51F7E051 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = "<group>"; };
96C4762F8D6112E43117DB2F /* CustomStringConvertible.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomStringConvertible.swift; sourceTree = "<group>"; };
974AEAF3FE0C577A6C04AD6E /* RoomPermissions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RoomPermissions.swift; sourceTree = "<group>"; };
9780389F8A53E4D26E23DD03 /* LoginScreenViewModelProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginScreenViewModelProtocol.swift; sourceTree = "<group>"; };
@ -6754,6 +6755,7 @@
86C8CE2630F54D5FE1591786 /* ro */,
9B7D8D3638864B7482E148CC /* ru */,
7D39AF1F659923D77778511E /* sk */,
969694F67E844FCA51F7E051 /* sv */,
D66B5D86A9AB95E0E01BED82 /* uk */,
);
name = InfoPlist.strings;
@ -6959,7 +6961,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 16.4;
KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)";
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 1.6.4;
MARKETING_VERSION = 1.6.5;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
PRODUCTION_APP_NAME = Element;
@ -7036,7 +7038,7 @@
IPHONEOS_DEPLOYMENT_TARGET = 16.4;
KEYCHAIN_ACCESS_GROUP_IDENTIFIER = "$(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)";
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 1.6.4;
MARKETING_VERSION = 1.6.5;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;

View File

@ -1 +0,0 @@
If button shapes are enabled, emojis are now displayed properly in the menu.

View File

@ -1 +0,0 @@
Fixed a bug that added an extra newline between the name and a formatted text in an emote.

View File

@ -1 +0,0 @@
Fix room list looping and fighting scrolling after filtering

View File

@ -1 +0,0 @@
Fix deeplinking/navigating into the same room multiple times

View File

@ -1 +0,0 @@
Prevent the app from locking while recording a voice message

View File

@ -1 +0,0 @@
Fix a bug where avatars were missing from the RoomChangeRolesScreen.

View File

@ -1 +0,0 @@
Add specific UX for Expected UTDs due to membership

View File

@ -1 +0,0 @@
Use an animation when scrolling to a nearby timeline item.

View File

@ -1 +0,0 @@
Fix a bug where tapping the same permalink a second time didn't do anything.

View File

@ -1 +0,0 @@
Scrolling to the bottom after sending a message should also go live if necessary.

View File

@ -1 +0,0 @@
Handle plain room aliases as permalinks.

View File

@ -1 +0,0 @@
Add missing padding on the permalink highlight.

View File

@ -1 +0,0 @@
Use the keyboard up arrow to edit the last message, use escape to cancel editing or replying.

View File

@ -1 +0,0 @@
Bump posthog sdk version to 3.2.0

View File

@ -1 +0,0 @@
The settings screen design has slightly changed order and grouping of the options.

View File

@ -1 +0,0 @@
Support navigating to permalinks and replies.

View File

@ -1 +0,0 @@
Impement suggestion and pill support on the plain text composer

View File

@ -30,7 +30,7 @@ settings:
APP_DISPLAY_NAME: Element X
PRODUCTION_APP_NAME: Element
KEYCHAIN_ACCESS_GROUP_IDENTIFIER: $(AppIdentifierPrefix)$(BASE_BUNDLE_IDENTIFIER)
MARKETING_VERSION: 1.6.4
MARKETING_VERSION: 1.6.5
CURRENT_PROJECT_VERSION: 1
DEVELOPMENT_TEAM: 7J4U792NQT
SUPPORTS_MACCATALYST: NO