diff --git a/DesignKit/Package.swift b/DesignKit/Package.swift index 3d40cc3f6..77560275b 100644 --- a/DesignKit/Package.swift +++ b/DesignKit/Package.swift @@ -12,7 +12,7 @@ let package = Package( .library(name: "DesignKit", targets: ["DesignKit"]) ], dependencies: [ - .package(url: "https://github.com/vector-im/compound-ios", revision: "50bb7cf313bd1ad17201fc7e4c1184737a0f44c2"), + .package(url: "https://github.com/vector-im/compound-ios", revision: "71b0c887880de639c854600a9ada6b5bcc93c719"), .package(url: "https://github.com/vector-im/element-design-tokens", exact: "0.0.3"), .package(url: "https://github.com/siteline/SwiftUI-Introspect", from: "0.9.0") ], diff --git a/DesignKit/Sources/Colors/ElementColors.swift b/DesignKit/Sources/Colors/ElementColors.swift index 4862028eb..0808fa8bc 100644 --- a/DesignKit/Sources/Colors/ElementColors.swift +++ b/DesignKit/Sources/Colors/ElementColors.swift @@ -30,14 +30,7 @@ public struct ElementColors { @available(swift, deprecated: 5.0, message: "Use textActionAccent/iconAccentTertiary from Compound.") public var brand: Color { colors.accent } - - public var contentAndAvatars: [Color] { colors.contentAndAvatars } - - public func avatarBackground(for contentId: String) -> Color { - let colorIndex = Int(contentId.hashCode % Int32(contentAndAvatars.count)) - return contentAndAvatars[colorIndex % contentAndAvatars.count] - } - + // MARK: - Temp /// The background colour of a row in a Form or grouped List. @@ -45,17 +38,3 @@ public struct ElementColors { /// This colour will be removed once Compound form styles are used everywhere. public var formRowBackground = Color.compound.bgCanvasDefaultLevel1 } - -private extension String { - /// Calculates a numeric hash same as Element Web - /// See original function here https://github.com/matrix-org/matrix-react-sdk/blob/321dd49db4fbe360fc2ff109ac117305c955b061/src/utils/FormattingUtils.js#L47 - var hashCode: Int32 { - var hash: Int32 = 0 - - for character in self { - let shiftedHash = hash << 5 - hash = shiftedHash.subtractingReportingOverflow(hash).partialValue + Int32(character.unicodeScalars[character.unicodeScalars.startIndex].value) - } - return abs(hash) - } -} diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index e36c8e872..e449ea672 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -5607,7 +5607,7 @@ repositoryURL = "https://github.com/vector-im/compound-ios"; requirement = { kind = revision; - revision = 50bb7cf313bd1ad17201fc7e4c1184737a0f44c2; + revision = 71b0c887880de639c854600a9ada6b5bcc93c719; }; }; 9A472EE0218FE7DCF5283429 /* XCRemoteSwiftPackageReference "SwiftUI-Introspect" */ = { diff --git a/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index c3d2b528f..173b5d1c1 100644 --- a/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -13,7 +13,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/vector-im/compound-ios", "state" : { - "revision" : "50bb7cf313bd1ad17201fc7e4c1184737a0f44c2" + "revision" : "71b0c887880de639c854600a9ada6b5bcc93c719" } }, { diff --git a/ElementX/Sources/Other/EffectsScene/EffectsScene.swift b/ElementX/Sources/Other/EffectsScene/EffectsScene.swift index 76003387b..58f0e0bb1 100644 --- a/ElementX/Sources/Other/EffectsScene/EffectsScene.swift +++ b/ElementX/Sources/Other/EffectsScene/EffectsScene.swift @@ -18,6 +18,13 @@ import SceneKit import SwiftUI class EffectsScene: SCNScene { + static let colors: [Color] = [ + .blue, + .red, + .yellow, + .green + ] + private enum Constants { static let confettiSceneName = "ConfettiScene.scn" static let particlesNodeName = "particles" @@ -26,7 +33,7 @@ class EffectsScene: SCNScene { static func confetti() -> EffectsScene? { guard let scene = EffectsScene(named: Constants.confettiSceneName) else { return nil } - let colors: [[Float]] = Color.element.contentAndAvatars.compactMap(\.floatComponents) + let colors: [[Float]] = colors.compactMap(\.floatComponents) if let particles = scene.rootNode.childNode(withName: Constants.particlesNodeName, recursively: false)?.particleSystems?.first { // The particles need a non-zero color variation for the handler to affect the color diff --git a/ElementX/Sources/Other/Extensions/UNNotificationContent.swift b/ElementX/Sources/Other/Extensions/UNNotificationContent.swift index 6cbbbcc3a..025d67eb9 100644 --- a/ElementX/Sources/Other/Extensions/UNNotificationContent.swift +++ b/ElementX/Sources/Other/Extensions/UNNotificationContent.swift @@ -184,7 +184,8 @@ extension UNMutableNotificationContent { } private func getPlaceholderAvatarImageData(name: String, id: String) async -> Data? { - let fileName = "notification_placeholder_\(name)_\(id).png" + // The version value is used in case the design of the placeholder is updated to force a replacement + let fileName = "notification_placeholderV2_\(name)_\(id).png" if let data = try? Data(contentsOf: URL.temporaryDirectory.appendingPathComponent(fileName)) { MXLog.info("Found existing notification icon placeholder") return data diff --git a/ElementX/Sources/Other/SwiftUI/Views/PlaceholderAvatarImage.swift b/ElementX/Sources/Other/SwiftUI/Views/PlaceholderAvatarImage.swift index 1a81054a8..6433a56dd 100644 --- a/ElementX/Sources/Other/SwiftUI/Views/PlaceholderAvatarImage.swift +++ b/ElementX/Sources/Other/SwiftUI/Views/PlaceholderAvatarImage.swift @@ -33,9 +33,8 @@ struct PlaceholderAvatarImage: View { // This text's frame doesn't look right when redacted if redactionReasons != .placeholder { Text(textForImage) - .padding(geometry.size.width <= 30 ? 0 : 4) - .foregroundColor(.white) - .font(.system(size: 200).weight(.semibold)) + .foregroundColor(avatarColor?.foreground ?? .white) + .font(.system(size: geometry.size.width * 0.5625, weight: .semibold)) .minimumScaleFactor(0.001) .frame(alignment: .center) } @@ -55,11 +54,15 @@ struct PlaceholderAvatarImage: View { return Color(.systemGray4) // matches the default text redaction } + return avatarColor?.background ?? .compound.iconPrimary + } + + private var avatarColor: AvatarColor? { guard let contentID else { - return .compound.iconPrimary + return nil } - - return .element.avatarBackground(for: contentID) + + return Color.compound.avatarColor(for: contentID) } } diff --git a/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemBubbledStylerView.swift b/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemBubbledStylerView.swift index ecfcc6f89..52a8bec7f 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemBubbledStylerView.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemBubbledStylerView.swift @@ -82,7 +82,7 @@ struct TimelineItemBubbledStylerView: View { .accessibilityHidden(true) Text(timelineItem.sender.displayName ?? timelineItem.sender.id) .font(.compound.bodySMSemibold) - .foregroundColor(.compound.textPrimary) + .foregroundColor(.compound.avatarColor(for: timelineItem.sender.id).foreground) .lineLimit(1) .padding(.vertical, senderNameVerticalPadding) } diff --git a/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemPlainStylerView.swift b/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemPlainStylerView.swift index 2a1b6cf2e..a606ded73 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemPlainStylerView.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/Style/TimelineItemPlainStylerView.swift @@ -94,7 +94,7 @@ struct TimelineItemPlainStylerView: View { TimelineSenderAvatarView(timelineItem: timelineItem) Text(timelineItem.sender.displayName ?? timelineItem.sender.id) .font(.subheadline) - .foregroundColor(.compound.textPrimary) + .foregroundColor(.compound.avatarColor(for: timelineItem.sender.id).foreground) .fontWeight(.semibold) .lineLimit(1) } diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.analyticsPrompt.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.analyticsPrompt.png index e22e54e91..50f256ff4 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.analyticsPrompt.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.analyticsPrompt.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6cda15aea18a2778a6af274e253f611c97b5d61122d8144bae74e4336f32c040 -size 110075 +oid sha256:74a4010c19646147435adececd6b9658e5c311d65567680974531260d2af54a1 +size 110073 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.authenticationFlow.png index 202242c42..80f40852e 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f12629d5c5686e82cbe6ab3afc50a8c8e2ec4c5570975cda2a218e9670142f9 -size 78574 +oid sha256:8dd1a13e3e00a124d6027cf98805691ebb83e9051ddba9a0f81d72e0c7f314d4 +size 78572 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createPoll.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createPoll.png index bb566469e..a9ab6043c 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createPoll.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createPoll.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:467a21fa9a0d2a535887851f4ba65b91f106f38a1663eec31dd5b33ad4316fef +oid sha256:49bc0269e6ee23dd860ebe5aa28115500cfa09120db606c072be0f3831804294 size 89795 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom-1.png index e82102779..d78b18108 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1adf7fe7e4d93db487a70bb74e03a1c08b9e4f7c059688aa438501f0cf4440bc -size 134273 +oid sha256:165ffd65659a9656de2c121ddc796672bb7f8ecd11ba553801005668fb10deb1 +size 133345 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom.png index 6f50b7af0..2f32c7fb5 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:993e53c7f8152af6e9e35359d0d3bd8745f7427ca5f70039b3ff133524854dbe -size 136937 +oid sha256:120d645d2f85d639baea6e60e8e007889552a06ef9f387c12cfea1f70e1d5562 +size 135935 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoomNoUsers.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoomNoUsers.png index 5bed3b1c6..8d3232ea5 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoomNoUsers.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.createRoomNoUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c547c4d6470fc9c02accf3443f3a8c4815bc7b21d80fd76fcbd8664d99bba7e -size 115725 +oid sha256:0c7c2f77452a6014acae01858121ccd20618da8a5ab7b38d9551c5941cd62b41 +size 115726 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.home.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.home.png index bfec91f18..0ad88bc03 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.home.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:867e7d0fc7fe394ee9cf15ec544cf62524f0ea82a274ff8401592ed9e9d4797d -size 86767 +oid sha256:265f840451a2f86d2014d54aa84dca092f8ea017c192c1a3cd56bba3478e3e33 +size 87559 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers-1.png index 060553fa0..d74d8c237 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c0342913c7cc5718f9cf005440823d8dbb37ffa6db5b9ed5f21131d59524948 -size 108286 +oid sha256:214f8e9caf0d73019f8d1daeabe6f15732d748addca8039c8a9ef2c0ae528482 +size 108259 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers.png index 4300686e8..581c7374b 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f1b0f5fd44056635eb1c009d0ed3cd95c0c5c00132278780e286c4bbde53dc8b -size 98580 +oid sha256:3b6525d4723fab1d1fb4427a96af512549daaed89f294a0936cdf5b60576add3 +size 98375 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoom-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoom-1.png index 0e3ac998f..89b6c74ce 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35c228fbc1eb5555fd14c4c130f5424a18d852f6a06a3750b23561e7014a423b -size 109925 +oid sha256:2fcd3a8eaca6db796bbe59936cdbb9904d3ff6380cab78d9f3a8e4e4b4e9b19a +size 109895 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png index 2e5804821..3dae79cee 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e9bc5290ad51b9f39294d66e0c1f657bc2ec77080de20b691ea2fbbd44af43e -size 98911 +oid sha256:0d780b6b967316b699c34b80caf2d1cebc3b4c72e2b048389cb96fad2313398c +size 98710 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites-1.png index 583ca53e2..c869402cf 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e4394574235af7137862a98878b1b836b4957f2a361b0199da03605f0f5351c -size 195006 +oid sha256:e49bbbe61d205d61f97c5f75934f21675c1c10e7311de5859ecd67411a315b7d +size 194443 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites.png index c40b93323..0c074b5ac 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6fe9b4659c67141496a128c929607b159c0286ecdb947ac0ccab9213b58a610 -size 103614 +oid sha256:5a5a89bd5249b626c46d3eee34c6e75a1cb7a86655877520b6af86321e6f24c6 +size 102984 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invitesWithBadges.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invitesWithBadges.png index 735d23bc2..c74f8b72a 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invitesWithBadges.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.invitesWithBadges.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:803b9951218dda8991669367c27be7947bb4c0537cb34fa34de017fe06790d35 -size 103994 +oid sha256:762d72b3f0b38783d177f313e95a068fc4efce55c85fc4a05af80ea82f591a50 +size 103371 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreen.png index e5b045554..b1793f701 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b9fc8986e2a36e20975c4e4cb7eea2ceddb9f331092d5a84bdf608b36aeecb0 -size 92603 +oid sha256:274bb0078f8a151058043897f4e7bcb77e829707e8c79881e6055b9bbed6a9c1 +size 92437 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreenWithInvite.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreenWithInvite.png index 06b778b44..410a78aa3 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreenWithInvite.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomDetailsScreenWithInvite.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba1231592153758bb1bb6f2bf14cf6aa315817d9feda1596146f2a7702938bfb -size 98119 +oid sha256:5c0dd4d17f991a4b85159f9443a29c3174672a2c4a283cb6f99c74507d80267c +size 97920 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png index fcd1c218b..9671f8c6d 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:358a2617686f2f9d84e1a33ebd430da88ace4136aac703fde1d6051b8e3ba07b -size 283637 +oid sha256:71d3350be93957b08de214c83788e447dc90ae640c1c48444599fa2d0ce7784d +size 282978 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-0.png index a0f8e97c3..1443d05e3 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e496eafa0ac95918c2e4c3f99463a586f17fc4dcb8524c2d389063b2d64c1b2 -size 296789 +oid sha256:c4e1235a6fc359db5c947dae4078fa360caf79833b55a14bed9ae1192a5be8eb +size 295564 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-1.png index b6ebc83ae..71529b419 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutBottom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee807fe43ff2848c8200621db7e0a7283cf18b468ffbe1be5baa278a42dbd2fa -size 300653 +oid sha256:2bb16df5c41c7be8bfdf844845d3e4ff0d8bc40bf355eea0a47567b8b617ec33 +size 301740 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutTop.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutTop.png index 895b2e079..378fc7654 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutTop.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomLayoutTop.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a624a1e4d4806435325c450726a1d799c3c873ebc2c9afbfe48f0b32484cb810 -size 300024 +oid sha256:4e7dc1be431fe51694b1b963efa3d1c20ed2bb258cbd6573f917cffe6dc19cc8 +size 298808 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetails.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetails.png index 81bba6344..32a73d43f 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetails.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetails.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ea75e47b1a241150f5bc24049c79bcc1e5cd5714aa5f1d088986795477c6261 -size 75966 +oid sha256:85785ef5695faad84a691a9cd56f3f44e306429ecf7405f0ad250833ac0c239f +size 75440 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetailsIgnoredUser.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetailsIgnoredUser.png index d9b0d53d7..6719883cb 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetailsIgnoredUser.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMemberDetailsIgnoredUser.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:462ad7364eea5723177136ea42ac9d6e124b4fb406f94101086ebc8790e11ff6 -size 76852 +oid sha256:76da7318a4155c5618ee602900b01431a4027cf64baf4971c4e889fabac81a05 +size 76634 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreen.png index a5dd4dc28..4221ef172 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be8d5d4e028d57d27335d0e19f069f80aeee167fc0e1ca196a6f3c265672ed1b -size 75944 +oid sha256:2468008fdb0e9683ca484ad955db1aa40c68aa4662b900cf0a335fd6a4c8195c +size 75088 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png index c5f36dda1..9173ed5c1 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e6c5b933023e985ffb246c4bfadbc058cd7e99185555463139f43e25fc17aea8 -size 66211 +oid sha256:2a91052dfd8468914be68593b347f27394a669fd1d5ff3b0ae2680d2684322a0 +size 65669 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png index f8cae96a3..53d1e3fd9 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e27c2244341a7083ce5dd4b57350ba23ee9cad94a44d67e773bf18de5c111917 -size 86781 +oid sha256:0c9251a4c74b48fcc297552ce9a81813c5c07804a03bc37ae6bb358dd7fe3605 +size 84654 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites.png index 605af26bf..7f37819b9 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomMembersListScreenPendingInvites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adde130d9f02f69b774f4ef1e3e191f170b093c6f39ddc0b383997f7f8caf9b5 -size 78201 +oid sha256:96f0498150e63dd13409971f0917952eb2264ea6ee6f83a16e69f9c54ad67f92 +size 77336 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomPlainNoAvatar.png index 2cad5d03a..e538719d1 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c98693ba962dac15b0d1e0449494341b74b833be5e74d8519c743051de47f032 -size 283387 +oid sha256:a597d367df121ecfb256a0302860bbce4299712736c7332d33ceb996f1728f60 +size 282663 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png index 11d11552e..4afb26e37 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a3bb2f710d90e0e7d5439f781381328835db44af6b517ecfa24f83b973ba9e7 -size 122356 +oid sha256:1ddc932816c778d13560431de8b892ed88e03257f21a2459f74f689d8dab7177 +size 122085 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineLargePagination.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineLargePagination.png index 12981aaf2..38fbc79f1 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineLargePagination.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineLargePagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98b18e05bb45879e90ae45f7e790f57a6dad45038b749f2fe4ea8ee688bf7524 -size 295683 +oid sha256:2ad1ff3aaefa116340f1a1b41e266216c6fc72709e0756e1266e4b3d992736bd +size 294718 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png index 5be2f8329..0cfa15028 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be83a4f07c4a759d40bc927f0a57958eaf49e50d2ab69ca6052d5db5f6da7f2a -size 123234 +oid sha256:5f8d312435a9c1979e9869a458f44c3c00a0d7b7f8c8d09cb178e5ac4c962048 +size 121468 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithDisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithDisclosedPolls.png index 03832d9bf..f2ed6be59 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithDisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithDisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f916e649ef6b214a3d1cfad4359aae09a2a5e443d2fd7941b24774bcb41399e -size 165611 +oid sha256:71686cab957bbfe4a68318b43a85cd33ab09927dc947e4636767164b4c64ac07 +size 165464 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithUndisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithUndisclosedPolls.png index f2ad495ea..166a159b3 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithUndisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.roomWithUndisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba9eb42a22c444489f2e45c47bc4c754a1b62a60100e9edb2222fc66d2950c8e -size 162808 +oid sha256:2a7591243a894a142ae01f85799f5c79d3c40376df766f4770d9945e7a443eba +size 162656 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationLogin.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationLogin.png index 008dbb495..40b6ec620 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationLogin.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationLogin.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d758af2b7533e2afe8a4aadb11b987862c265be52f806bf9696a0837bf29581a -size 87560 +oid sha256:1eac9b4cfe334feb1f273b57b92b2510cef849389b693368ba834f8471d5e582 +size 87581 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationRegister.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationRegister.png index 4ffa447b0..9fa1bc970 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationRegister.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverConfirmationRegister.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1df079ff0e22150efde892fafbe84ce8efa52d7c87f040e97ed39253e1e809f0 -size 93846 +oid sha256:ca025e4247ab87ef0b7cbe8d78998ba00cfdf827c8deb0d8c395d4f2b52be4ec +size 93867 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-0.png index 152b08ffe..95c104b0e 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c787251ce572296392fe605054990eec15001b75ee4e7891c2aff6486016eaaf -size 97468 +oid sha256:93a16630875782087a817b51fb644b67cfc828e977a2bb60b6c64c655ddd797c +size 97471 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-1.png index 21a6182b5..8a355c6eb 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:631283c81955b66f90f5a15468ee80b19ef1c6062d68b6bff3239d5a0ead76f1 -size 169491 +oid sha256:7e5b45d9223294fa1d70069ccf755f15be970e15382ba2c07b8051a6d40b0566 +size 169493 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-2.png index 8adf48ceb..13f45b2cb 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.serverSelection-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0326f5e131e5e8863bf16b2390616431f4d8ca81f0761784612259dfe539910 -size 99266 +oid sha256:a03b1dd25527e0377bc517ac5e3be4b969d2d2573a326c3bb52a80213502bcb0 +size 99271 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-0.png index 58cc0764d..ef18f69dc 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35f8d045c4fdaa2deada0359e9a048e5fb71930bbc67025a4a888391f2dd077f -size 79933 +oid sha256:c6be4b01d5c1265f9c9174eb95f6ead8faeaa58c4c56c797960037973f6768d0 +size 79935 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-1.png index a12200714..664a44251 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5e079f2c731f90a837b3b1cc556d572c5eb02df9e0b85fcce9d62184edb9605 -size 81700 +oid sha256:973efef63d9c954f9625e13a13b4bc51c43b32b323749a14c6d86041c46bf819 +size 81706 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-2.png index f5e8934a7..c141798c2 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0eda3bf534334f2fd5867bb7b5f14f80d069c6ab6afc649b9fde1fa2b3b9aee2 +oid sha256:f976263f8c1e3f5b39b2ede158ef0a3c29859f5d1cf831c83d95afe26da2aa00 size 78881 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-3.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-3.png index 875f20e79..121cb521d 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-3.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:683d277021194d8d523ad52f098ab2f6c58f29a054f0640826ae28fe152fe84f -size 60258 +oid sha256:8f4ba8f8fc97a1b87b4468441c7d3b352fee81b4813ddb877b7b4463d0176249 +size 60260 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-4.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-4.png index b365daefe..833a39ba4 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-4.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:533f6d14b80dde6e788a9248130c3cff4d01df2c8a463f20c9b14ed384123839 -size 143246 +oid sha256:2c98bd3532015e24b865d29e90885f3e9d1109b0a3b7f0d315920046d54c6a65 +size 143252 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-5.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-5.png index 62bc487ae..929d49475 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-5.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89484af9412499786e1a1f81d3b1c9eea197dcac28d963e9f2201372647b6026 -size 140364 +oid sha256:29665eede8b90eaa93b83dddebfcdb4cddb3f1b9a3df1fa2de007338d7eed837 +size 140366 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-6.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-6.png index ace8c0ffa..efc2cd78a 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-6.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38176bf8047aeab5da0ebc11b27bab6d9e00d2037772a49281363370c13a3017 -size 78458 +oid sha256:e3624c44a42c2f9c0dcdf8e77d0d09cad28d9a0a7dc203b177cb345320daa52a +size 78461 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-7.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-7.png index 482863896..6cb51e7de 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-7.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.sessionVerification-7.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1614a41f9991619783accd5abbe8f95fb8333a789137daf58ed0c881c6f9e270 -size 79501 +oid sha256:b9e6ebec75c529456cae53ab7edfed76adc8c6557706f2783b5281acd488fc13 +size 79506 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.settings.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.settings.png index e051ea9b8..a1cc9707b 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.settings.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc23b1fe8559fd145298edd227effe614754d793c5109f2a9e7e19e0c1747a6e -size 120126 +oid sha256:def07d1e06e120aee1988eae5212f018be8437aa24044941c9b6b8db58d2324a +size 119392 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.softLogout.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.softLogout.png index bb112777a..7088e0905 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce3ec0860728f0ccb0643b1586e83b5f1cf10d63edaeb75a14d5acd73d874a4d +oid sha256:63fa379626aaa9cf674224a967732ec41ecc2ad18ae3dd18064445ced5b4a558 size 121681 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-1.png index 63fc64e77..c25f4f211 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b89c1c5792f74c6109c047ceec114a687c6e08deb451c61d4ebd2fbb1fab3973 -size 63008 +oid sha256:2e9be2c9317ad07053ac071b62149f6b9ff616ed421f8eff6843d425c9b0931d +size 76872 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-2.png index 138c20143..437b4665c 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71ae1f2a8fc0c3892519d570937d1357c9d86cd879720925162d717d6395b1d4 -size 78444 +oid sha256:eee980ce6d0ff452c706823cf658932c389d3c92f5312772a24bdc3320b228ca +size 89204 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat.png index 5f4f8f548..9d739c209 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.startChat.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:474cc3e9880e1210d02b3defdb83a0133a2bb378a6e75dc208ba5db162cad252 -size 108878 +oid sha256:4b39c405e7adb43ca43001873c229963751dad2031f3d3150be697a0040c02b2 +size 108858 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.templateScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.templateScreen.png index 8c60cc107..70b0a29a9 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.templateScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.templateScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8028144ace72558a2191de668a45a2e33e67012c8108c04d25445b4139d81092 -size 66099 +oid sha256:9d2f67ada9d67de06cf64cbb3db0317f6d9130399e5391920816b537803faae8 +size 66073 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-1.png index d564c2910..d4d5c257d 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a8185ab74026132241c02fd35d3efe9b8f4111d0041b3ab3f8748c92e1e36bb -size 145285 +oid sha256:688cb467fc96dfff19c39075cf9a87159c64d02ae5e556a9fe902f9332dcba7a +size 144003 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-2.png index 571c7c6f0..9133794cc 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fec5e9a805b65a713d320cdd86ec704f9466be0bec563f93050df2cfa05c3ac8 -size 332194 +oid sha256:b0b9778f6268538295037e6726f548ae9713af139d40077bcac5264d37724359 +size 330534 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-3.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-3.png index 1f653cc72..de03e66f6 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-3.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.userSessionScreen-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7d0f4cf385da3bb4192f23ff3863666be0f3ac30b015929583cb0e2d62dfaba -size 402274 +oid sha256:4c77d14599ea65b2580f5a0600645c5227249e5e203690670f943819afccf30f +size 400253 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.waitlist.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.waitlist.png index c3cbaac65..dfc1d4190 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.waitlist.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.waitlist.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99710fb79e6a3ec46116249dfa10fa7f76e4d260f55ad918706bde3f78e44abb -size 718895 +oid sha256:a99605f86c136a268bd184bcfc73507a2d54a841d01d7bd872d417ad25403344 +size 718898 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsPrompt.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsPrompt.png index 23e872b02..556c156e7 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsPrompt.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsPrompt.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de8176c7872d2bad953281bc35760c04f729a8f503ab833f515c29817a7cb43a -size 130547 +oid sha256:39100391b735cd202d5fd4d05302ead2d89607f210cdf986fb184daae005add5 +size 129203 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsSettingsScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsSettingsScreen.png index 8dbf381f6..852b6e9d1 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsSettingsScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.analyticsSettingsScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cee7780c3b1110911c4de1f35b9ead6e36b10992c0a8c59b1fa5a87d43cdb5e2 -size 87879 +oid sha256:2f24b356237f2019ae8f4f37ffe6e17b3b3c2cccbd1c815a65bc53593a473a6c +size 85859 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.authenticationFlow.png index ede162700..8b60cc675 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bae9f63b677a58ebf951c54f84947dd312e49cd8cce50f065842973d7e983dc1 +oid sha256:d685c1db62816bfc9b9e43f510981c13f0f582e6595685231679d5e0d1aea56e size 84899 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll-2.png index 498f7ba1c..c6ae7a158 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f425a4f8ff36e11084da41350cc5ccae122be06cac59d1e9b03adab4f1c50d15 -size 308853 +oid sha256:aaf56b99ecc5b57d4a22a4c6fbefe5eae6e731c16794ec528072e0c5695d26eb +size 308849 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll.png index 2fe40fd06..3534728da 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createPoll.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d07086d5750c676a1f935366289bf803ed50cd2d83e962227edb50e4be432cf7 -size 103803 +oid sha256:08badf82fe902d28e5b94cb64b1e018039febf8c440aa9bcdf20278c2c85d0f0 +size 103798 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom-1.png index ffd314367..6f079b0ae 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4929f3ce29fb35995ad9202b6f8cfa0e8995ab422699335221762691143e2c6 -size 176059 +oid sha256:ab50fae5e79a4ed8ddb2a118871de9fec600c68e6fb80777c0c0856419f75bcd +size 175004 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom.png index 44f27b64a..a4c01bb9f 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16f971ad5128308c6117ede8a3665d6f64c1fa0face8e00147b7b94db958ef2a -size 182632 +oid sha256:cdb8bbea4436bcf2239bc6a164d4b9a50a1feefc1f013b5c8967d925266e20c9 +size 180771 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoomNoUsers.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoomNoUsers.png index a2b56bebb..87719e529 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoomNoUsers.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.createRoomNoUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e91f61c3b8c5f6068e0ef60677cd7ce8c9d746bcb6af13cf1dd089b097f2b55 -size 154443 +oid sha256:31adc6a54ba0d2fc04e1c76e1162cfb023f6363f4ecd0fe517bd9b373abddbd1 +size 154441 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.home.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.home.png index 6c77b9417..a7deac194 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.home.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22ae67dc691d9dc9e9b12b709d8e2ef7bb10b39e2d41dda7bf78fc845328fbf1 -size 90664 +oid sha256:dfa221b76563554d46bf5d5fae1e399019876e37a4e8bb37561ee476e121cc01 +size 91837 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers-1.png index 05b35b9f8..54927a279 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31addcfeca8e1ba9238c356c2155d8e60ffe13f6efbba889ce2ca063f99de1e9 -size 132700 +oid sha256:95f5c45062a79206c3cbdc1d078c3a8e2cc2fe32e2f7d69da490d9a341b2f100 +size 130243 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers.png index 2ca60d3f9..1bd1d974a 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfabba1a216776ae05ff193c326dd69df5094308fd451d701dc7ba6fdc6f614f -size 115471 +oid sha256:424c9cb13f232e17df297870c384b6fab7aabfbb779bb953a5eef77f136338b5 +size 115310 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoom-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoom-1.png index 85ade1c70..0433b0c0f 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d2b5f1a370954d48739b92a035228f47d5aa4bbb69cec4e65b39f95005496b8 -size 133286 +oid sha256:57b10e265226b2926bf770dd8cedb6654cc5d87ff1ebbaa69afeb0538f4691b9 +size 135228 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoomExistingMembers-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoomExistingMembers-1.png index 238015e00..e552bdb19 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoomExistingMembers-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.inviteUsersInRoomExistingMembers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ccb12a73d8081f75cc2fef7dd10a8e4665f06b506a4688ee84e31cce47fb223 -size 113265 +oid sha256:c606925ebe12261907e9311107ca53075fdcd021746653f37a21f54c9ea29ec1 +size 115134 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites-1.png index 540285a5e..0ba2a118c 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2da22017b81a6800f23f8d8e072710158bea64e3855d629c2ebd16cf949fcdc8 -size 378366 +oid sha256:32e32139c0967253a8e19f74337bf68f929c0403ecd2652008fada2410e0013d +size 377556 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites.png index 817ceeb1f..8dbecc82d 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06696bfeb0f9a758915f3667e56a7079b1a0872e5dcbbc798777697ffbeaa154 -size 123300 +oid sha256:2da113870b6aa5b9ddfe5f98fa44fa38dd389b25ba11edece3c57cf75df60369 +size 122314 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invitesWithBadges.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invitesWithBadges.png index e0b576517..7859376a6 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invitesWithBadges.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.invitesWithBadges.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6bce9b4f4fb3402f87a71d5671404657a6e90b916c6048b092e06cbc70b348a -size 123808 +oid sha256:b048dbff6029ad5a2d92b66b75fae74a63809e5542740d93d1b37488e4a0cc49 +size 122848 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.login.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.login.png index a81f7763b..c7c11cb71 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.login.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:625dc1829aa70663f561a323e9747342286e20b4278609350c5cbfb1e3b6494b -size 82757 +oid sha256:19063e25a802ad7787f91c77e3a5a5556986c029b93da2bdf99fb372b4080fd3 +size 84104 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.migration.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.migration.png index a9961ab61..b4aa3117c 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.migration.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.migration.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb11ec64209cf5ff6ba8c89883179a2b19b1bffc5f4123e475a8854e1a9a35d0 -size 445100 +oid sha256:a16d4694488603b5f3c7c2fbb9753376e546534dc9ce8496eed2710ff6cc52a5 +size 444000 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.reportContent-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.reportContent-0.png index 38ce6d46a..6c028e741 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.reportContent-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.reportContent-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc55ae0adc15b48788ee406d0bb425441744f11a3dc3f8cd5e8f0eb9180aedac -size 119435 +oid sha256:5da0278e6f66d058066538902ed5dd8ec79109642fe9b476f526e02700ed87c9 +size 117415 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreen.png index 43201833e..77f55f5fd 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c074fc387e5d9602cd8190fa5697af2dc0ab2660d2a930229b07ff3d15662a4 -size 114440 +oid sha256:8d6b82a9efbadb6843638223aa096ae2c4236a915e7c4f2fab4c88f28d235b43 +size 114023 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithInvite.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithInvite.png index b89f31266..2623b2bf2 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithInvite.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithInvite.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df987fbf67919cae3eaa9c767796ed51d3e58459dd421cefff0084b393e37216 -size 122485 +oid sha256:5c2b8fd204bd3615c4d099768079a3fae28acc3f8c0668b4b3570f2d30f81226 +size 122067 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithRoomAvatar.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithRoomAvatar.png index d550c1e1d..298f1b455 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithRoomAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomDetailsScreenWithRoomAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81a321deafd52084901be8907e16b6c9ed1f985f986afcee4b1967544a25199e -size 148265 +oid sha256:0b709af1401cfca7e76e8d5775db127d794beb7b5a0b816a78ebed8bdb2cca89 +size 148719 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomEncryptedWithAvatar.png index f37f3c6d4..f04dc3707 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c79c71e4a02af6471f9ff3f1ae738864b2d0488c8ea7a71122690444356ab0f -size 370593 +oid sha256:479c95e33a7af1849312881d26d7f0a6a15662bb57f8039277f979202d1e99a6 +size 369643 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-0.png index d11fed3f8..8a448898a 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03e4980124a8875cad8a734873fa95b12c9dbf87af6faa72e586aed4d4bfd4e1 -size 304341 +oid sha256:0fbed12543169931d9c8570620eaec649dd9ed351679515da0bfc93e162fd74a +size 302768 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-1.png index 36d9b0cdf..4d317bae2 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutBottom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af8d8d92782a38f0296841ba8b8100537bcfc69f7cfcf59b4d23eab96a5e84e6 -size 306418 +oid sha256:7088c0cd2836196515ee1fbb8a1eb464f418ac6fab865190c781f689fa6403b6 +size 288939 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutTop.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutTop.png index 0b3506122..90b0cccce 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutTop.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomLayoutTop.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5984c652e6cffc37e0fa86e2595b1a3150a8c3b48e09af267ab25097249bdd51 -size 307306 +oid sha256:f34bced7ed19a31dd2d7fc6930cdec68fc39f339d429228d5e694c423a0a06d9 +size 305973 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetails.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetails.png index e20328b2b..74bc3f1f2 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetails.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetails.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a5f6d3ee648baa5e2abb2f14cac938a9d8f972c830d1426f2d4a3fb3f6cd965 -size 86273 +oid sha256:bc305177ef9f263afb29691784f5c40961ac21b2f7c591bca405d2d76387f842 +size 85474 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsAccountOwner.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsAccountOwner.png index 85699083e..cb55b6a6b 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsAccountOwner.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsAccountOwner.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c2bc3553ddb135bf03926e3740e2422e5f9b9bc639e470357a2b94dd34f4ef1 -size 73353 +oid sha256:2b3a36ba84e60fb79550b1f40c8425dff1051f13b54c4d40088e6ae010795372 +size 75373 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsIgnoredUser.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsIgnoredUser.png index 371cb9c76..068ea190b 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsIgnoredUser.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMemberDetailsIgnoredUser.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f712d611fae7a30fc18710e0b8128a7861a77c0bfff19548677c5d131e7a022 -size 85801 +oid sha256:f3655badd3effec1b631ceee3bcd3d6f945fc17af5537694b01a619dab13007b +size 87714 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreen.png index 19e03d077..3051e013c 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98dc0e2843ca313a638060e2c37452b2cd53f96c6ce05e0d6fdebf218b87e447 -size 82436 +oid sha256:2e8cfdcd28ab441b98be4170dadc88d8d266b946f950969f9abf1a1451059347 +size 81010 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-1.png index 877e56c82..62f82a824 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ac78d703543bc42eaf5359f74be140187c4e310ea4ee375044584cd928b314d -size 66999 +oid sha256:a7ea0b877736281d7fc9cd1070cc1b579419c0a0b83447c1169e34300d922e80 +size 109987 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-2.png index aced6c8da..abbbcf2b4 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c664d105dd9b363226e77aa6105006b68ded1361f9a5bb2a94e2fae87f9c635 -size 66241 +oid sha256:3665a5674f0fccfd75002ab9917448b8928a8643af1e5bf33b8dee75d1868b46 +size 117023 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites.png index cf7857763..639be0c79 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomMembersListScreenPendingInvites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34c4a5c036e8a3fb758913aa0984ea787a0524c0cc3048bdb1c84ab6f72da4b4 -size 86497 +oid sha256:81f3da0d16d68db3689ac1b60fcf8e7671ad842a01e38fbf4ba5b98c40235419 +size 86455 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomPlainNoAvatar.png index 23ced96d6..fc71aec81 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a50a5619f0d381dde1c6ab162769b23785c9984d44c42df956c6104ea08aa35 -size 370162 +oid sha256:cc8045f067fd71cb4e693c6460b4cc04bad776b7ab675896529d2896b73b86ce +size 369347 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png index 646169271..367e070f8 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47b1a4de38896780fafd5557688f9797374b30a970e75efff01280a1b06bb3ac -size 191806 +oid sha256:1b4e1a2e6c0fa99a1dc1a549822a64e8eab0c83d8977efde95e3f30b8a7a956d +size 191203 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineLargePagination.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineLargePagination.png index bd9f43a09..738799d56 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineLargePagination.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineLargePagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:519228a018d16b450fd1fb4d1a369da4c9add59a84ea415a3c1f37c85c43dee3 -size 317437 +oid sha256:4cd28d159c39dd2d945f4970fb71dd95fbefb4a36f93149c32f2979ac8b8c776 +size 316421 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineWithReadReceipts.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineWithReadReceipts.png index 82f8d206d..279f7b8d4 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineWithReadReceipts.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomSmallTimelineWithReadReceipts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7952e8a11dd1e5e917295d81a070a59e6d0a69526f734701b01e45ac026a989e -size 188586 +oid sha256:889ef51dd39c6e0816a2591e04f6f8412ab633f0f0f0cfd03865fb29ee6f60de +size 186235 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithDisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithDisclosedPolls.png index 98c7755ce..55b8c3c72 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithDisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithDisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e4a01d29d42876e8dc0890d37f3239266584d18add028f0570700be04cef229 -size 256661 +oid sha256:6d6f1ba20ba8b4f4105c99e22f3e2a05ded1779f2e89e1368a6976d4038f801e +size 256560 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithUndisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithUndisclosedPolls.png index d2b49bf9e..e43711473 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithUndisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.roomWithUndisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85d64fddf62d7d937db31cc6ee414b17b0a4351fadb09474912ea1b5738fd962 -size 253510 +oid sha256:c171ab518ab414b0e5f1bfbc5c1dea0bc4b5758946313d1f35b468a0a4e842d9 +size 253524 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationLogin.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationLogin.png index dc13059e6..22ff0609b 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationLogin.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationLogin.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4aec613240d5033f25067ec367e1b9a85d063eeddedbd0c2d1b5052322052f83 -size 102178 +oid sha256:5f841a1b40adde1c4ead5445afa85abbfcdcdb5569f6e035794cd19d314f6773 +size 102156 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationRegister.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationRegister.png index 3252005f6..bb5fcc049 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationRegister.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverConfirmationRegister.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8822d8eaf50d0fbd8002253ecff1eb0d383fafaae955a079fcc05ef0270699bb -size 109264 +oid sha256:833b9d079ec0d52bad08286c3e9a5e68015a57aade6db1c599c7d33740e6572d +size 109242 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-0.png index c06081c93..2526e5e77 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ccedc65bb1754aa3cb3479832d06e9910cc9313ef59a83c92dfa89f7b7cc9d19 -size 111841 +oid sha256:b68d722e40a88bfdc2fc8b0cdb21c5348ca7471440239e099127b0d785b7cdb8 +size 113322 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-1.png index 9f107a315..a0cc1fe63 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d132f0df2dbd7c5b3e63280120c0cc77a0b7cda5660074f283ecbe5986396a4c -size 174357 +oid sha256:13bdc6d76c195d01db4be4a3eb4cab8f8cebbf84da6bef4916cd5dd8e14a4aa7 +size 174360 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-2.png index 3c7261307..4dbf18fdc 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.serverSelection-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21401400c6b3e0fb576210a1fb95e8b7f111421807736cc38e736b399d448995 -size 117166 +oid sha256:df4de938722bfc5a6078e8aa47559ab4e077b1b5a1cfbb74a153e81e9b645601 +size 117170 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-0.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-0.png index c62ec5efc..bb9093938 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-0.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acee85ef6be73b8928ce4fc9658b23cc553a7bec23438839dee9339d2b185c0d -size 89739 +oid sha256:12dbae3a4490a9b576a54494d8b6402a09ff8654f039b2bf2da982dc2072d5a2 +size 91039 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-1.png index 08a2d097b..82faeb7e9 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec07af9b63c10b8448168371e5866aa0264b01d12ebd847538b21444ff796cb3 -size 91718 +oid sha256:085883beeeb279861f1c22eab3ca4263cf9363c464397054bc17ca4cb5bad3de +size 91723 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-2.png index 00ac1403e..494c92229 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b69ba1635605e15bf1cf0e1e243f4d325538b082bd3faaeeb44a7e1b0d2b2791 -size 86442 +oid sha256:ff780220312dd54f0d07f2a19da2f3b76e513ea956eb842333e174ea8670b032 +size 86446 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-3.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-3.png index 7a6f05d9e..1aabe54d4 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-3.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd91f23ee0282a36a9c3752b8029f3cd1feac341af1e8c462f07d1bea8e4f833 -size 59847 +oid sha256:3f9c0b53095119df69059e2cab883c11661bac0ae0062ec2bf3152e00d5e2004 +size 59850 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-4.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-4.png index f5fe7222f..cb4e9aa35 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-4.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:622bbebec4deae5ca41b44fe1e4f6b83d57ec65cc8df69a03972401cd5a79703 -size 203263 +oid sha256:aaf2ead3e0bf7b9a159fab9b2448316bf71e99b70d6049956167e0ecb7d29c32 +size 203273 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-5.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-5.png index bb70711c2..fb1b206ea 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-5.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:513070adbc7ef2b2f330fdda89b300e72fc5f38b4479a945de5bea8e43f19226 -size 200241 +oid sha256:b868975a23e1223f2cbb8ed6de92fec2084bac454c329fdc8380c9ea08767805 +size 200244 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-6.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-6.png index d99768282..b880b9163 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-6.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcf2dd9fc52b225ed6c8b75355867cf100099801073b84fd588774b5299e6c51 -size 88584 +oid sha256:f25c8db6cf6257d0db349f3b725722f5c874693ceeb59669d1ef3cedb8a0864a +size 88585 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-7.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-7.png index 4c317d6a3..369b8a044 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-7.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.sessionVerification-7.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e22c92a5b7719480fcf2fa48dd5c6d614e0cb9e5c795eb46a814cdec60bbd49f -size 88973 +oid sha256:15bf8ac4b74a56003beb5bf63621b921f2eec1c4d9c90a04fe9cca68abb42654 +size 88976 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.settings.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.settings.png index 19eb3b170..6ce10f8db 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.settings.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6d8a57c11b416900758ac53ebf2e4b5e27a8789d271d6a01bcf2e085dc7c0e8 -size 150622 +oid sha256:79777f9421513a5d387bb3cc54ac35da75a8c3a1a6dafcaa064dbd9abe288ab7 +size 147694 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.softLogout.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.softLogout.png index 06260f029..7ee472267 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a63ff8827f572aea21bcaccd4983abdf2e739c3d20dc7ad3324491e3422776db -size 156924 +oid sha256:3e59c57105766ef1591b8a02f4f0a5cf4d9029dffde8204f0c4ca024d73fd84e +size 156922 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-1.png index 4064bf126..0bec3ebed 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7b25fca658e3cb01fa2a3ce71fd11c7223f5cd6edb1c6497661210b0571fed4 -size 86222 +oid sha256:df246c673d189c6c2b02f9f3f31ec6bc2999d46cbc18ab77a8567beb436b34d9 +size 62309 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-2.png index 77c75abee..f894e5ea8 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45c761eab95b053f46ff67de90809829504df808a8902ff0c49c6dcf1e5f13c8 -size 111470 +oid sha256:9b21f94e2e3bfe7129e9913b0b3bf130f59aaddcb448495479130735af686559 +size 100150 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat.png index 21c5f9b36..5ac4097c5 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.startChat.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fa2a566423073cfd8910c86ca5f11311a46d27bc5db23ec856e728e0ed478d51 -size 129533 +oid sha256:ba5b1d1b509967ae68eedaebc953b8baa3c6eeaf1b861e3bea25d25da94bf244 +size 131664 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.templateScreen.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.templateScreen.png index b54d0bc6d..caae56e70 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.templateScreen.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.templateScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c48aaef513925827d7774b85fffea975d9ffdc043cf51bf9b5fa9a94726828ad -size 69059 +oid sha256:cd9cd24f041609a9426401aae2c4f5c81658ec7445d506d0d48f0d213c3042d0 +size 71075 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-1.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-1.png index bab43d87e..a01a8ed16 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-1.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:603b989b8cf85665feede8daa3b77d861ffb4655b75e97a92b6fa7fa9b75f586 -size 129689 +oid sha256:e82f958962f07fce1075b72f9160e253989e2042a7707360ae28393a5544ccbc +size 128129 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-2.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-2.png index 0f268068a..d8304a684 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-2.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7d529fc95c8a5940b8088c100c81bf1cd943993715a6e21c3183ef95a462219 -size 302930 +oid sha256:2442962ef8abcb2cbebc3175c5bb296b4db140ef85115d421c940460e940b45a +size 301766 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-3.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-3.png index 794b111cb..cd7bce53b 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-3.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.userSessionScreen-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75569dda6ad0dff2f01aca99a2b499f726391ad4d5d1c8fbed252981a1b1554b -size 274775 +oid sha256:d5e8e9532d78545b9e44ba0107afc4b30f976244af9ab22a6c6ed085ba12f01a +size 273943 diff --git a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.waitlist.png b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.waitlist.png index e80a796b4..b402307f1 100644 --- a/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.waitlist.png +++ b/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.waitlist.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc6669feaa5c72bc5eafa0219895c6d7c8ff3d54e77ef41d5b4947016b206a65 -size 465131 +oid sha256:014cbe2d950534219a1c5fd0d55e78dc32ef741fa34707f2084fbf37607d946f +size 465133 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.analyticsPrompt.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.analyticsPrompt.png index f9e401f6e..3e2826d14 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.analyticsPrompt.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.analyticsPrompt.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ececa6b335a748c94db390cba369a3eb11fdabc55e8eeb63a9c8ba3e6ff5d75 -size 138752 +oid sha256:697a86848547c1b3601cb6f30cd52b5f1b89eabbf2337f07f4bb5eca4059ab9d +size 138751 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.authenticationFlow.png index 66315e74b..b59d4902d 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d06f91df85c7ac7d17340560723f854d188a98a45d8c69b9b07f8d1c9a0f762b -size 81998 +oid sha256:8559f4f8f5a8cc90a15bb8ee2838aaeff9b9da2937c0c2873d03e874af10721e +size 81994 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createPoll.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createPoll.png index 394914ea8..d4751043a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createPoll.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createPoll.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9bb7f282056f9db7bc3edd8c9be0493d9252b407800ee6214da367b60eef5867 -size 97972 +oid sha256:e4538a0afc6b1c8e04563ed6b780907bb79e9711c2538ab52347fc207b84feb3 +size 97971 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom-1.png index 9227f1c1d..f76157552 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:91699855e1f46a4ba68b259836e23ed70fc41b86c39f78721f2966c998ab7a59 -size 158346 +oid sha256:70f59337e1f7bd561d28969a4bbb5bf847c5adec0ec3176dcde85d2e6c383ce7 +size 157210 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom.png index 407654d95..d2fabdce8 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e5b25d4361c55d6319e568fb42d22f25c3664bc69d78583e2b4dbec17473fd4 -size 161923 +oid sha256:2b2fd8d6eec0e551760895b8f25835f64413d61e96cca3007e04cd593798f4b4 +size 160823 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoomNoUsers.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoomNoUsers.png index 5c405ffd2..2c79e09f2 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoomNoUsers.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.createRoomNoUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dac118af6b481d433e9ac80616320bbd73f61eafdb450f42aeb800d4ba62b84e -size 139786 +oid sha256:d3c681d0cb0bb8da3d8d6210b9e0433ebadacc20d106fab5f3f9676fccd948ed +size 139791 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.home.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.home.png index e6ac9cabd..65a1fc345 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.home.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45d3ac8af71a53994072e2a69d5656aee0d7cdd19138a8e8179c1f157d9f3e2f -size 87548 +oid sha256:27d8006da25655ccd68aaec441ccdd964e2e931698e76dc775371f21884923f0 +size 88345 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers-1.png index 09f9b9f90..1e18256d3 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ba50fad356e76a3dd287f9bceb9b390bf45c62a3b3116f31bdcb55dd0f73963 -size 110456 +oid sha256:6a19aaf08fb9f2e1d103911f350ba0d5e6949ac45c51f71461b6a8188c5727b3 +size 110404 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers.png index aa94e025f..6481a1e28 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f18aa4cbd7c7cbe4cbb691a8d3847eed7d6cc497d5ebebfb7b462452d77ddbc -size 100873 +oid sha256:a67b425b5adcea41ed6fc90620ccb547d913850c9bfeb2cff5f353e58ca53156 +size 100666 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoom-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoom-1.png index 96eba9110..f8aae473f 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c50ec3bc473dadf20a57f013fc057acf6e256b4c7cdac47bd466c35237c4d364 -size 112444 +oid sha256:52607d58796c7422a0fd1ee26b036f763dfe12ff692a4c9a07dcf580124d6c74 +size 112395 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png index aca349133..fe811f19d 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.inviteUsersInRoomExistingMembers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d4a916f5506d9b23f25e54ab23bc7cef083b525cd471ca432c09cd3ce615819 -size 105057 +oid sha256:51aed0797dc6816123c20edc2a337c04adc514c2590649f57e9e6e95a350a2bb +size 104882 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites-1.png index 8bccc938a..1e8901284 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f00e665304366cb6f00f94697a23c108084ff81fa6925307ff5aab477e0946f7 -size 249842 +oid sha256:aae4af167bca33526abc3ed3945df0ab4ad5cad0aeb187c9dfc504b3ef1c723a +size 249247 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites.png index af04ce6ce..1a74da969 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68df245adfb442d8dd5194b5f1d948e77b14002e24cc5151a8bc4d7f63f81846 -size 108633 +oid sha256:3172d239ffa58db54410794f1a5d1b607785aa86e474a0cce11c7029cf64e066 +size 107973 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invitesWithBadges.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invitesWithBadges.png index 9cb86faf8..cb3df798a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invitesWithBadges.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.invitesWithBadges.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b4bf3fb11e5d6b35aa18361172d2c7919a6dd8a4733e34f667850f10129d6e5 -size 109000 +oid sha256:6d1e2ba70523a063dd50e351556124ee7c898249acc995d21e74b4d35051f557 +size 108355 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreen.png index a44c50487..3b0ffb7c3 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f6ee652a9eab0203f0cd6878d6bb5adb6d23177b3ea48e9b73043783b5b68d0 -size 105449 +oid sha256:9d815b977d8be31b87684c610da757e2e8389ccc9e82070867f58337f2868227 +size 105200 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreenWithInvite.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreenWithInvite.png index 44477a7b4..df7b2d7e1 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreenWithInvite.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomDetailsScreenWithInvite.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e791c5c530f41afc2d69614b58840c5e69fa77e2aaf822ede85878bfde292d02 -size 111094 +oid sha256:7e35677f4a0c829478d54339f4937825fb54ac6bb9804a31e0a7ac9b34b9779d +size 110976 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomEncryptedWithAvatar.png index de54ce87b..b3f5c0ea2 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d337f14708ed262fbc7dcf3fe00d52e4725f88fb4eee94dbdff59f19865c7e4 -size 284644 +oid sha256:8a0a410bb4b074df029f5e6b4f809005247b421c3467922b2cfb76e30a2d7d49 +size 283982 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-0.png index 2db77b87f..47636747a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8d0efa6b8c50bf1f39bc2731fcadadefc80e510c52357072cfdf320c40def40 -size 297223 +oid sha256:b4ca019cb350574898520b1b16403bd5598e544c88b041b7e9b85e6c5466e0c7 +size 295998 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-1.png index 23cd94b71..2a884ff0f 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutBottom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4244da51e14da5807a0f2dcd334c76c5f656fe8afc47e7e3d6dcffbd26273b7 -size 303147 +oid sha256:ded1ed214da1c744928f204e4f183afe68f3f7cb37047c4f3e6d20fd3cdd6ef3 +size 302351 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutTop.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutTop.png index f0aad2f15..9f32c8ea1 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutTop.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomLayoutTop.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61a74b7389a9fdcd8de5d7de67762ca9d8be601b916331f29b343dd5996ac57c -size 300420 +oid sha256:32596dbbb3bb6d20646db2afd9d0eb16d2b53fc8d1b71b04f8b6a106a4e9f5b8 +size 299205 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetails.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetails.png index e355ae877..697b6e236 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetails.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetails.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9061e558997c894f906936e942485c203cea031d9f90cc7bfb17c436240d84dc -size 76916 +oid sha256:69943d16ea3f20799f5b30197a24d712852168316a0a8aa7422f464205f06d51 +size 76422 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetailsIgnoredUser.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetailsIgnoredUser.png index 9f9d24b60..8c0d0da63 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetailsIgnoredUser.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMemberDetailsIgnoredUser.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a7da3250a3e9e5a3bb7ba1fc333ae44a752cd27052cd6bfa5b31d1baf87858d -size 77829 +oid sha256:7709f2bd95eedaa8ec4b2294bc6c99139391d6acf224de1973fc09d76225ae21 +size 77641 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreen.png index 0735f844a..4022ac124 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e32157408aae2a18cc570b40da05ff9a512eb5aee3eaa67aa3df2152c4781aa -size 79574 +oid sha256:5819befd00b73dd9a6a68617c55cd8b9870c35a3251be2aa344301a89ef82dba +size 78706 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png index 8f37baee4..8d91aad9d 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab88ce487c480683cd1e8002d4ecd49ddc9293d438857828b87a3bfdd0c6708b -size 66893 +oid sha256:e0812122c3588a8fdb8a059a06bb49216f56e51d2b4e3f506af34c355faeec42 +size 66355 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png index cafa46491..407d5573b 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b082fefdbe4efca141cc29a3e4a6bd455cfe8c189f51fb6f5b26fb06b7181423 -size 67953 +oid sha256:ef7f543d2adcea2313d123ce142009505ff69a7ed7a01ad4535f49a39f1040fe +size 67860 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites.png index 8515699ee..ae57d1fea 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomMembersListScreenPendingInvites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e09d3089bc986eacf89659e47746f35db5f20846fe86a82206b89a3aca0d8bbd -size 82203 +oid sha256:7177b048ae02abd281c59023196b1b92b9a117c9331a410271ab6b09b98afbb4 +size 81332 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomPlainNoAvatar.png index 5e4fcb026..61b18e18c 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ce9b4baf85635d32ca6b343225fdc13316b013015a076bf3f4be926f470fe72 -size 284402 +oid sha256:df68739c4b2f112ad95ba3f0628192e4d362a70bfc3bb95c542362e82af0a556 +size 283671 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png index 6acd45711..182a0722b 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineIncomingAndSmallPagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09182ea2dc4fb7c416b8c74a7de44ef83956e7434ad7d7223f854dc78e18dcdd -size 122793 +oid sha256:a486897b867be562e6985f8498241df36a5ffe25cdfd9e39522d85bad114f36c +size 122528 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineLargePagination.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineLargePagination.png index 24322824a..4dd3f418c 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineLargePagination.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineLargePagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12d65ae739e31b2a83871dc294c5c193da8e7fbb5b6edee09395399963369077 -size 296119 +oid sha256:af00d968f20dd89ffbe5a81992d5c59327b8bb1cdc133b37bb46467f41ffe6ea +size 295158 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png index e535f27fb..8f8f31eba 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomSmallTimelineWithReadReceipts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9bd5f6f15f5a828a0c7fbf9059a011ba08b51c456005679337b2a556ba6521b4 -size 124145 +oid sha256:47343f3d9dd4b4360bb1527b3a6d6b2c0b3f7cbde912c69c4b58ba9ae3ab0ce3 +size 122381 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithDisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithDisclosedPolls.png index fc7d082ae..402087789 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithDisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithDisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:43c29378ca639881a5c7ad07b73a2dfe22157e7f5559a5a37bd91ec4c1b6be60 -size 191433 +oid sha256:c0301afba8134b75d8ab95deb88e14430761e7b9342632985c6582edf9428c5f +size 191289 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithUndisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithUndisclosedPolls.png index af6b92785..da7db371b 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithUndisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.roomWithUndisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de2c3fdcf12dde3d966bc2a019b545849308b66899775f26e7c4ad5977e45f91 -size 180407 +oid sha256:125ea64ac800100ce165b4a5a496919ba67b27a459bda9ccaad9b0dcc32081e9 +size 180247 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationLogin.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationLogin.png index fccdd837b..c91e32e98 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationLogin.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationLogin.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bcb0e8bed180c2e17c12cb298b4a2b8eb92e46963afa470e8a50f8a36a75f29a -size 102230 +oid sha256:47a81b8e8554c7ea9bca1506fe9142194a4caa6016f8132c4e70c4524715e45b +size 102245 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationRegister.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationRegister.png index b95b92d23..e4c90eeb7 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationRegister.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverConfirmationRegister.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7922f7e445f68a3a00a698d539f16c908919f9ef418d115f59d3e9678f3e86e -size 115342 +oid sha256:d7dbcf81f76532cf39ce194d9034eeed6b0d474cf9ef02f5ea2b77a2d28fea63 +size 115357 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-0.png index c859320ac..9234c7a05 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c6bbb3755faa99d8cea650bfbd6f139014a37e60435c932d8729f1370b30289 -size 116016 +oid sha256:6133c2043c92b8e294cfb6032d883118de64f758e23f31052e2f8142902563c9 +size 116019 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-1.png index b7e613c95..554acadcd 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4092c1b98a655f302673b82e3b7b6e5d8096e66d19843a3892a2f05b7823694 -size 188759 +oid sha256:da62373b8ff0a3e73876aab81e2c8997207186f238cc14364995aef794100302 +size 188762 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-2.png index bc7ebdedc..28764c339 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.serverSelection-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10020d3dc37e0a32ed81b15ceb64ed2b582edb39c54a2f80a41a249828b6a9f5 -size 121110 +oid sha256:b1cd55f2c0551512cd604c0d92ff7788827203b931dbce78297362f562f70a4c +size 121113 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-0.png index 5730ed0aa..534cec2e2 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c96a3638881d2e57bc16aa25ffba69fd26a4bb4dd53ad83e4dde7c171419331 -size 89130 +oid sha256:0612d1b0e666b370cf9b8cdb3bcb732d00cbd27f7d4271ac9135cccb12c05865 +size 89135 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-1.png index 5e4f5c617..c5acf1993 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f5e23175882d88ae3090128af4a21f3a9d7104da11de5046107401d94f894db -size 92448 +oid sha256:929cda058bdcadc3b4a7bc2d1fd782eb917cb77ac83d4c55b025b60659b8a5be +size 92450 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-2.png index 18b1dc708..16cf4d291 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:145cf4e787c5f6bfd418b4eb3096e9bc8b1534fea2d8e068f653af8043a1bff1 -size 87001 +oid sha256:888f91494a608796ef1fa34d89811d65c611e6ce3eda7982b1b313e0a5923b86 +size 87004 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-3.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-3.png index 8c182391e..0ba610702 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-3.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:117e02f17c60d6e486460d8f6579a77deec6549e8b35619e3803c32e335b553b -size 61293 +oid sha256:c3599f0d7c9ff35f50c9b37d289f8c8e4b6ad69b2b2334fe8ea138d51f91630d +size 61297 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-4.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-4.png index 05dc97953..fc8aaaf7b 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-4.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e85c2e0322a0c24abb1e5c7fe2c9b7993dde2184f6629f07a079c9cb09b9849 -size 154897 +oid sha256:7ce1846488849f5ea0713b360f703f5f5a6c41cf2cab5960bf766338f66aff7a +size 154906 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-5.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-5.png index 09ca0877d..c62b3417a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-5.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b6265ccf76061ea35c8a430ceef4a8d20ed8532ee7d35aa63b4c7a9cf85fd84 -size 152009 +oid sha256:86b57f1b076ab059f0d3479b068f4087b0fb0e819049b479e129ec6bf84cb958 +size 152013 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-6.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-6.png index 9069a8e1b..17ea09ffa 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-6.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6702c8dbc7bf96d61bd33e4645d77d7869702325f6473ce98bfefa206f9caf20 -size 92435 +oid sha256:b95a4e620a2e47260a8385c4b4738b6ed8534e4b9160052836e9bc220788c43e +size 92440 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-7.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-7.png index efef55bb9..c63cb04c8 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-7.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.sessionVerification-7.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a284661ef4fa91c867570d943853ae43db45d6f8b6af9207c88ac046dc9de78 -size 91474 +oid sha256:22b3e8ed775e07cd3eca859b0cebb4806d2e1c78e079c8b377075c3d0a41dfb7 +size 91480 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.settings.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.settings.png index c97fa97c2..9537d7691 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.settings.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27ecfa7b86dd07ebf9b8b9ad4fd1faf13e15ec2165a90d5e842706291f89d8d6 -size 127331 +oid sha256:d173fb278106eda74b32e617b00a62a69b5c37a15c4e0d948d24fc0459c5ec32 +size 126776 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.softLogout.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.softLogout.png index a907b1cbb..e38524b71 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d53c45e6a0b2b6816d6aedeece83b029405a6f19e6c884530df22b63def8d63 +oid sha256:263b216be293e5a9426e620fd010e98d3f3eac01b443c8fc77f802d7fbeed61f size 163383 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-1.png index 54cf8f1a5..6e2ee525e 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b314b98203549197aee1247714b4b88a32ba82894e37e9805e8ed3fd7bb8cb05 -size 63515 +oid sha256:4880c4c0e48de3fbfed6bc14e7dd3db6a08653521a89bae8b38c78ad06080b49 +size 63516 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-2.png index b3d03a6e8..661046d30 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fddfb778d50f90c30d3e3a14f9d3ff12aa911fb0a05a0dc265d2f1f9649804fa -size 77888 +oid sha256:173ad89a1949975b1fdc3d2cdf79111e2a7edb8a30cadaec39bff6614e973479 +size 77580 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat.png index 88bfffee0..fef30772d 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.startChat.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41bd5a57617b9374a1cce5f84a850577dd146b4c737c3c9d6b3f1a01fb680aea -size 114136 +oid sha256:86b1b0b381710e4428a90e494e65c4d77d830b20defcda78086e23841110bfe7 +size 114039 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.templateScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.templateScreen.png index fc0e20034..4add8175f 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.templateScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.templateScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92dd675595b5a9cf9f90ba89d30821621dd60be7af3241fa34858b55eb0f2785 -size 66398 +oid sha256:c967d9103aa2cd9eebadbb4ae0516f632fbaa2f019f37316feb2a89f19ea3de3 +size 66414 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-1.png index 2966758a2..62417a516 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c28e96cf584d74a444264e7e7713b22d271375f09b7f6b398706e4c283c1c190 -size 147142 +oid sha256:7b8c1a89fc960a9f62df4e2d67c7fc5ac35088772adb5b5621306457b7427942 +size 145836 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-2.png index 7740da888..600fde08b 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a6e3deae7097d0fdf1e8982b5a35afae4e78667926544cc6105cd3736f43933 -size 334498 +oid sha256:5d49c0a3cc231c2b3788efaa020ce141f0e1e9ce9ccf4fc78496b29414c3dc15 +size 332784 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-3.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-3.png index b499ebc24..979d4ed42 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-3.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.userSessionScreen-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77936df3bdcbf88fba931c4e5c2bac9ad73e696b2892a75bcc3253495d5a2a20 -size 394716 +oid sha256:fe8c3b06399abc9fdd36399ff65ce2b9b08aee40e9d4919940973d05f27253a0 +size 392559 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.waitlist.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.waitlist.png index 1634d42b3..42b62df15 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.waitlist.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.waitlist.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e6e2632eb4a30d943acc2859b517854b2c20aa59289d660c91973670b163e584 +oid sha256:024ce786c075c25c69d74b05147dbdfdf40fe462676d3bca7c1ca75f997702e2 size 746877 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.analyticsPrompt.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.analyticsPrompt.png index 4399443db..4193d1f15 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.analyticsPrompt.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.analyticsPrompt.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42ef31ea1a6f1641c5989f62522d24a718e24efe2717fc5f91b5e0b84b4a0017 -size 172002 +oid sha256:59cb56c0bfe158a13f0250fc5c38203ba3c7760eddf40b881e3e583176529164 +size 173320 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.authenticationFlow.png index 78cce3c4a..b113f166d 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec74f689a7923a3e82e267c3bd2ad6eb903d32d4bc2859c2b18684228461422e -size 95143 +oid sha256:02b6de987959971a60e590d00934e7a3d3c785bc04748c65a80967bc8e30786c +size 95145 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll-2.png index 259c97ed9..a0e3b8850 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a71198a895a22048cb9ace7b98bb9bb6f8ea531e01502e07a6a6c4db87738873 -size 351270 +oid sha256:394201a98ed59bf494453a5746cd069058548d52bee6df79981489d4abe36540 +size 351267 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll.png index a46ac023e..32abec430 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createPoll.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ac225c17efd828512b67ee40d4de6ea63b6173bac280156945d8a77622a12556 -size 125867 +oid sha256:1bbc082476832b1cdd4ec0eee854bbe885b6c71189b77c8b578c10934b0d4c86 +size 123787 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom-1.png index 9646c1240..68018f92a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c87e8293306f5637933fc9dd28e2458ccf4422cacbb34a70fa9ed5463b117b7 -size 223807 +oid sha256:ae5ba27daef93148115492d64964065432e93e9bfd630d21d23ac7f65ee21dee +size 221972 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom.png index a49de469a..75b66b307 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoom.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30cc8e1e16a073258cc93cbccf7cacea546c6781a5d473fd4f3ae7f82cd7e508 -size 230875 +oid sha256:47e473ef026488347442246a78f05d81fc4e71d0cb9c0df7280ae82879f3a098 +size 227044 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoomNoUsers.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoomNoUsers.png index 972bac7d0..92803cdc3 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoomNoUsers.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.createRoomNoUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:824337b4d23bebd3d7a299d894c2ffb2df2f0b4eefb84d1365f508700684c95a -size 203004 +oid sha256:414d283c7b93c11148f4c0173ea28d98260027fba1374bf2e0497b146bc40c74 +size 203002 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.home.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.home.png index cdc964504..545253fac 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.home.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8099131c4fd55c1085f71ab3456c71b76ffe708b5d7dc67fd2554cd1fcbfdbb3 -size 92554 +oid sha256:f73940ae5715e878f6b7cdb64d599d16532d201ae78abad112ad2c280eb38a64 +size 93750 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers-1.png index 968978e3d..70f4c3275 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51d70dc3374f18c3c91e59e6756051f3c9fa884246da3b03f0ca8a2e9551af24 -size 136888 +oid sha256:6316162e67302f33e034b9da36f9039f7d540fa84994136e5c3a85650ee3131d +size 136612 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers.png index 55b295048..82dc9c9b6 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsers.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e91c44e1f05c6bd29d95d534622ebe55fee4e2406245b5858f84473d4258aec -size 119199 +oid sha256:3fbf913d6cb7a9db7c21438f2fcd1674d360e8ab22f8a654a08e002297d1340c +size 118989 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoom-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoom-1.png index c01c14c0b..658fb2a4a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoom-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e99735f2e18f5d5eea02e127c03454289e3ee0f9ee9b2ecef6b3e21dc5030e6 -size 139247 +oid sha256:202e452cc3be7013dc0c5cbe9874d238022394d7b99e0c6cb10b8c77b56049af +size 138969 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoomExistingMembers-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoomExistingMembers-1.png index 22637ce97..f02788454 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoomExistingMembers-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.inviteUsersInRoomExistingMembers-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6caf802ca3209638891bf84632e9957284589961673e80e22bdb5994d8ac5b6a -size 122874 +oid sha256:2e1dea7cbc0cf1615fe3a8f9de5cfcf953937c6f43d657c3b370133254922200 +size 122545 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites-1.png index 04698192c..4a62c94c7 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:183fa5a16da7bfb80dd348cb6dd9da922b33fa153193a2f583396d842d67cd04 -size 555951 +oid sha256:ea93a611bd691aef99ff5940d099257ebac6e718543d771f79266ec6144125af +size 553604 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites.png index 05d340133..31ec49e08 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88f0ae73e2d07a471e25340d43a14e56497936fe1ea3c01736848b7d0c451173 -size 150014 +oid sha256:0326783bf6fae8755a0736934dfcd79e6e0700c95e295fc711311c6b6836d365 +size 149084 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invitesWithBadges.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invitesWithBadges.png index 747761886..34dd0f178 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invitesWithBadges.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.invitesWithBadges.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60f6421e6b1a5c5f6cb3be4e663493a0c80449fee4594304ee0d9ceff04c4f06 -size 150496 +oid sha256:7ced0ec09a3fca785d999792b762e0a689dd35d252e533e6eca90560bac721c3 +size 149578 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login-0.png index 197b2eeec..f6b05727c 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e07c6f2694b31fc59a0ff133a1f83eaa38935528ac174826f70af2fe873c205a -size 94813 +oid sha256:e833489ba0e7003333a3f2358de9c4ed777f545b0d5560e22a40b34cc23ff41e +size 96257 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login.png index ab179deb0..b758e44e5 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7814885cfc605b2dc0ed827b52109fb44a34a242688a0412ce59ca718a149c80 -size 92918 +oid sha256:7e11deca93d97b40f7b69bf99279bac681aee53b113f9ae690a0189915cc419a +size 94303 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.migration.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.migration.png index 45d901c1c..bf08b15f0 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.migration.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.migration.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51acefe26737409fe6a0f420eb3482e9614cf95dfd5b5beb62b27e69c1caf0e4 -size 470957 +oid sha256:d0b1aaa41fa4331da2eb5b2c424644613ade03e2278589a826b89529ebf9f192 +size 471933 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.notificationSettingsScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.notificationSettingsScreen.png index 0739c85bf..516fc5605 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.notificationSettingsScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.notificationSettingsScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:570373515f3a642836661d2f549d3f93c914245f333114640339402ae42ef9bb -size 189090 +oid sha256:8934a3a49936e50c84427e6347d34bf2d15663a23756b9e071734258b0dec3c3 +size 191190 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreen.png index da0a0cda9..f5e226031 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a99af45d33c1c8b9277494aa0f2b07bf0108891a78594cb16e7b2ad3c84be61 -size 143610 +oid sha256:96bcf695cd1594d97b427b080d5055d2dcb408291277dc1302274dedc7b4ae9f +size 143250 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithInvite.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithInvite.png index 9fea6421a..2a2d25d89 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithInvite.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithInvite.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aebe694c734af52a98cf0b881d440a086f04c65d7a132afc951a668c7183c864 -size 152113 +oid sha256:658caaf88a93c43aa101978c0986f36a85e547c73103183708235896c6a509c5 +size 151764 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithRoomAvatar.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithRoomAvatar.png index a144eef32..3e60326af 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithRoomAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomDetailsScreenWithRoomAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60d93b489ac8051eb8ceb3deaca5ee050bd7b3f22350fe3eebb680f0f60a31bf -size 178195 +oid sha256:ca7c609cdb53f3a73ad84aaa7237655a5eb1d485a5442afe763a654b2a0d3306 +size 178599 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomEncryptedWithAvatar.png index 4afd486d5..607eab7b2 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c50df722dedbff174fbff4adf66e8d20dd81431114800df843b144606764aa9 -size 364057 +oid sha256:c53c0138b452a09910b4acb912c50b230d077336a34ceefa79f03677ff76bddf +size 363080 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-0.png index 4e98f7813..724f9ce98 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:178cc898304279b90d05fca4edc62c0d650001b8874abcfe03bc28b051d2b8f7 -size 304984 +oid sha256:452687fd4b15993003b2699d5d01675615621b1a40697caf29a99957d59d3b2e +size 303407 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-1.png index 40b7c49fd..2f8ea7fea 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutBottom-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc55a08402dd53e313a0509430dfca36d97aa30b14e002635f3fdf0b216c8f95 -size 307109 +oid sha256:2305600ff533059110d8cc8df0b5622d2ed9d97cef5099fb830594e3fc9f8dc4 +size 289634 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutTop.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutTop.png index b6dd00a7a..c4e231ed4 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutTop.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomLayoutTop.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e282ca5eee331661eb3b52a57cc26a6b36b45e5ba0883c03b299794e54f62b6 -size 307860 +oid sha256:f5bdb78870465441c4a7175c39f82bba5f5064ea9c3e014a5fdf6304f9d09ad3 +size 306593 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetails.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetails.png index 76a5013c1..e15dbd604 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetails.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetails.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:753c521fec551b53579ae50cb4d221a12dc732934e985a54638f004e9b76b72a -size 87528 +oid sha256:da7455c147d2dca07f71ef881a1cd5c0440aae8e5b6b88c9f37bad06aa1546de +size 86726 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetailsIgnoredUser.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetailsIgnoredUser.png index 93fdb6512..cda4d1bfa 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetailsIgnoredUser.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMemberDetailsIgnoredUser.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb558367c229d555030f70d804e2ba5fb0778a73952a1c5fafec3da08efe35f9 -size 89095 +oid sha256:e5ee8fbfe1abae2eceb341a3800788ff43f671adb9affd019ec4156103c33e7e +size 88844 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreen.png index a2745d17c..0775ba2e3 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31bb5ce6986de70984f584b65d4162f41186c357d8cc598c3187af9ec61ab344 -size 87969 +oid sha256:26f46b89d4d0cb6029fc03eb946002b994278de7383b61f3c0a727297bdc9c76 +size 86657 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-1.png index 02a564eb1..1d78e2ebc 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2ec0f7d2af035f6b083970d783a2966e00bebe2097633b1b5fce14053b8d0875 -size 68290 +oid sha256:67ee54da5e3aa5e374736f6ba5a093b6101fa74e29ef2e4e9a3538d2237c650b +size 67503 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-2.png index 5db4177ff..46020eada 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3697b110006014d0913eef980ba66f7c65ccb3d7d1c2d8170dce2a141791e66c -size 110364 +oid sha256:dfebb031795432613cad7cc935a81f1fa2b1dc28d05e44e22f573e38215b4400 +size 113790 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites.png index bfe5b38d4..29a01afe5 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomMembersListScreenPendingInvites.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2b0e2ac2ec468f4ef0ab308632b945fe714d287d0e8a969e3f01d6e3eef5b99 -size 92702 +oid sha256:89a6f419c91ef949f9eee7f8a0e1f757b022057379799b4453c0b4f044fa7c72 +size 92751 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomPlainNoAvatar.png index 0c5c91036..d553bc6f7 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db3fc50c05521692fd2b6e575b272d81e1226978a805667af31554afd4902769 -size 363626 +oid sha256:a3c770f3924b174d1cd13c9c771dda93e8e1c351d56ddd9be213116cbfe07aee +size 362784 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png index 84d904ee2..adf5dc07e 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineIncomingAndSmallPagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb0bb29bbefab9e632a77ea964ab67ca8866e0ba2711131fbaa1abfbec238c40 -size 192424 +oid sha256:3ba0753229fd7d8aae3b933134ba8ae5067aaba1e87dc43138dace1dc846aeec +size 191826 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineLargePagination.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineLargePagination.png index 59f4be5a4..a104d2472 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineLargePagination.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineLargePagination.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c8c29600a82a1610d6d8991d2b2da80aac47b3209d267b18aa9eac100ef7ff0 -size 317993 +oid sha256:a6859e734a7f03049e97a76f6468c63186db6d9e30d7106e1c752f465c2e3c48 +size 317030 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineWithReadReceipts.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineWithReadReceipts.png index 316db63de..bbd1132f4 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineWithReadReceipts.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomSmallTimelineWithReadReceipts.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37eb4fb8965491ff81b98063af3569c36b8ebe7b521907433b15140c312862a8 -size 190002 +oid sha256:fc0771b95e4168d67155b83dc1dfc5fee9afeb261cf1f3d2309f58be2cb7e3c7 +size 187726 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithDisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithDisclosedPolls.png index 400f147c6..ad15c0d2e 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithDisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithDisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:afe5fce7672d4a5f384d9e3fc16edb6dd898903c1793abc46878e98134d59d30 -size 275771 +oid sha256:0b046f21855d3e8a26dc9778fd5f790312517bad17555e1c969dacdbca0fd932 +size 275682 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithUndisclosedPolls.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithUndisclosedPolls.png index 283577dd9..826c0b039 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithUndisclosedPolls.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.roomWithUndisclosedPolls.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:43d019b4cf4143cae3b29bebc4785488cd58c8e1650e9eeca16f13b833d97923 -size 268647 +oid sha256:81f8ed509be95b8c23f86d41f5a6999a53411a4b9e0e66a518371a02e7b082dc +size 268701 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationLogin.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationLogin.png index b68547e9d..9b48cf794 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationLogin.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationLogin.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec8f93c2d86826f7891a3e9f4e438000d307c0665e61ba3998d3ab3cf6745179 -size 135995 +oid sha256:28da39b1a411760219167f2132fe37cc33b76b6c49e7ab11161cb9913fd73a2b +size 135975 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationRegister.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationRegister.png index c05496de0..adc78eab3 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationRegister.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverConfirmationRegister.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3aec3388c90218bbdb8d1ef4b30cbfa12893e80ca8342e978ddd96de8dbeed9a -size 152689 +oid sha256:5c885c47320e12a2b2bee1e027d6d38c2ff420a9bb03630140072d48ce2ef821 +size 152669 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-0.png index dad41e6ac..482551a24 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13f9dd08460f156ee4d2dbe5f873a0c4abdacc6baca1331e1d050069c1fe6823 -size 136354 +oid sha256:70df337d568fe22df021f23294d77d3d63fe22af36689c9020b3ccb44d48bdf4 +size 136358 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-1.png index 375653464..7cbbe35bd 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92fdc54f911c2b6750b820402ebdf9726f16a71e725a733650bf191d791c9ad2 -size 196950 +oid sha256:9993f5b3bc910d912dd045a3655079a0217c055e59087927d0363955af38e29b +size 196955 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-2.png index c5a8cd65b..4ac248d54 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.serverSelection-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:536a2647b413bb6a73417a892a2d6c5500f14f0932e5ad00519dbe2ceb702f6e -size 145787 +oid sha256:11df81640d59700ce5cc3b4db8e4f93060b314fca825b3f58ec0a6440ae9a4b6 +size 145790 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-0.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-0.png index 8b7bb452f..0f07162d7 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-0.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf46f93c3f1530111032f89bab49cfb875cabdac44e1c86d9b6b7231c9d485d6 -size 104805 +oid sha256:5a6a2054d39086905c1a49cdff7b9a208a2b777bfac0d7d342c49613fb6f6cdd +size 104809 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-1.png index 3de5630e0..7a98cdde6 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c3fb2794e18b1398f97e110c77c390039381c00b47cf8e3933702f3934e76dc -size 117647 +oid sha256:635828274f1250f725c59cab073b11411f62a1c704ecbbcefcdc0fba66c814c0 +size 117651 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-2.png index 866c5f966..8118e1192 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:920ef9274784a5018922b3a7b7651b279b8f35411a44a0d4a4397db5035a4f11 -size 99783 +oid sha256:64da847485eca904939f6ab9c9287bc7e097eec2187ea130b45dcb3fb4e134c3 +size 99787 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-3.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-3.png index 3640d1bd7..f18a27915 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-3.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:703ffa9d0455fb75e9f8c3394639e63c91eb31c93dcfb7ab38a9cb898fcde185 -size 60937 +oid sha256:c5c635d47879d11f40498e73fa39bebc6eba2d3a2e2154c0a4eed75ed72a63a9 +size 60940 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-4.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-4.png index f456050c7..eb6c88298 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-4.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-4.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc2074001582c143fd8cf662926b232aea28dc54cc35ffe5765b28d45f30d380 -size 218988 +oid sha256:b659b00cfc03798a171108c4ce2c5ac8f8930ebd8eeccdc498836ec965ac663c +size 218992 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-5.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-5.png index 820dec1ea..b19b701d8 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-5.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-5.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2989253ed3ce512ae44b657fade7e3f7f9da4607133e8d08478756009c28dff -size 215356 +oid sha256:b2f238c1a6b0d4adec60cad76a027b2e88dd8d5c0663628aa89669f322c2644b +size 215358 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-6.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-6.png index 3fab5dc3a..35ed53838 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-6.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-6.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c50eb8ba0e91ea45b4a3be4b705fd332405596c4b79c8741cd39f01cfa8d70d9 -size 116895 +oid sha256:05de9bcd8c8d9fb220fe4d0c901d0bbbdafacc86970f08157e18acdfdbbd2d07 +size 116898 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-7.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-7.png index e1f84e489..7f0f2a41e 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-7.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.sessionVerification-7.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02079b8e6bfa96769f57bdf488456d0b7245799500bcaacebe86466dacefb950 -size 113943 +oid sha256:1992e22b00f623cdb660d546712694b69147222c23a8f728e5e2c60a745e8ef8 +size 113945 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.settings.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.settings.png index 4868841d7..1022df0dd 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.settings.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:01edf9cb7adc62458ef5f9fc02bf6bd283147269879b1c471f3eadc95343e6ff -size 177926 +oid sha256:2b42fecf8963190981e3236a369bd1d601e6b6f7f1f9d3db17a9c5b2a3def601 +size 177000 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.softLogout.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.softLogout.png index 63ff318af..1bb487ba1 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed69d170e6819e1626bac93d3db2afcf4b1f40ba8c5560ee268dcf333452c605 -size 223360 +oid sha256:caaf1c2b455e30ee729ff4d2e5ef992c91506cb3eb15a8faddb27c79b3d5afc1 +size 223358 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-1.png index 0ad991881..77a5826d2 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:315d021406dba869c34d4ef922f01b82ddc3479eae6e942f568ce37aaa09a125 -size 63528 +oid sha256:f1d45025a9a04d9185e97608d33b07bb29375086b9b5eafb6d038d586a9dea55 +size 63535 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-2.png index 422992268..c4f046e7e 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b3c6996f7e9677d6dd7d913a9469e67210f189caa7fd9a54ca6cd4efdef5f64 -size 85958 +oid sha256:e45b4e2e7feede0fa06345bbc40b56e88188860fdd948a7db249bf4d46a9304a +size 115563 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat.png index 9a44b58d8..666d0ec39 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.startChat.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3aa3fa249d9519daaff02c26385e90a6ec8508524f9ec96bc909a3de512abf06 -size 141692 +oid sha256:b5217926dcd81d2f3ad34570d89bad2dcb72a01d3b2f830dc9da39b0f3fe24c3 +size 141205 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.templateScreen.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.templateScreen.png index f64383550..cb0acff29 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.templateScreen.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.templateScreen.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df5cdbe45d6259ab51d151deaca7a558ac7b370c98679cb0c47205906c608a97 -size 71474 +oid sha256:1f960aa73516f50a3f4df47f30126a02fe4d8f43f812eedaa94069a40a1f74ba +size 71450 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-1.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-1.png index 62ca8a8f3..26527d77a 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-1.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:006f60c374a96f4346d77ce633b0c9ab2082e8af5c58e01c36bb3930c9b33ec2 -size 132855 +oid sha256:e9c0cfe17aa68f760a3d79dd342ba4c123a3d34809a45735a26a3a2b752a3c73 +size 129721 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-2.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-2.png index fe42c5a31..710000b55 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-2.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51265ea53944f99b7bf88766c360ade118f18b81bc558d1a461b95034f92938e -size 303494 +oid sha256:4e81f4a943172c78485f37da8606a431dbe3a7f56b3b08b7b8c34c01988bdb32 +size 301885 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-3.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-3.png index 711a070a2..ebfee7566 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-3.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.userSessionScreen-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:53c0de9ad976a94166d935528b5ebdc2ad80974487d197a5571f0580baf6ce4b -size 281935 +oid sha256:416e46f361ee1460ff0523f87009fce1bd57d32e04ef47d2d6d7974857ab25c7 +size 281058 diff --git a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.waitlist.png b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.waitlist.png index d0c34697f..a1109301e 100644 --- a/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.waitlist.png +++ b/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.waitlist.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:86605b7eb5f4d9fcd48a9ee0cf4e9e6e66a5b07673369392bc8304411d16078b +oid sha256:b2ecd3633784cb09cadd9164ae02464f550d8be2e8e92793261ef148643a8164 size 511376 diff --git a/changelog.d/1345.bugfix b/changelog.d/1345.bugfix new file mode 100644 index 000000000..ea824160c --- /dev/null +++ b/changelog.d/1345.bugfix @@ -0,0 +1 @@ +Avatar colouring is aligned to web. \ No newline at end of file diff --git a/changelog.d/1603.change b/changelog.d/1603.change new file mode 100644 index 000000000..5796d2778 --- /dev/null +++ b/changelog.d/1603.change @@ -0,0 +1 @@ +New avatar colouring + username colouring. \ No newline at end of file diff --git a/project.yml b/project.yml index a3c30e3a5..54228ea0a 100644 --- a/project.yml +++ b/project.yml @@ -51,7 +51,7 @@ packages: path: DesignKit Compound: url: https://github.com/vector-im/compound-ios - revision: 50bb7cf313bd1ad17201fc7e4c1184737a0f44c2 + revision: 71b0c887880de639c854600a9ada6b5bcc93c719 # path: ../compound-ios AnalyticsEvents: url: https://github.com/matrix-org/matrix-analytics-events