mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00
Update SDK 1.0.77 (#3578)
* update SDK * added new cause case * added historical message
This commit is contained in:
parent
c7afde3801
commit
4372048c61
@ -8215,7 +8215,7 @@
|
||||
repositoryURL = "https://github.com/element-hq/matrix-rust-components-swift";
|
||||
requirement = {
|
||||
kind = exactVersion;
|
||||
version = 1.0.76;
|
||||
version = 1.0.77;
|
||||
};
|
||||
};
|
||||
701C7BEF8F70F7A83E852DCC /* XCRemoteSwiftPackageReference "GZIP" */ = {
|
||||
|
@ -149,8 +149,8 @@
|
||||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/element-hq/matrix-rust-components-swift",
|
||||
"state" : {
|
||||
"revision" : "dfb54791b10d17c5e2604c716c8e939bed221435",
|
||||
"version" : "1.0.76"
|
||||
"revision" : "4e01a9482cfefae4f06c6f3a5a33d21a2bf73d84",
|
||||
"version" : "1.0.77"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -393,6 +393,8 @@ class UserSessionFlowCoordinator: FlowCoordinatorProtocol {
|
||||
analytics.trackError(context: nil, domain: .E2EE, name: .ExpectedVerificationViolation, timeToDecryptMillis: timeToDecryptMs)
|
||||
case .sentBeforeWeJoined:
|
||||
analytics.trackError(context: nil, domain: .E2EE, name: .ExpectedDueToMembership, timeToDecryptMillis: timeToDecryptMs)
|
||||
case .historicalMessage:
|
||||
analytics.trackError(context: nil, domain: .E2EE, name: .HistoricalMessage, timeToDecryptMillis: timeToDecryptMs)
|
||||
}
|
||||
}
|
||||
.store(in: &cancellables)
|
||||
|
@ -18,6 +18,7 @@ struct EncryptedRoomTimelineView: View {
|
||||
case .unknown:
|
||||
return \.time
|
||||
case .sentBeforeWeJoined,
|
||||
.historicalMessage,
|
||||
.verificationViolation,
|
||||
.insecureDevice:
|
||||
return \.block
|
||||
|
@ -19,6 +19,7 @@ struct EncryptedRoomTimelineItem: EventBasedTimelineItemProtocol, Equatable {
|
||||
case verificationViolation
|
||||
case insecureDevice
|
||||
case unknown
|
||||
case historicalMessage
|
||||
}
|
||||
|
||||
let id: TimelineItemIdentifier
|
||||
|
@ -153,6 +153,9 @@ struct RoomTimelineItemFactory: RoomTimelineItemFactoryProtocol {
|
||||
case .sentBeforeWeJoined:
|
||||
encryptionType = .megolmV1AesSha2(sessionID: sessionID, cause: .sentBeforeWeJoined)
|
||||
errorLabel = L10n.commonUnableToDecryptNoAccess
|
||||
case .historicalMessage:
|
||||
encryptionType = .megolmV1AesSha2(sessionID: sessionID, cause: .historicalMessage)
|
||||
errorLabel = L10n.commonUnableToDecryptNoAccess
|
||||
}
|
||||
case .olmV1Curve25519AesSha2(let senderKey):
|
||||
encryptionType = .olmV1Curve25519AesSha2(senderKey: senderKey)
|
||||
|
@ -61,7 +61,7 @@ packages:
|
||||
# Element/Matrix dependencies
|
||||
MatrixRustSDK:
|
||||
url: https://github.com/element-hq/matrix-rust-components-swift
|
||||
exactVersion: 1.0.76
|
||||
exactVersion: 1.0.77
|
||||
# path: ../matrix-rust-sdk
|
||||
Compound:
|
||||
url: https://github.com/element-hq/compound-ios
|
||||
|
Loading…
x
Reference in New Issue
Block a user