diff --git a/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift b/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift index b072aa406..e75c72b2d 100644 --- a/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift +++ b/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift @@ -39,7 +39,7 @@ struct HomeScreen: View { } } } - .animation(.default, value: context.viewState.visibleRooms) + .animation(.elementDefault, value: context.viewState.visibleRooms) .padding(.horizontal) .searchable(text: $context.searchQuery) } diff --git a/ElementX/Sources/Screens/RoomScreen/RoomScreenModels.swift b/ElementX/Sources/Screens/RoomScreen/RoomScreenModels.swift index 69af08ffc..f6cb33ff8 100644 --- a/ElementX/Sources/Screens/RoomScreen/RoomScreenModels.swift +++ b/ElementX/Sources/Screens/RoomScreen/RoomScreenModels.swift @@ -46,7 +46,6 @@ struct RoomScreenViewState: BindableState { var roomId: String var roomTitle = "" var roomAvatar: UIImage? - var roomEncryptionBadge: UIImage? var items: [RoomTimelineViewProvider] = [] var isBackPaginating = false var bindings: RoomScreenViewStateBindings diff --git a/ElementX/Sources/Screens/RoomScreen/RoomScreenViewModel.swift b/ElementX/Sources/Screens/RoomScreen/RoomScreenViewModel.swift index 2bf14f807..fbf1613b3 100644 --- a/ElementX/Sources/Screens/RoomScreen/RoomScreenViewModel.swift +++ b/ElementX/Sources/Screens/RoomScreen/RoomScreenViewModel.swift @@ -33,8 +33,7 @@ class RoomScreenViewModel: RoomScreenViewModelType, RoomScreenViewModelProtocol timelineViewFactory: RoomTimelineViewFactoryProtocol, mediaProvider: MediaProviderProtocol, roomName: String?, - roomAvatarUrl: String? = nil, - roomEncryptionBadge: UIImage? = nil) { + roomAvatarUrl: String? = nil) { self.timelineController = timelineController self.timelineViewFactory = timelineViewFactory self.mediaProvider = mediaProvider @@ -42,7 +41,6 @@ class RoomScreenViewModel: RoomScreenViewModelType, RoomScreenViewModelProtocol super.init(initialViewState: RoomScreenViewState(roomId: timelineController.roomId, roomTitle: roomName ?? "Unknown room 💥", roomAvatar: nil, - roomEncryptionBadge: roomEncryptionBadge, bindings: .init(composerText: "", composerFocused: false))) timelineController.callbacks diff --git a/ElementX/Sources/Screens/RoomScreen/View/RoomHeaderView.swift b/ElementX/Sources/Screens/RoomScreen/View/RoomHeaderView.swift index 9ed0590e6..d5a0f4cc5 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/RoomHeaderView.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/RoomHeaderView.swift @@ -37,11 +37,6 @@ struct RoomHeaderView: View { ZStack(alignment: .bottomTrailing) { roomAvatarImage .clipShape(Circle()) - - if let encryptionBadge = context.viewState.roomEncryptionBadge { - Image(uiImage: encryptionBadge) - .accessibilityIdentifier("encryptionBadgeIcon") - } } .frame(width: AvatarSize.room(on: .timeline).value, height: AvatarSize.room(on: .timeline).value) } @@ -87,8 +82,7 @@ struct RoomHeaderView_Previews: PreviewProvider { timelineViewFactory: RoomTimelineViewFactory(), mediaProvider: MockMediaProvider(), roomName: "Some Room name", - roomAvatarUrl: nil, - roomEncryptionBadge: Asset.Images.encryptionTrusted.image) + roomAvatarUrl: nil) RoomHeaderView(context: viewModel.context) .previewLayout(.sizeThatFits) diff --git a/ElementX/Sources/Services/Media/MockMediaProvider.swift b/ElementX/Sources/Services/Media/MockMediaProvider.swift index 89531ac75..6137f58a8 100644 --- a/ElementX/Sources/Services/Media/MockMediaProvider.swift +++ b/ElementX/Sources/Services/Media/MockMediaProvider.swift @@ -43,6 +43,10 @@ struct MockMediaProvider: MediaProviderProtocol { } func loadImageFromURLString(_ urlString: String, avatarSize: AvatarSize?) async -> Result { - .failure(.failedRetrievingImage) + guard let image = UIImage(systemName: "photo") else { + fatalError() + } + + return .success(image) } } diff --git a/UITests/Sources/RoomScreenUITests.swift b/UITests/Sources/RoomScreenUITests.swift index b10be5b26..362941142 100644 --- a/UITests/Sources/RoomScreenUITests.swift +++ b/UITests/Sources/RoomScreenUITests.swift @@ -25,7 +25,6 @@ class RoomScreenUITests: XCTestCase { XCTAssert(app.staticTexts["roomNameLabel"].exists) XCTAssert(app.staticTexts["roomAvatarPlaceholderImage"].exists) - XCTAssertFalse(app.images["encryptionBadgeIcon"].exists) app.assertScreenshot(.roomPlainNoAvatar) } @@ -36,7 +35,6 @@ class RoomScreenUITests: XCTestCase { XCTAssert(app.staticTexts["roomNameLabel"].exists) XCTAssert(app.images["roomAvatarImage"].exists) - XCTAssert(app.images["encryptionBadgeIcon"].exists) app.assertScreenshot(.roomEncryptedWithAvatar) } diff --git a/UITests/Sources/ServerSelectionUITests.swift b/UITests/Sources/ServerSelectionUITests.swift index 5b23908b3..45a13c855 100644 --- a/UITests/Sources/ServerSelectionUITests.swift +++ b/UITests/Sources/ServerSelectionUITests.swift @@ -56,7 +56,7 @@ class ServerSelectionUITests: XCTestCase { // Then the screen should not allow the user to continue. let serverTextField = app.textFields.element - XCTAssertEqual(serverTextField.value as? String, ElementL10n.serverSelectionServerUrl, "The text field should show placeholder text in this state.") + XCTAssertEqual(serverTextField.value as? String, ElementL10n.ftueAuthChooseServerEntryHint, "The text field should show placeholder text in this state.") let confirmButton = app.buttons["confirmButton"] XCTAssertTrue(confirmButton.exists, "The confirm button should always be shown.") diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.authenticationFlow.png index 00e572150..493082e62 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e51981a2cfbb4b3ff272ce533fb939603c42fe1d467ce8b837797f6ea67d416 -size 91715 +oid sha256:31a6f8f275781df9752b6ddbde12f9daebc110629008c0552ffc969a4c6be1b0 +size 94798 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReport.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReport.png index 648810bd6..32f12c104 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReport.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReport.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef44f179a5b32ae579b002056894c74dbcdeaa48e91d444a06c61a60526f00c3 -size 132985 +oid sha256:df0f907d1bb830d642f0af0c5d6d3ad7602e448997aee4e5689add6efe0802d7 +size 134918 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReportWithScreenshot.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReportWithScreenshot.png index a1d29acb3..f083e5bfa 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReportWithScreenshot.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.bugReportWithScreenshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:487bf18368fcadcf5a8e49fdb25b921c924401247b65706c45a7e3c7286ae15b -size 141536 +oid sha256:e5b9ea25212d43eb88cee57f324d3876ab14df451a65a2629b09a3db092d8132 +size 143512 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.home.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.home.png index c0168795e..71e59cb24 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.home.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:988492045b2979e6a0cdb0724717f03ee342dff29c7bed991acc2a070a8b7af6 -size 111569 +oid sha256:5c74c06ba3d68cac29cc0f38c1d180fec9cc87d07e1f514c36c0e3b8ec3736e5 +size 87049 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.login.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.login.png index cb74634b6..3e9336acb 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.login.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:895b94b48df3b4c2cfe63654b67a3810fa24e08d9eb66b011df4eae6a2edcffe -size 96399 +oid sha256:884041f7ca48b373feee60492e5080640af926e2964eb7ad836867f9bca04d48 +size 96684 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomEncryptedWithAvatar.png index 97a8722ba..8a1de29ad 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab72bd1f5eeba3e7310148e088d47e8166c2aec1940914befe01d953c17aa230 -size 179710 +oid sha256:34965ebc2cb3d1128ae8e0c134e415f45dc9ef30fb1a6fd44a65c36b79a98a28 +size 201290 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomPlainNoAvatar.png index 02675e1a5..33053dccd 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95e40aea82cf2dc6fc7a6da2c46328288b62e4677ef5fcc78ad602e9368e953d -size 180213 +oid sha256:99c944609beac94f1da48a7ff514269426c2bdada950541103a8f7834c783afe +size 200711 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelection.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelection.png index 013f0f442..ac19e2ae1 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelection.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:927d2d5c48c5d4da7a9a5e5f3efa2c35bf0a86b54d27bd89fef4b933f0023fcc -size 95250 +oid sha256:597a665b044a3d0b086f52ce0cd9748eb6c0850dded7c98bf33935665d908fce +size 99874 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelectionNonModal.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelectionNonModal.png index 21f11441c..e3d888a51 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelectionNonModal.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.serverSelectionNonModal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31b6ed57d6d264a3619e64c319a03415a5b40f995d82eb73e81af22c7341ce17 -size 92014 +oid sha256:039e2d9efc67c968f23559abbdcc580ca7f9254afe5db64ab1d2328c8730036d +size 97013 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.sessionVerification.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.sessionVerification.png index 93e1a23e5..3e6fcebc8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.sessionVerification.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.sessionVerification.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29ac322852f64822340fafe556dec80c2d6e1a2785e7ac0a45d55632a63b8fd2 -size 91786 +oid sha256:70c655f125620bf51909589f1913d77192fc8a6967053308c31edabb78927aea +size 91621 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.settings.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.settings.png index fa20056f3..cb63d7084 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.settings.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:391c1ab2b0acfb78643925683ea83e0e5bec14b8c6ca37a937371bf44e85145e -size 104279 +oid sha256:da398b33f3250c99e85aadfcb771aba5e7024fe524da03d127759baaa3a36a63 +size 106400 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleRegular.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleRegular.png index 4ae8e2652..5d6d0b7f2 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleRegular.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleRegular.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f5c4c55d5403567b5cf9f49e9d41d45e06c6da6b5b706320fd0ee2bd2ffea1e -size 87473 +oid sha256:057577f08b53ce5ee905e73c61c6a4edec8e53babc331f723fcec1b1f9a39c1d +size 87599 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleUpgrade.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleUpgrade.png index 04274bda9..ca252988f 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleUpgrade.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.simpleUpgrade.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6fa5a6ec19b4c6a507407b27ac97c1138b33ee13bcd9b4237d947600f722b08 -size 82329 +oid sha256:0d627fd8634ca4bda34e260a83644ec75c51bd0bdad3368181b8cdba19052378 +size 82422 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.softLogout.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.softLogout.png index 1598c07af..2758884ec 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:251a91df282cc57f5014657fd72babd14dfd6b052943d33651d2ec2bffd363f6 -size 125943 +oid sha256:e9ffcfb3e2675dfcd86926dfe979fe2bfa6d721a4081d99f1775715a044c66e8 +size 142211 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.splash.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.splash.png index db937293c..4077017ce 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.splash.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPad-9th-generation.splash.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b1d1d2ed922b346ef758bdea98bebb5c7aae7f8d0ef81ab76c0aa16d735785a7 -size 176251 +oid sha256:1836a336c61bb5a6e4f9107144ef3c1dbe8d91976eebfc2dda36912583f86ea7 +size 176679 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.authenticationFlow.png index ce59fc38f..5722d89e9 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40e99e77d469d63773e5c2af7322ba5e2ddf1a43e7b880edee595c86689b34d3 -size 108878 +oid sha256:d26009765fd654a8189b27823988d918f3b39a863e3f1bdfb2c77b98425422e8 +size 111429 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReport.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReport.png index bf0dbd5a6..aef33a57f 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReport.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReport.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db5ee0b1b2c25f0cb1a99c13b2cac3d171d20804b6e61006c6406236f40055c3 -size 189399 +oid sha256:f2d617cf227dced261a527ec0354c1e6e58c26c0075f5d1781c0648133bf82c9 +size 194927 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReportWithScreenshot.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReportWithScreenshot.png index 71c1b3314..5569b662f 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReportWithScreenshot.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.bugReportWithScreenshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2f18a2371b1e34c3f9cb3cecd97f5943c8a69d4c734132d0b76c62c984876c5 -size 199969 +oid sha256:cf582c737552694369f55b199d81bad949d450a66fca7c4fd202a32d25c42128 +size 199791 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.home.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.home.png index e6d0e316c..de3abad3a 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.home.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6fd728a71eeb041a99cdfe1193ce11408f1c4abc5d01ebef22627c513f31071d -size 123201 +oid sha256:bf2b653cb5c1909bd338b447d582b06e94b8689cd7b78256833c87bb572d7ea2 +size 106003 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.login.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.login.png index b8f9db3a9..9a1a288b7 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.login.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1937b9bc6295607c73b237610656b8c4c0c0c099242d26cdda9ca066e569ccc -size 114310 +oid sha256:60563628e43d5deb77252c41d48d39bc6e669e5e0e1afd0446f73696c2b46d23 +size 116947 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png index ed34755ce..b8616ff6f 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:797dc8ca92fe40120ddb66f3368fa7cf9f1ed2af4e2a6ce21f0f598a04b96f67 -size 275383 +oid sha256:4fbcb1a7572a7bd2da42e1d291106eb2fe8dcd8a37c0d8c844f355a9a94c3312 +size 331565 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomPlainNoAvatar.png index bdb78e6cd..b56da2d21 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10e8dd701fee045c5a8a65f49f88c0000ab5d2087162cd81cd8ea17b2e67dc39 -size 276199 +oid sha256:b4721bf649f17a4d091005ddd48559a593cdd3f82d373222d5ac5ce4e352a2ac +size 330641 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelection.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelection.png index b6dbaca26..9acafd880 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelection.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3209bc71e10ceae93505e8e4aa0e25d8f638699bdd272ed069093d0313441351 -size 117765 +oid sha256:da1867489d89ccd58ac046463536dc0c8f06368e48496b6c9419c5f9f0df5fcf +size 124339 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelectionNonModal.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelectionNonModal.png index 43528021a..2ebe2d8ce 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelectionNonModal.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.serverSelectionNonModal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f7aa02417f321f1a37ad9a556bbf7f9cd7aa4018b7e6cc5f9bf76b7fc4c9988 -size 112539 +oid sha256:fdbbccbc6bf059e43996583136f19ff4ea921f322e3415b2d643a349d808e12c +size 119707 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.sessionVerification.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.sessionVerification.png index e5819cd3f..a52e055a4 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.sessionVerification.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.sessionVerification.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4023584a45db5ac9dd3b46dee7a744c3de9459185373842349704c1af9129b6d -size 115260 +oid sha256:e5146203ff7ed08829cfdc0250e8842196c64a3b1aa650fa5a961f392d6ac632 +size 116424 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.settings.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.settings.png index 559f2d230..b1264f6cf 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.settings.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:715457882656559dca2ec8305bc1745fcf3a555a4e856f1f4567d2fc306e1bd3 -size 135210 +oid sha256:4b8ee93c602f3234d27ffef5a37d056b863c2229f13d936e120beff6e9545475 +size 133803 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleRegular.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleRegular.png index 02479accd..b33ccfa53 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleRegular.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleRegular.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c556b02ab2aa6872c2f9212ccd43a292a95e74c8adcf04c0058754c20b8d13ac -size 105453 +oid sha256:8ae59d97e3460807fbd4601ad4b5bab6653f21ccaa153985b06a347102e5f8eb +size 106027 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleUpgrade.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleUpgrade.png index 25a331f6b..a112842fa 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleUpgrade.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.simpleUpgrade.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0782a85f8017b04c95f6dcbb432ba628e29824b63891e4cc6dd84eccc223117 -size 98422 +oid sha256:2efc2ae369f595fbbe69c0a556463ee25001ecc8a289c49408a139091b978f19 +size 98701 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.softLogout.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.softLogout.png index e0cd1e43c..24225686e 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f3f78efc97f56080f8c10e411104ae24ead1872316be3bf88cd4d5cecdd6e9c -size 162578 +oid sha256:e2bdd6639810a8bf59585c2bd79c158c81ae4d51d9c71e39b860c61cc455102e +size 190591 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.splash.png b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.splash.png index 727176157..782a7bb21 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.splash.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-de-DE-iPhone-13-Pro-Max.splash.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10ead4fdbdaf52560944215135ad8835a1b262f71f635fb252835f17d55bb036 -size 258006 +oid sha256:f4cd0faea03ead4f931f9a7f7c9d5cf51b08540f5efb1ad1c14d7240d827b255 +size 258641 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.authenticationFlow.png index 6cf1dcaa9..1c37310e7 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:108ecc517fb80fca89e24f3bfc95142f5b51eefff1675c3418c756a0d24a5e1d -size 89599 +oid sha256:fb3e6ed888996da29e7173aaa9e4572aa71559b0520a537b9042514bf180531a +size 89672 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReport.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReport.png index a09b2fda1..8e181aff8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReport.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReport.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44d0346431450c2c9461945c938a706dd68915f05ead070b770d1de5f9bc9663 -size 123171 +oid sha256:5e7b977dcb5592a647454a101db7236daa1b9a4ffdee111e4fa4dff8ee895725 +size 124954 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReportWithScreenshot.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReportWithScreenshot.png index 6a1327f8d..6d65d25e8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReportWithScreenshot.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.bugReportWithScreenshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cbd68bc3057d84c57367b1e83dd380351f1e71a8ea7e3ec221bdb2180473ef57 -size 132124 +oid sha256:c5df6723ee6064c5aa26da5e0013fb518c274a051f81def6e985ecd91726df5c +size 133908 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.home.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.home.png index 514bcca16..b667169fa 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.home.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f07e47863e9972064b8fabda201eb097f2cc4288895e44795f6275f08f2cec6 -size 111639 +oid sha256:ffc6b5b2c2f19b4e57036a0d95da3f008321ab3bc8846caa2ff537c78d96ee8a +size 87125 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.login.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.login.png index 8eb951b5d..27df44d26 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.login.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c21811ab04c61bb4c7f984dbee4b4b4fb415ff3465f2a1710e097659d957edd -size 91917 +oid sha256:d9f310cf1779c86e3184f02499d492421c7ded7e6332549afae4efb36cdb2f20 +size 91844 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png index 3d8dd9678..24b39a0ba 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6ff042bf5131386b978e5445794726ebd39f64233a0dd13b177fa360b90573d -size 179281 +oid sha256:fd7a639209ba354035756c82cb11be0ede754469ed05e0c163d36f1d3fcae469 +size 200852 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomPlainNoAvatar.png index 0c220b74c..9a8121be1 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:332006c46bd36c85aa5447657e182484e566b1a86ea723e5054243c6d3a17a76 -size 179777 +oid sha256:71153d0113330cd2d76438601faf454e268ad103d57708494c922f9dfb4d97c2 +size 200292 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelection.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelection.png index 57db55ae1..001ee51ee 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelection.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a0ababf621dadadbc48ff89dc8a30da79edc4b215e5a1561e08152509f692c1 -size 94818 +oid sha256:1238dcb9ffc364b319e55423221a6d27fd535d91d13d313d67c5c272abe993e6 +size 95479 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelectionNonModal.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelectionNonModal.png index 21f11441c..f6767ac6a 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelectionNonModal.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.serverSelectionNonModal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31b6ed57d6d264a3619e64c319a03415a5b40f995d82eb73e81af22c7341ce17 -size 92014 +oid sha256:ced25c572a3e2f2d0d1478488492ebb702bcec84b13069e7faaad1b711138413 +size 92316 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.sessionVerification.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.sessionVerification.png index e3dcdb364..82559fb89 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.sessionVerification.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.sessionVerification.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4694112e7b0edcccac8d82041490e0e720a8c284a887a9862f999d2e41125f5 -size 85500 +oid sha256:3578668530f09bca5dbf2dcb481930079840a685f226de73ab7d45ec0de83492 +size 85603 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.settings.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.settings.png index 1a5c939f5..2020904b8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.settings.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc305f05d923778155d785b595f7a9a776e690652e84f7288559826cef18e849 -size 104989 +oid sha256:9a17256e109ab1af2fe2813f6a5cc3494e1b828446424f6d5f960b7d0bf4dc23 +size 107164 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleRegular.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleRegular.png index 4ae8e2652..5d6d0b7f2 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleRegular.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleRegular.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f5c4c55d5403567b5cf9f49e9d41d45e06c6da6b5b706320fd0ee2bd2ffea1e -size 87473 +oid sha256:057577f08b53ce5ee905e73c61c6a4edec8e53babc331f723fcec1b1f9a39c1d +size 87599 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleUpgrade.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleUpgrade.png index 04274bda9..ca252988f 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleUpgrade.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.simpleUpgrade.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6fa5a6ec19b4c6a507407b27ac97c1138b33ee13bcd9b4237d947600f722b08 -size 82329 +oid sha256:0d627fd8634ca4bda34e260a83644ec75c51bd0bdad3368181b8cdba19052378 +size 82422 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.softLogout.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.softLogout.png index 11b1d3021..ed5614d93 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb7fa08f6d0bef9fd94ea9b40b39724ffbdf27b0ffb0e84eabe8fe00903e2d3f -size 125863 +oid sha256:bfa89ca06d320d570731ee5da8f878a67d434b41f9675502acc1377ea5ae3ee2 +size 127382 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.splash.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.splash.png index 7ac0a46e4..d37fbdb97 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.splash.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPad-9th-generation.splash.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2e1dddd36dc9195fdfb6e5a84fdf6acc714a7ec9dae6d44a705d0b9490d5463f -size 171212 +oid sha256:8fb6bbb725e124be82b82456210692abdee39135bea4164af4e500efd9176454 +size 171560 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.authenticationFlow.png index cbffdd13c..b06c7cf6e 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64681993eaf0dbf360e207220d9daddc1989f667834f36b8645a96569d58551b -size 105734 +oid sha256:6d9cfc7f37be688030c974e6e39e905547136aca55f3b62cd119f2d7a313bd3c +size 107103 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReport.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReport.png index 5f2b8d819..53113e2a5 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReport.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReport.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2672746e55faa9c66e6e31696957d21d3a672c2d0af0c8dc7b3ad9bd49f1a6f1 -size 170448 +oid sha256:4d03fecff023bb49f81e2a0d1d5e13d0c5b024c1baff471477dcfc9001bc3275 +size 175992 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReportWithScreenshot.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReportWithScreenshot.png index 066429037..a0beef303 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReportWithScreenshot.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.bugReportWithScreenshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b53ea94280f4f6a143a2eed83b1ba880c650df25d5646f1d2739693a3bdf9237 -size 181610 +oid sha256:4d88e54fb6f048e7fbc5352c9318ba19485e27b4221468842d15289cb4bae314 +size 185651 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.home.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.home.png index 5123d410a..998164342 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.home.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6da901a8a5a795ef0e06045cc30dcd153528f8d129cf4f399d8cf79b204cf2c -size 123242 +oid sha256:efcd761236afb310e1374fe0c1d624bd1166f9231725eef78339f23cf51631aa +size 106013 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.login.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.login.png index 0b0c74747..102a8f780 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.login.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41a965ce05a6a3587d028c702cf1c9376c46f602818ccd35aa214a698a0827d7 -size 108247 +oid sha256:6a39999f57f243a60618ec39dba934afd06b75460034667d55ac6ba18f5004dc +size 109446 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png index 43a9549da..e5a09d207 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a09f2deb866181b689891a37ac64d9b4e4c033956688149a85f637a73cc58f2 -size 274466 +oid sha256:bc018b60cecb48717d47fa6937e2b017fa476683bc21e2ef5c815f258c3bb298 +size 330871 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomPlainNoAvatar.png index d78e9caa2..0194766fc 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e3720cf84874e05deafdeab9abd8c707bd5afde6911e630df3475093a41540df -size 275253 +oid sha256:7e303874c2eee31275d22bb59c4e28fb249c21b9df1828ad6f6434c4537e219f +size 329969 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelection.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelection.png index 569840180..02d043516 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelection.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:801aa76265506652e045d8522d33d357cad2cab68ce34d14f7d0bc0a8a0209b8 -size 116961 +oid sha256:31fc47a2d2dd1b4258ce6e827e71fe7e6bcd46fb4da367501a23abd521cbb65d +size 120159 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelectionNonModal.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelectionNonModal.png index 43528021a..5d2cea73e 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelectionNonModal.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.serverSelectionNonModal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f7aa02417f321f1a37ad9a556bbf7f9cd7aa4018b7e6cc5f9bf76b7fc4c9988 -size 112539 +oid sha256:fcd4724f334292387d4196adbae07bb33bd66614e3708923cf4149aa14594b14 +size 115481 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.sessionVerification.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.sessionVerification.png index c2b9aafb5..27f8c07f2 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.sessionVerification.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.sessionVerification.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8411ada29a2799c18ab4870561defd28069ed64c08fd2d58f1b607b8e54532b1 -size 106254 +oid sha256:4e81dca55f29e244fc538faedd92f778a2c74055073c7ea0ea00b2e96293c9dd +size 105871 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.settings.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.settings.png index cb0961e28..a0a83a096 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.settings.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41ba1c0a3b7ae66f166daa9b3009056a2bdc43de115dd4469b543d29554606f0 -size 134952 +oid sha256:e5cb68b1d4c4e35fde47237260bc7139f1f02a7dfaaec3ba2c5eac80e17f67cf +size 133880 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleRegular.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleRegular.png index 02479accd..b33ccfa53 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleRegular.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleRegular.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c556b02ab2aa6872c2f9212ccd43a292a95e74c8adcf04c0058754c20b8d13ac -size 105453 +oid sha256:8ae59d97e3460807fbd4601ad4b5bab6653f21ccaa153985b06a347102e5f8eb +size 106027 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleUpgrade.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleUpgrade.png index 25a331f6b..a112842fa 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleUpgrade.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.simpleUpgrade.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0782a85f8017b04c95f6dcbb432ba628e29824b63891e4cc6dd84eccc223117 -size 98422 +oid sha256:2efc2ae369f595fbbe69c0a556463ee25001ecc8a289c49408a139091b978f19 +size 98701 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.softLogout.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.softLogout.png index 7a6b7ad0f..340564914 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d4c99d6c7f66150e73b8d12381c2161f8bc681b2488cbb042b26623805994738 -size 162369 +oid sha256:ba8575a60541d569daa3b7762d41eef784b1d164c9344cc7137b3f8ae636864a +size 162514 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.splash.png b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.splash.png index a8d3c54e0..4c389ea6c 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.splash.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-en-GB-iPhone-13-Pro-Max.splash.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:433384f6329733e20014799039fcfdac904db5b5fa7cae2c76cf65a386c94bc3 -size 249922 +oid sha256:8fe83513db41f70302da5b529f040a52b777a6bd23f7ab4c9ccab66e74171a11 +size 250524 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.authenticationFlow.png index 0200a1609..e3f1eaaed 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:445db9ca6e3b4871ef0e844ec1b3f8ffb761ea43e62748f5e94538698c343c92 -size 91784 +oid sha256:b2279b6017dcd257e3f8d2a5d4d890418828ee743d2d80724127e6021a746870 +size 96834 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReport.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReport.png index 459bd2ff6..11e4c01b4 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReport.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReport.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:380d2576377916a7d90437c6668381e5af0adb8e01d4f5fcfa132487f52d1985 -size 130955 +oid sha256:124e8f64bec51d697415da375125047280bd3978136364424363cb72d1fe2055 +size 134034 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReportWithScreenshot.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReportWithScreenshot.png index 859cb72dc..06de4a29c 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReportWithScreenshot.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.bugReportWithScreenshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e888f76018543816a7f32321383dba4be1d60c5ba9d46099487c1d3462744d54 -size 139794 +oid sha256:26f060a3ba21e2e4789cf868ab724956ae68242e42ecb999d08ad24194bbcd3f +size 142752 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.home.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.home.png index 4009c18f2..90bf3ce61 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.home.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:312c0260f2fb2dfa3c2203878407b5736781d33d406ee2e1844dd17f83ca60c5 -size 114312 +oid sha256:7effb7dbb72efdbd10ef211847a6da5fee8e2152a4996ad7f29bf59392fda702 +size 89679 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.login.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.login.png index 2bd695f4e..56ef24321 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.login.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:330252d9a6ed7b9c7e53743a64ebd1d3cf253501c317dccf592fdb38aafdd796 -size 95841 +oid sha256:237ce7268a41ad92c2d2754db956113fe9cfd8f53a593e9398a8e9ba6bca369d +size 95986 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomEncryptedWithAvatar.png index e7f1aa245..be58340d0 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e32c0e11d7a862b0c6822aae6c37a353a70b773351c00bf26d2cac54d43e346f -size 179464 +oid sha256:e316e3f0217ee8c97816a164b8bc7af0a33140d5e1306a22ab35a3bfe91118fd +size 201036 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomPlainNoAvatar.png index 34f7f31fe..8f768db20 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e356c25fce49d9f0ce4777f977587aa2c5767f1efa17a7db7053fa0b965bb2dc -size 179956 +oid sha256:b33ee5a642f22ac83993299de1366263706b6a1cc4da064850efc2d567385fc0 +size 200468 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelection.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelection.png index f457d8244..9150478a8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelection.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcaafae1df85368cd9494eb482c9aa0fb6275cb23459329ef5270a612c065580 -size 94310 +oid sha256:8ee28723c55d32676d735e1dcd64b294ac04ba47bf16abc9134398b300fba055 +size 98869 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelectionNonModal.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelectionNonModal.png index 21f11441c..5d1a8321a 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelectionNonModal.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.serverSelectionNonModal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31b6ed57d6d264a3619e64c319a03415a5b40f995d82eb73e81af22c7341ce17 -size 92014 +oid sha256:e4976359b7ed1cd4e09345a1c28e31989e4c87d774242a73abb2d8ccf4851af5 +size 97442 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.sessionVerification.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.sessionVerification.png index 329ff384d..44c38dd22 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.sessionVerification.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.sessionVerification.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eaf1e474481bb1cf922028d01dc4a6908ebf108725f27986dd68705f2e944763 -size 90584 +oid sha256:07682a6297c0319e25882ab2796f4eb3036b3888334771336c75dc58b065fb1f +size 90598 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.settings.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.settings.png index 78b7e6d54..470951516 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.settings.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2060c8d80d4934790fb2cd1f24a5efe37d0e17d1ea35776517db4ef987e93691 -size 105403 +oid sha256:f2033e55ed0695cff97f3958ae3e86a9c6949451da27dc06a0b761c8e91b68e6 +size 107512 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleRegular.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleRegular.png index 4ae8e2652..5d6d0b7f2 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleRegular.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleRegular.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f5c4c55d5403567b5cf9f49e9d41d45e06c6da6b5b706320fd0ee2bd2ffea1e -size 87473 +oid sha256:057577f08b53ce5ee905e73c61c6a4edec8e53babc331f723fcec1b1f9a39c1d +size 87599 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleUpgrade.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleUpgrade.png index 04274bda9..ca252988f 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleUpgrade.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.simpleUpgrade.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d6fa5a6ec19b4c6a507407b27ac97c1138b33ee13bcd9b4237d947600f722b08 -size 82329 +oid sha256:0d627fd8634ca4bda34e260a83644ec75c51bd0bdad3368181b8cdba19052378 +size 82422 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.softLogout.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.softLogout.png index b06da514a..a510084ac 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca80888ec562d5f0dc82133ba690e4b8a4dd9f546013662b43b301ed8168ab03 -size 127108 +oid sha256:f161c4affa159e69a038d40e202d5b871ecca6d0bc46743947c05ff68c411b66 +size 135281 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.splash.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.splash.png index 4898347f5..3f8443c54 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.splash.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPad-9th-generation.splash.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:581c7ea6f24f07a80d86756f06609bea0bb9440041ec5c0719321ded60aacf8b -size 169753 +oid sha256:6a376f4c29800da51e597018972f700fcf748ee1677e2338726ea5793221327d +size 170367 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.authenticationFlow.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.authenticationFlow.png index d7a915992..84ad680eb 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.authenticationFlow.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.authenticationFlow.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd53cb8b8837d9c771a90a83d95691693d00fae618b53e1d3c0cbae7a1669acc -size 109065 +oid sha256:7d67c8fc8bf8b074407df9ae2caf6040165025c400a28f23199bdbd46d2e07c3 +size 110603 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReport.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReport.png index 52b543bd0..931771648 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReport.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReport.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5071268b2deadb73227799a90e4065f403d67554cee082c728e49549a4f97346 -size 186529 +oid sha256:235f3b2e0d19c8bfa838d1412fd520fef6c692f1301dea1a5d5a544d9992b5ee +size 192951 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReportWithScreenshot.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReportWithScreenshot.png index 3b4aaef73..c7f48cee7 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReportWithScreenshot.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.bugReportWithScreenshot.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e63697154d46486cbbfbea13158e1ad9fdfa9263bd058f8065db8e760a33b345 -size 197311 +oid sha256:95181fa30d5985b0d22e8a29e7e6f8ec59b2e2e0346c04bf41a7778935a0f1d8 +size 200054 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.home.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.home.png index e333be94a..76577283b 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.home.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.home.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7572501ece85e6a54ed9a77e1f6b0df187578d6a182b8e3b733e501fe7395eda -size 128434 +oid sha256:d396d5f7797b6d0100b1b9c67f5ebc2774274292c753b46735403a11dedfe6ba +size 110607 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.login.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.login.png index a758d8b89..3b7f91e95 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.login.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.login.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:840c3f08f06ca465988afdae758589b0679df4033be8e21ed4aa975b97d1629e -size 114124 +oid sha256:490882ed62cdebc4b28e512ad99e1b0d71e0f72d0720e388578de3c80e40e742 +size 115638 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png index 985886383..db2724778 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomEncryptedWithAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:857e89d001c41d8b715fbf6c2530f27bdeebe4fd5e73ff951758e91d05a9cbdf -size 274849 +oid sha256:04a7772a145322dda033f0ef94d3a67b2f5784960dbec30e08895c329b5c970d +size 331631 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomPlainNoAvatar.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomPlainNoAvatar.png index e2c427410..59a99526d 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomPlainNoAvatar.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.roomPlainNoAvatar.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8dff5bdc24963c9f64039176bcc17a98d2db9902e36c78144b1235de534cf764 -size 275646 +oid sha256:4156214696b516d4d3b047469cd5fed05cbc1288209d59645bea1d43ee6b9f5d +size 330703 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelection.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelection.png index f5288e8de..f4017b962 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelection.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelection.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1b2e08264387daf2b51bb5b73ca435157dd06f7f185070ef646436a967e2220 -size 116051 +oid sha256:be6dc9abae7b9e9ef476257b931c728da7c20f9998f6ecd425e0390640d836ce +size 122738 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelectionNonModal.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelectionNonModal.png index 43528021a..840662e01 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelectionNonModal.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.serverSelectionNonModal.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f7aa02417f321f1a37ad9a556bbf7f9cd7aa4018b7e6cc5f9bf76b7fc4c9988 -size 112539 +oid sha256:a61dba18397e5d9bfdfe9219f94aea3cd4ba2ee00e8ef0c7a563bca89ebbe894 +size 120089 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.sessionVerification.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.sessionVerification.png index 671f4e28b..0607c09b8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.sessionVerification.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.sessionVerification.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:46dfaec839bfeecbdfaec5d99370beb320cc54c4053b48b1c54b2b08ab2fe225 -size 112952 +oid sha256:078515a6ba899923ebaed06f543b2f54430d5634433968cfd26617a6007f7669 +size 113766 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.settings.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.settings.png index 0866c53ac..7a7a64bd7 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.settings.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.settings.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e2679e5d9d7f780e1561d15ee0cc94f4c551cfa9556c6d474c65f4789dda915 -size 136740 +oid sha256:7d4aea69c43981d2aa619be236d824b85739c7c49139400eb75610273186fd68 +size 135550 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleRegular.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleRegular.png index 02479accd..b33ccfa53 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleRegular.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleRegular.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c556b02ab2aa6872c2f9212ccd43a292a95e74c8adcf04c0058754c20b8d13ac -size 105453 +oid sha256:8ae59d97e3460807fbd4601ad4b5bab6653f21ccaa153985b06a347102e5f8eb +size 106027 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleUpgrade.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleUpgrade.png index 25a331f6b..a112842fa 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleUpgrade.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.simpleUpgrade.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0782a85f8017b04c95f6dcbb432ba628e29824b63891e4cc6dd84eccc223117 -size 98422 +oid sha256:2efc2ae369f595fbbe69c0a556463ee25001ecc8a289c49408a139091b978f19 +size 98701 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.softLogout.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.softLogout.png index 6bbfbfc99..7d865d86d 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.softLogout.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.softLogout.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d76e249f29ab646ac6d911aea1277495b0670e7dffd8e0271170fa60fe08ab0a -size 163890 +oid sha256:fa6d9f45c8fb0e25f0217e47ce32fb444b309ed6d0e5e857905f0cd2baf645bc +size 177878 diff --git a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.splash.png b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.splash.png index ddb8c1da5..ba25f04e8 100644 --- a/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.splash.png +++ b/UITests/Sources/__Snapshots__/Application/15-5-fr-FR-iPhone-13-Pro-Max.splash.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f2b175231e2304c5f60e42760694ce780918b5b2200b30c4366492bc595f6b48 -size 247109 +oid sha256:d3003f2380f25ef7d592f9a6130130302f220afc70bd4855a6ef54f1dcdaa2af +size 248131