Merge branch 'master' into develop

This commit is contained in:
Element CI
2023-05-16 16:26:15 +03:00
21 changed files with 40 additions and 27 deletions
+31
View File
@@ -1,3 +1,34 @@
## Changes in 1.10.12 (2023-05-16)
✨ Features
- Add composer suggestions for slash commands ([#7493](https://github.com/vector-im/element-ios/issues/7493))
🙌 Improvements
- Crypto: Deprecate MXLegacyCrypto ([#7508](https://github.com/vector-im/element-ios/pull/7508))
- Add a flag in the build settings to force the user to define a homeserver instead of using the default one. ([#7541](https://github.com/vector-im/element-ios/pull/7541))
- Upgrade MatrixSDK version ([v0.26.10](https://github.com/matrix-org/matrix-ios-sdk/releases/tag/v0.26.10)).
- Add an audio alert when the voice broadcast recording is automatically paused ([#7504](https://github.com/vector-im/element-ios/issues/7504))
- Timeline: Remove the matrix ID displayed when someone has changed its display name. ([#7517](https://github.com/vector-im/element-ios/issues/7517))
🐛 Bugfixes
- Fix an issue where the Secrets Reset screen would open twice. ([#7404](https://github.com/vector-im/element-ios/pull/7404))
- Make sure to use the chosen language for the VoiceOver voice too. ([#7493](https://github.com/vector-im/element-ios/pull/7493))
- Fix the position of the send confirmation icon. ([#7512](https://github.com/vector-im/element-ios/pull/7512))
- Disable accessibility for emojis during session verification. ([#7521](https://github.com/vector-im/element-ios/pull/7521))
- Fix accessibility when entering the PIN to unlock the app. ([#7522](https://github.com/vector-im/element-ios/pull/7522))
- Fix voiceover order of room creation header and message composer. ([#7543](https://github.com/vector-im/element-ios/pull/7543))
- Fix: The last event description text color now matches the active theme. ([#7545](https://github.com/vector-im/element-ios/pull/7545))
- Fix mention pills display in thread list ([#7322](https://github.com/vector-im/element-ios/issues/7322))
- Poll: The timeline sometimes displayed closed polls in the wrong order. ([#7497](https://github.com/vector-im/element-ios/issues/7497))
- Fix a flickering issue when the timeline datasource is reloaded. ([#7523](https://github.com/vector-im/element-ios/issues/7523))
- Fix the position of the marker highlighting an event. ([#7526](https://github.com/vector-im/element-ios/issues/7526))
- Fix application crashing when opening a thread with RTE enabled ([#7530](https://github.com/vector-im/element-ios/issues/7530))
- Labs: Rich Text Editor: Fix partial text messages not being saved for each room ([#7535](https://github.com/vector-im/element-ios/issues/7535))
## Changes in 1.10.11 (2023-04-18)
🙌 Improvements
+1 -1
View File
@@ -16,7 +16,7 @@ use_frameworks!
# - `{ :specHash => {sdk spec hash}` to depend on specific pod options (:git => …, :podspec => …) for MatrixSDK repo. Used by Fastfile during CI
#
# Warning: our internal tooling depends on the name of this variable name, so be sure not to change it
$matrixSDKVersion = '= 0.26.9'
$matrixSDKVersion = '= 0.26.10'
# $matrixSDKVersion = :local
# $matrixSDKVersion = { :branch => 'develop'}
# $matrixSDKVersion = { :specHash => { git: 'https://git.io/fork123', branch: 'fix' } }
+8 -8
View File
@@ -39,9 +39,9 @@ PODS:
- LoggerAPI (1.9.200):
- Logging (~> 1.1)
- Logging (1.4.0)
- MatrixSDK (0.26.9):
- MatrixSDK/Core (= 0.26.9)
- MatrixSDK/Core (0.26.9):
- MatrixSDK (0.26.10):
- MatrixSDK/Core (= 0.26.10)
- MatrixSDK/Core (0.26.10):
- AFNetworking (~> 4.0.0)
- GZIP (~> 1.3.0)
- libbase58 (~> 0.1.4)
@@ -49,7 +49,7 @@ PODS:
- OLMKit (~> 3.2.5)
- Realm (= 10.27.0)
- SwiftyBeaver (= 1.9.5)
- MatrixSDK/JingleCallStack (0.26.9):
- MatrixSDK/JingleCallStack (0.26.10):
- JitsiMeetSDKLite (= 7.0.1-lite)
- MatrixSDK/Core
- MatrixSDKCrypto (0.3.4)
@@ -102,8 +102,8 @@ DEPENDENCIES:
- KeychainAccess (~> 4.2.2)
- KTCenterFlowLayout (~> 1.3.1)
- libPhoneNumber-iOS (~> 0.9.13)
- MatrixSDK (= 0.26.9)
- MatrixSDK/JingleCallStack (= 0.26.9)
- MatrixSDK (= 0.26.10)
- MatrixSDK/JingleCallStack (= 0.26.10)
- OLMKit
- PostHog (~> 2.0.0)
- ReadMoreTextView (~> 3.0.1)
@@ -187,7 +187,7 @@ SPEC CHECKSUMS:
libPhoneNumber-iOS: 0a32a9525cf8744fe02c5206eb30d571e38f7d75
LoggerAPI: ad9c4a6f1e32f518fdb43a1347ac14d765ab5e3d
Logging: beeb016c9c80cf77042d62e83495816847ef108b
MatrixSDK: 2f6222978156818cf4c6ba590762ade601ba72f9
MatrixSDK: 68e39c246ff8d80c5788d5fc46e93fcbb24703fa
MatrixSDKCrypto: ac805c22c24f79f349cdbfa065855c73a4c81b51
OLMKit: da115f16582e47626616874e20f7bb92222c7a51
PostHog: 660ec6c9d80cec17b685e148f17f6785a88b597d
@@ -208,6 +208,6 @@ SPEC CHECKSUMS:
zxcvbn-ios: fef98b7c80f1512ff0eec47ac1fa399fc00f7e3c
ZXingObjC: fdbb269f25dd2032da343e06f10224d62f537bdb
PODFILE CHECKSUM: a55fb48d3bef5f5e24fcaf8c39d1eae1ed8c1603
PODFILE CHECKSUM: 4c82d7cddeb9c9b7a7adeaa2cd76d416117cd1a6
COCOAPODS: 1.11.3
-1
View File
@@ -1 +0,0 @@
Fix mention pills display in thread list
-1
View File
@@ -1 +0,0 @@
Add composer suggestions for slash commands
-1
View File
@@ -1 +0,0 @@
Poll: The timeline sometimes displayed closed polls in the wrong order.
-1
View File
@@ -1 +0,0 @@
Add an audio alert when the voice broadcast recording is automatically paused
-1
View File
@@ -1 +0,0 @@
Timeline: Remove the matrix ID displayed when someone has changed its display name.
-1
View File
@@ -1 +0,0 @@
Fix a flickering issue when the timeline datasource is reloaded.
-1
View File
@@ -1 +0,0 @@
Fix the position of the marker highlighting an event.
-1
View File
@@ -1 +0,0 @@
Fix application crashing when opening a thread with RTE enabled
-1
View File
@@ -1 +0,0 @@
Labs: Rich Text Editor: Fix partial text messages not being saved for each room
-1
View File
@@ -1 +0,0 @@
Fix an issue where the Secrets Reset screen would open twice.
-1
View File
@@ -1 +0,0 @@
Make sure to use the chosen language for the VoiceOver voice too.
-1
View File
@@ -1 +0,0 @@
Crypto: Deprecate MXLegacyCrypto
-1
View File
@@ -1 +0,0 @@
Fix the position of the send confirmation icon.
-1
View File
@@ -1 +0,0 @@
Disable accessibility for emojis during session verification.
-1
View File
@@ -1 +0,0 @@
Fix accessibility when entering the PIN to unlock the app.
-1
View File
@@ -1 +0,0 @@
Add a flag in the build settings to force the user to define a homeserver instead of using the default one.
-1
View File
@@ -1 +0,0 @@
Fix voiceover order of room creation header and message composer.
-1
View File
@@ -1 +0,0 @@
Fix: The last event description text color now matches the active theme.