diff --git a/ElementX.xcodeproj/project.pbxproj b/ElementX.xcodeproj/project.pbxproj index 162c5b6a3..a5012aa98 100644 --- a/ElementX.xcodeproj/project.pbxproj +++ b/ElementX.xcodeproj/project.pbxproj @@ -8895,7 +8895,7 @@ repositoryURL = "https://github.com/element-hq/compound-ios"; requirement = { kind = revision; - revision = 4aa89193ba5bfa0d83f9bbc584900e518fdb3a26; + revision = 4cadcbcf1d4102e9a8114842c4def62cd8989de3; }; }; F76A08D0EA29A07A54F4EB4D /* XCRemoteSwiftPackageReference "swift-collections" */ = { diff --git a/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 7f7fa3a5b..22d3351c4 100644 --- a/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/ElementX.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -6,8 +6,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/element-hq/compound-design-tokens", "state" : { - "revision" : "45818d8a7183a6838414791de50fbcea6a49100c", - "version" : "4.0.1" + "revision" : "00a392cf3e907fb2ebc49a9590f7a0a97c175c0f", + "version" : "5.0.0" } }, { @@ -15,7 +15,7 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/element-hq/compound-ios", "state" : { - "revision" : "4aa89193ba5bfa0d83f9bbc584900e518fdb3a26" + "revision" : "4cadcbcf1d4102e9a8114842c4def62cd8989de3" } }, { diff --git a/ElementX/Sources/Application/AppSettings.swift b/ElementX/Sources/Application/AppSettings.swift index 3fd3a490f..c88204d7b 100644 --- a/ElementX/Sources/Application/AppSettings.swift +++ b/ElementX/Sources/Application/AppSettings.swift @@ -46,7 +46,6 @@ final class AppSettings { case optimizeMediaUploads case appAppearance case sharePresence - case isNewBloomEnabled case elementCallBaseURLOverride @@ -347,9 +346,6 @@ final class AppSettings { @UserPreference(key: UserDefaultsKeys.threadsEnabled, defaultValue: isDevelopmentBuild, storageType: .userDefaults(store)) var developerOptionsEnabled - @UserPreference(key: UserDefaultsKeys.isNewBloomEnabled, defaultValue: false, storageType: .userDefaults(store)) - var isNewBloomEnabled - #endif // MARK: - Shared diff --git a/ElementX/Sources/Other/Pills/PillView.swift b/ElementX/Sources/Other/Pills/PillView.swift index 16cdeecce..995f46821 100644 --- a/ElementX/Sources/Other/Pills/PillView.swift +++ b/ElementX/Sources/Other/Pills/PillView.swift @@ -15,11 +15,11 @@ struct PillView: View { let didChangeText: () -> Void var textColor: Color { - context.viewState.isOwnMention ? .compound._textOwnPill : .compound.textPrimary + context.viewState.isOwnMention ? .compound.textBadgeAccent : .compound.textPrimary } var backgroundColor: Color { - context.viewState.isOwnMention ? .compound._bgOwnPill : .compound._bgPill + context.viewState.isOwnMention ? .compound.bgBadgeAccent : .compound.bgBadgeDefault } var body: some View { diff --git a/ElementX/Sources/Other/SwiftUI/Views/AvatarHeaderView.swift b/ElementX/Sources/Other/SwiftUI/Views/AvatarHeaderView.swift index 4eee1b71e..b3f9a1970 100644 --- a/ElementX/Sources/Other/SwiftUI/Views/AvatarHeaderView.swift +++ b/ElementX/Sources/Other/SwiftUI/Views/AvatarHeaderView.swift @@ -134,19 +134,19 @@ struct AvatarHeaderView: View { case .encrypted(true): BadgeLabel(title: L10n.screenRoomDetailsBadgeEncrypted, icon: \.lockSolid, - isHighlighted: true) + style: .accent) case .encrypted(false): BadgeLabel(title: L10n.screenRoomDetailsBadgeNotEncrypted, icon: \.lockOff, - isHighlighted: false) + style: .info) case .public: BadgeLabel(title: L10n.screenRoomDetailsBadgePublic, icon: \.public, - isHighlighted: false) + style: .info) case .verified: BadgeLabel(title: L10n.commonVerified, icon: \.verified, - isHighlighted: true) + style: .accent) } } } diff --git a/ElementX/Sources/Other/SwiftUI/Views/BadgeLabel.swift b/ElementX/Sources/Other/SwiftUI/Views/BadgeLabel.swift index 951736f81..f72b5e029 100644 --- a/ElementX/Sources/Other/SwiftUI/Views/BadgeLabel.swift +++ b/ElementX/Sources/Other/SwiftUI/Views/BadgeLabel.swift @@ -9,46 +9,64 @@ import Compound import SwiftUI struct BadgeLabel: View { + enum Style { + case accent + case info + case `default` + } + let title: String let icon: KeyPath - let isHighlighted: Bool + let style: Style var body: some View { Label(title, icon: icon, iconSize: .xSmall, relativeTo: .compound.bodySM) - .labelStyle(BadgeLabelStyle(isHighlighted: isHighlighted)) - } -} - -private struct BadgeLabelStyle: LabelStyle { - let isHighlighted: Bool - - var titleColor: Color { - isHighlighted ? .compound.textBadgeAccent : .compound.textBadgeInfo + .labelStyle(LabelStyle(style: style)) } - var iconColor: Color { - isHighlighted ? .compound.iconSuccessPrimary : .compound.iconInfoPrimary - } - - var backgroundColor: Color { - isHighlighted ? .compound.bgBadgeAccent : .compound.bgBadgeInfo - } - - func makeBody(configuration: Configuration) -> some View { - HStack(spacing: 4) { - configuration.icon - .foregroundStyle(iconColor) - configuration.title - .foregroundStyle(titleColor) + private struct LabelStyle: SwiftUI.LabelStyle { + let style: Style + + var titleColor: Color { + switch style { + case .accent: .compound.textBadgeAccent + case .info: .compound.textBadgeInfo + case .default: .compound.textPrimary + } + } + + var iconColor: Color { + switch style { + case .accent: .compound.iconAccentPrimary + case .info: .compound.iconInfoPrimary + case .default: .compound.iconPrimary + } + } + + var backgroundColor: Color { + switch style { + case .accent: .compound.bgBadgeAccent + case .info: .compound.bgBadgeInfo + case .default: .compound.bgBadgeDefault + } + } + + func makeBody(configuration: Configuration) -> some View { + HStack(spacing: 4) { + configuration.icon + .foregroundStyle(iconColor) + configuration.title + .foregroundStyle(titleColor) + } + .font(.compound.bodySM) + .padding(.leading, 8) + .padding(.trailing, 12) + .padding(.vertical, 4) + .background(Capsule().fill(backgroundColor)) } - .font(.compound.bodySM) - .padding(.leading, 8) - .padding(.trailing, 12) - .padding(.vertical, 4) - .background(Capsule().fill(backgroundColor)) } } @@ -57,10 +75,13 @@ struct BadgeLabel_Previews: PreviewProvider, TestablePreview { VStack(spacing: 10) { BadgeLabel(title: "Encrypted", icon: \.lockSolid, - isHighlighted: true) + style: .accent) BadgeLabel(title: "Not encrypted", icon: \.lockSolid, - isHighlighted: false) + style: .info) + BadgeLabel(title: "1234", + icon: \.userProfile, + style: .default) } } } diff --git a/ElementX/Sources/Other/SwiftUI/Views/HorizontalHighlightGradient.swift b/ElementX/Sources/Other/SwiftUI/Views/HorizontalHighlightGradient.swift index 01e3be83c..1c91fe54e 100644 --- a/ElementX/Sources/Other/SwiftUI/Views/HorizontalHighlightGradient.swift +++ b/ElementX/Sources/Other/SwiftUI/Views/HorizontalHighlightGradient.swift @@ -8,28 +8,29 @@ import Compound import SwiftUI +extension View { + func highlight(gradient: Gradient, borderColor: Color, backgroundColor: Color = .clear) -> some View { + modifier(HorizontalHighlightGradient(gradient: gradient, borderColor: borderColor, backgroundColor: backgroundColor)) + } +} + struct HorizontalHighlightGradient: ViewModifier { + let gradient: Gradient let borderColor: Color - let primaryColor: Color - let secondaryColor: Color + let backgroundColor: Color func body(content: Content) -> some View { ZStack(alignment: .top) { VStack(spacing: 0) { borderColor .frame(height: 1) - LinearGradient(colors: [primaryColor, secondaryColor], + LinearGradient(gradient: gradient, startPoint: .top, endPoint: .bottom) + .background(backgroundColor) } content .layoutPriority(1) } } } - -extension View { - func highlight(borderColor: Color, primaryColor: Color, secondaryColor: Color) -> some View { - modifier(HorizontalHighlightGradient(borderColor: borderColor, primaryColor: primaryColor, secondaryColor: secondaryColor)) - } -} diff --git a/ElementX/Sources/Screens/HomeScreen/HomeScreenModels.swift b/ElementX/Sources/Screens/HomeScreen/HomeScreenModels.swift index 730b1ac28..e42046044 100644 --- a/ElementX/Sources/Screens/HomeScreen/HomeScreenModels.swift +++ b/ElementX/Sources/Screens/HomeScreen/HomeScreenModels.swift @@ -105,10 +105,6 @@ struct HomeScreenViewState: BindableState { var reportRoomEnabled = false - // Intentionally not mutable so that we don't have to reset the navigation bar's - // appearance whenever the feature flag is toggled (requires a restart). - let isNewBloomEnabled: Bool - var visibleRooms: [HomeScreenRoom] { if roomListMode == .skeletons { return placeholderRooms diff --git a/ElementX/Sources/Screens/HomeScreen/HomeScreenViewModel.swift b/ElementX/Sources/Screens/HomeScreen/HomeScreenViewModel.swift index 13b7bd977..c8803a95c 100644 --- a/ElementX/Sources/Screens/HomeScreen/HomeScreenViewModel.swift +++ b/ElementX/Sources/Screens/HomeScreen/HomeScreenViewModel.swift @@ -40,7 +40,7 @@ class HomeScreenViewModel: HomeScreenViewModelType, HomeScreenViewModelProtocol roomSummaryProvider = userSession.clientProxy.roomSummaryProvider - super.init(initialViewState: .init(userID: userSession.clientProxy.userID, isNewBloomEnabled: appSettings.isNewBloomEnabled), + super.init(initialViewState: .init(userID: userSession.clientProxy.userID), mediaProvider: userSession.mediaProvider) userSession.clientProxy.userAvatarURLPublisher diff --git a/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift b/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift index e71c1b2c5..5f30b52c2 100644 --- a/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift +++ b/ElementX/Sources/Screens/HomeScreen/View/BloomModifier.swift @@ -10,18 +10,13 @@ import SwiftUI import SwiftUIIntrospect extension View { - // Note: The dependency on HomeScreenViewModel.Context will be removed in the next iteration. @ViewBuilder - func bloom(context: HomeScreenViewModel.Context, scrollViewAdapter: ScrollViewAdapter, isNewBloomEnabled: Bool) -> some View { - if isNewBloomEnabled { - modifier(NewBloomModifier()) - } else { - modifier(BloomModifier(context: context, scrollViewAdapter: scrollViewAdapter)) - } + func bloom() -> some View { + modifier(BloomModifier()) } } -struct NewBloomModifier: ViewModifier { +private struct BloomModifier: ViewModifier { @State private var standardAppearance = UINavigationBarAppearance() @State private var scrollEdgeAppearance = UINavigationBarAppearance() @@ -63,149 +58,10 @@ struct NewBloomModifier: ViewModifier { } private var bloomGradient: some View { - LinearGradient(colors: [.compound._bgOwnPill, .clear], // This isn't the final gradient. + LinearGradient(gradient: .compound.subtle, startPoint: .top, endPoint: .init(x: 0.5, y: 0.7)) .ignoresSafeArea(edges: .all) .frame(width: 256, height: 256) } } - -struct BloomModifier: ViewModifier { - @ObservedObject var context: HomeScreenViewModel.Context - - let scrollViewAdapter: ScrollViewAdapter - - // Bloom components - @State private var bloomView: UIView? - @State private var leftBarButtonView: UIView? - @State private var gradientView: UIView? - @State private var navigationBarContainer: UIView? - @State private var hairlineView: UIView? - - func body(content: Content) -> some View { - content - .introspect(.viewController, on: .supportedVersions) { controller in - Task { - if bloomView == nil { - makeBloomView(controller: controller) - } - } - let isTopController = controller.navigationController?.topViewController != controller - let isHidden = isTopController || context.isSearchFieldFocused - if let bloomView { - bloomView.isHidden = isHidden - UIView.transition(with: bloomView, duration: 1.75, options: .curveEaseInOut) { - bloomView.alpha = isTopController ? 0 : 1 - } - } - gradientView?.isHidden = isHidden - navigationBarContainer?.clipsToBounds = !isHidden - hairlineView?.isHidden = isHidden || !scrollViewAdapter.isAtTopEdge.value - if !isHidden { - updateBloomCenter() - } - } - .onReceive(scrollViewAdapter.isAtTopEdge.removeDuplicates()) { value in - hairlineView?.isHidden = !value - guard let gradientView else { - return - } - if value { - UIView.transition(with: gradientView, duration: 0.3, options: .curveEaseIn) { - gradientView.alpha = 0 - } - } else { - gradientView.alpha = 1 - } - } - } - - private var bloomGradient: some View { - LinearGradient(colors: [.clear, .compound.bgCanvasDefault], startPoint: .top, endPoint: .bottom) - .mask { - LinearGradient(stops: [.init(color: .white, location: 0.75), .init(color: .clear, location: 1.0)], - startPoint: .leading, - endPoint: .trailing) - } - .ignoresSafeArea(edges: .all) - } - - private func makeBloomView(controller: UIViewController) { - guard let navigationBarContainer = controller.navigationController?.navigationBar.subviews.first, - let leftBarButtonView = controller.navigationItem.leadingItemGroups.first?.barButtonItems.first?.customView else { - return - } - - let bloomController = UIHostingController(rootView: bloom) - bloomController.view.translatesAutoresizingMaskIntoConstraints = true - bloomController.view.backgroundColor = .clear - navigationBarContainer.insertSubview(bloomController.view, at: 0) - self.leftBarButtonView = leftBarButtonView - bloomView = bloomController.view - self.navigationBarContainer = navigationBarContainer - updateBloomCenter() - - let gradientController = UIHostingController(rootView: bloomGradient) - gradientController.view.backgroundColor = .clear - gradientController.view.translatesAutoresizingMaskIntoConstraints = false - navigationBarContainer.insertSubview(gradientController.view, aboveSubview: bloomController.view) - - let constraints = [gradientController.view.bottomAnchor.constraint(equalTo: navigationBarContainer.bottomAnchor), - gradientController.view.trailingAnchor.constraint(equalTo: navigationBarContainer.trailingAnchor), - gradientController.view.leadingAnchor.constraint(equalTo: navigationBarContainer.leadingAnchor), - gradientController.view.heightAnchor.constraint(equalToConstant: 40)] - constraints.forEach { $0.isActive = true } - gradientView = gradientController.view - - let dividerController = UIHostingController(rootView: Divider().ignoresSafeArea()) - dividerController.view.translatesAutoresizingMaskIntoConstraints = false - navigationBarContainer.addSubview(dividerController.view) - let dividerConstraints = [dividerController.view.bottomAnchor.constraint(equalTo: gradientController.view.bottomAnchor), - dividerController.view.widthAnchor.constraint(equalTo: gradientController.view.widthAnchor), - dividerController.view.leadingAnchor.constraint(equalTo: gradientController.view.leadingAnchor)] - dividerConstraints.forEach { $0.isActive = true } - hairlineView = dividerController.view - } - - private func updateBloomCenter() { - guard let leftBarButtonView, - let bloomView, - let navigationBarContainer = bloomView.superview else { - return - } - - let center = leftBarButtonView.convert(leftBarButtonView.center, to: navigationBarContainer.coordinateSpace) - bloomView.center = center - } - - private var bloom: some View { - BloomView(context: context) - } -} - -private struct BloomView: View { - @ObservedObject var context: HomeScreenViewModel.Context - @Environment(\.colorScheme) private var colorScheme - - var body: some View { - ZStack { - avatar - .blur(radius: 64) - .blendMode(colorScheme == .dark ? .exclusion : .hardLight) - .opacity(colorScheme == .dark ? 0.50 : 0.20) - avatar - .blur(radius: 64) - .blendMode(.color) - .opacity(colorScheme == .dark ? 0.20 : 0.80) - } - } - - private var avatar: some View { - LoadableAvatarImage(url: context.viewState.userAvatarURL, - name: context.viewState.userDisplayName, - contentID: context.viewState.userID, - avatarSize: .custom(256), - mediaProvider: context.mediaProvider) - } -} diff --git a/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift b/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift index 58851f479..cbc4a24eb 100644 --- a/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift +++ b/ElementX/Sources/Screens/HomeScreen/View/HomeScreen.swift @@ -25,9 +25,7 @@ struct HomeScreen: View { .toolbar { toolbar } .background(Color.compound.bgCanvasDefault.ignoresSafeArea()) .track(screen: .Home) - .bloom(context: context, - scrollViewAdapter: scrollViewAdapter, - isNewBloomEnabled: context.viewState.isNewBloomEnabled) + .bloom() .sentryTrace("\(Self.self)") } diff --git a/ElementX/Sources/Screens/JoinRoomScreen/View/JoinRoomScreen.swift b/ElementX/Sources/Screens/JoinRoomScreen/View/JoinRoomScreen.swift index 087a8390c..5fcf7b4ce 100644 --- a/ElementX/Sources/Screens/JoinRoomScreen/View/JoinRoomScreen.swift +++ b/ElementX/Sources/Screens/JoinRoomScreen/View/JoinRoomScreen.swift @@ -94,7 +94,7 @@ struct JoinRoomScreen: View { } if !context.viewState.isDMInvite, let memberCount = context.viewState.roomDetails?.memberCount { - BadgeLabel(title: "\(memberCount)", icon: \.userProfile, isHighlighted: false) + BadgeLabel(title: "\(memberCount)", icon: \.userProfile, style: .default) } if let topic = context.viewState.roomDetails?.topic { diff --git a/ElementX/Sources/Screens/RoomScreen/ComposerToolbar/View/FormattingToolbar.swift b/ElementX/Sources/Screens/RoomScreen/ComposerToolbar/View/FormattingToolbar.swift index bf25fea4a..4803f2af4 100644 --- a/ElementX/Sources/Screens/RoomScreen/ComposerToolbar/View/FormattingToolbar.swift +++ b/ElementX/Sources/Screens/RoomScreen/ComposerToolbar/View/FormattingToolbar.swift @@ -41,7 +41,7 @@ private extension FormatItem { var foregroundColor: Color { switch state { case .reversed: - return .compound.iconSuccessPrimary + return .compound.iconAccentPrimary case .enabled: return .compound.iconSecondary case .disabled: @@ -52,7 +52,7 @@ private extension FormatItem { var backgroundColor: Color { switch state { case .reversed: - return .compound._bgAccentSelected + return .compound.bgAccentSelected case .enabled, .disabled: return .compound.bgCanvasDefault } diff --git a/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift b/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift index 98b6009ed..c1c8cf15f 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/RoomScreen.swift @@ -137,9 +137,9 @@ struct RoomScreen: View { .padding(.top, 16) .padding(.horizontal, 16) .padding(.bottom, 12) - .highlight(borderColor: .compound.borderInfoSubtle, - primaryColor: .compound.bgInfoSubtle, - secondaryColor: .compound.bgCanvasDefault) + .highlight(gradient: .compound.info, + borderColor: .compound.borderInfoSubtle, + backgroundColor: .compound.bgCanvasDefault) } @ViewBuilder diff --git a/ElementX/Sources/Screens/RoomScreen/View/RoomScreenFooterView.swift b/ElementX/Sources/Screens/RoomScreen/View/RoomScreenFooterView.swift index 28381ee2c..0a48b0ca4 100644 --- a/ElementX/Sources/Screens/RoomScreen/View/RoomScreenFooterView.swift +++ b/ElementX/Sources/Screens/RoomScreen/View/RoomScreenFooterView.swift @@ -5,6 +5,7 @@ // Please see LICENSE files in the repository root for full details. // +import Compound import SwiftUI struct RoomScreenFooterView: View { @@ -23,21 +24,23 @@ struct RoomScreenFooterView: View { } } - private var gradientColor: Color { + private var gradient: Gradient { switch details { case .pinViolation: - .compound.bgInfoSubtle + .compound.info case .verificationViolation: - .compound.bgCriticalSubtle + Gradient(colors: [.compound.bgCriticalSubtle, .clear]) case .none: - Color.compound.bgCanvasDefault + Gradient(colors: [.clear]) } } var body: some View { if let details { detailsView(details) - .highlight(borderColor: borderColor, primaryColor: gradientColor, secondaryColor: .compound.bgCanvasDefault) + .highlight(gradient: gradient, + borderColor: borderColor, + backgroundColor: .compound.bgCanvasDefault) .padding(.top, 8) .fixedSize(horizontal: false, vertical: true) } diff --git a/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/DeveloperOptionsScreenModels.swift b/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/DeveloperOptionsScreenModels.swift index 0ce737565..2037dd37b 100644 --- a/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/DeveloperOptionsScreenModels.swift +++ b/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/DeveloperOptionsScreenModels.swift @@ -46,7 +46,6 @@ protocol DeveloperOptionsProtocol: AnyObject { var elementCallBaseURLOverride: URL? { get set } var knockingEnabled: Bool { get set } var threadsEnabled: Bool { get set } - var isNewBloomEnabled: Bool { get set } var hideQuietNotificationAlerts: Bool { get set } } diff --git a/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/View/DeveloperOptionsScreen.swift b/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/View/DeveloperOptionsScreen.swift index 6276b71e3..d8a224a8c 100644 --- a/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/View/DeveloperOptionsScreen.swift +++ b/ElementX/Sources/Screens/Settings/DeveloperOptionsScreen/View/DeveloperOptionsScreen.swift @@ -50,11 +50,6 @@ struct DeveloperOptionsScreen: View { Toggle(isOn: $context.fuzzyRoomListSearchEnabled) { Text("Fuzzy searching") } - - Toggle(isOn: $context.isNewBloomEnabled) { - Text("New bloom appearance") - Text("Requires app reboot") - } } Section("Join rules") { diff --git a/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/HighlightedTimelineItemModifier.swift b/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/HighlightedTimelineItemModifier.swift index e11ae4515..5f0b4725c 100644 --- a/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/HighlightedTimelineItemModifier.swift +++ b/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/HighlightedTimelineItemModifier.swift @@ -23,15 +23,15 @@ private struct HighlightedTimelineItemModifier: ViewModifier { .background { if isHighlighted { VStack(spacing: 0) { - Color.compound._bgBubbleHighlighted - LinearGradient(colors: [.compound._bgBubbleHighlighted, .clear], + Color.compound.gradientSubtleStop1 + LinearGradient(gradient: .compound.subtle, startPoint: .top, endPoint: .bottom) .frame(maxHeight: 200) .layoutPriority(1) } .overlay(alignment: .top) { - Color.compound.bgAccentRest + Color.compound.borderAccentSubtle .frame(height: 1) } } diff --git a/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/TimelineStartRoomTimelineView.swift b/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/TimelineStartRoomTimelineView.swift index c4df20646..986961a73 100644 --- a/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/TimelineStartRoomTimelineView.swift +++ b/ElementX/Sources/Screens/Timeline/View/TimelineItemViews/TimelineStartRoomTimelineView.swift @@ -46,7 +46,7 @@ struct TimelineStartRoomTimelineView: View { .padding(.top, 16) .padding(.bottom, 8) .padding(.horizontal, 16) - .highlight(borderColor: .compound.borderInfoSubtle, primaryColor: .compound.bgInfoSubtle, secondaryColor: Color.clear) + .highlight(gradient: .compound.info, borderColor: .compound.borderInfoSubtle) } private var title: String { diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-en-GB-0.png index 89ccbeb4d..133598efb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d7c3c922a7f7dcc3603262eb901acab8800d32dfa1966e7da944c8ce2153b8a -size 75689 +oid sha256:d8043f5fba6f552fd761eaf5f37b69159da2f34cc87a61056fa33892c9751fbd +size 78985 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-pseudo-0.png index 89ccbeb4d..133598efb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d7c3c922a7f7dcc3603262eb901acab8800d32dfa1966e7da944c8ce2153b8a -size 75689 +oid sha256:d8043f5fba6f552fd761eaf5f37b69159da2f34cc87a61056fa33892c9751fbd +size 78985 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png index a2e2af2b3..a526fe10e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:970fd6a95b0ae9893db5f863950bdd6cbe2e12f648307d6990ae9e0881b95754 -size 34260 +oid sha256:6f5a4c4582ef62565cf2386ab0b71c0817becdd092894d08c84a8eca63411984 +size 37235 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png index a2e2af2b3..a526fe10e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:970fd6a95b0ae9893db5f863950bdd6cbe2e12f648307d6990ae9e0881b95754 -size 34260 +oid sha256:6f5a4c4582ef62565cf2386ab0b71c0817becdd092894d08c84a8eca63411984 +size 37235 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png index 6f67fa2ae..ffe74cfb6 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95b63f112a7b3afea22dcb5e15b78d9a1f1eb450d3a577360b9efc5e2e77c2c9 -size 99035 +oid sha256:6b1899c746fbdda24884e1767cdde32f440d90e2d5c72ae8a4deaf29518d123f +size 98935 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png index 190db2a92..9d1c6233f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:24c29efa36f9caab05536b1422988a7203661ef72b6d7d75f7f2729d965f5ab8 -size 99849 +oid sha256:c2a09d457aa811bbc77555de5fc66fb027bb387c4059b3c8f0b7d8c8e0b1ab39 +size 99749 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png index 5a0181535..9bd1d7959 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a624dd19ae7d8976591004d1142647a5e69b83c8f8fd87a0bede6c7ed95aa12 -size 56169 +oid sha256:f750f6783076ef9f0de9b12bb9e27e19831ed74264b198228c75bdf863fac2ca +size 56084 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png index aa50643ed..7a6ed95ae 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c92cdab0be98bb1de37d888ac9adcd3f29c0473f1b2220f6d52fc293465c0dd5 -size 57003 +oid sha256:beed583ef35e23e1d950e0ae79a358ba90e617ea1733ae44b23831bf7bcbdf38 +size 56918 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-en-GB.png index a371795b5..ad2dff97f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3137ef502a6372a6da696f5b0d304267936bc10a708812e09e2791f9965369df -size 277163 +oid sha256:6da015fc8dfdee8f727ae417d2858b163a460d0011bea0a3cd2a45f93f4a829b +size 269709 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-pseudo.png index a371795b5..ad2dff97f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3137ef502a6372a6da696f5b0d304267936bc10a708812e09e2791f9965369df -size 277163 +oid sha256:6da015fc8dfdee8f727ae417d2858b163a460d0011bea0a3cd2a45f93f4a829b +size 269709 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png index 528273a73..bba921bf3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03acd358adcbe1b8186305336e16c036ed12ca313e6374996e5fdefd3be80ca4 -size 243464 +oid sha256:680cb8763815fce6bf01c3b70e6c05577e42bd9ce7f500262d5053bf3788c4fe +size 243251 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png index 528273a73..bba921bf3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03acd358adcbe1b8186305336e16c036ed12ca313e6374996e5fdefd3be80ca4 -size 243464 +oid sha256:680cb8763815fce6bf01c3b70e6c05577e42bd9ce7f500262d5053bf3788c4fe +size 243251 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png index b31156b35..c27952daa 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:498e426cdafbcef01c8e431bc5fab9150b5cd795915f914244fada9c1d28c54e -size 94117 +oid sha256:03fe18082110028b6a833b5a7ddefe87acc8d148bfd277deba361b30945011b2 +size 111861 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png index 86bd5fcee..b839d36c4 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4daf902f81c2f4a23c9544685f42bf6e8ea26d68dfcac72244c7811ee537a8eb -size 98432 +oid sha256:e9d19c4496bdefd144a70b97d7597285c04b48a4c52a6cc7e67c3b5eb4eb280c +size 116135 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png index b07b0aeb2..95fd50f8d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:875afd204492380b88399d7c0ce93cb605f949a22f582218f6de929473ca2235 -size 53420 +oid sha256:6e2f3272221c65b074fec4533035a91cd70edbd5a4633a82a3c24c4822b5223f +size 67716 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png index d82d3767f..dadd4ce41 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da13548671e4afb3e371d2edef1b1097f23cdbff2dcfbc66ed3cfc3efdde1299 -size 63632 +oid sha256:be8e95fcbe4f70a985de7e2eef2850f52d5bb764767cb11f04bb451cfb2ed157 +size 78100 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png index 5448fd037..eccdd27e8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8857f34fc49bd98435b4e5595c10b1a463987f83084edc7682591993f69137e -size 260979 +oid sha256:747fcacfe0124acbca2edbacc54fd124608216136082d46e82265a7eb3fac8a4 +size 298835 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png index 752bd922b..0786eadd5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93bec421deab287621f9491cb3c8f1f6c5a2032f035b33c0e694eab5e73e40ae -size 269355 +oid sha256:cb758b28f1235738d0139a66b15d871add2f421e15280e227c147a8f31c0d211 +size 307275 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png index 78be0c8f2..54dc1b756 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c17c1409da49b67f48bbc12856a7411368741c1e987933d1304fef98aa1a81f -size 195209 +oid sha256:bd0f4c884dd0af89feea1df28182f5aba33a64e38eb9b5f0090ee777697bc025 +size 219728 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png index 452fbfa96..afc5091aa 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bdc4b92d1659096dc1bc61acfeab73799d520a990b34621ff398fa1563cbbf83 -size 202572 +oid sha256:70ee649ce5bd7babfbf22b71af1d23139668a5bd30148a75385b74fb1c54f7fe +size 227094 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png index ecc7cf50e..6bfa9b441 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbb929cb7177e45396a10b14ff1fddc351cfb6b5a5754fb1f52ef44666ebb3ab -size 92017 +oid sha256:bd987d59e92afefd5410c8a7ab81396c0b1d92d7f7ff4f1cd418b51342e91395 +size 110390 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png index 438b7dbd9..d85aeceef 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:686e08e7fb182eb86468c8fbc0905e52f26d2319c98e3be022a39181d8b511a9 -size 92729 +oid sha256:5b69d704994106be2aabe2d6dcf15ae22b43becc34054175f2a5bf0e2ab540ca +size 111025 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png index 8f4196232..5a2723a81 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0af4162fc19aa519aa0f2182cd3eab3d9e73d645cb550e545227d6f5617a38e -size 50109 +oid sha256:9a9cf69e89d2636a1e941b3a3e660eeb12546b8f4222f631f783f0e168f0ab99 +size 65679 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png index f6178a38f..c3b0f48c1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ccae5111908061e0a138ae2fc48b1aedc6bd889ed5380f352206bb2940f291a8 -size 50986 +oid sha256:462ecea74d80a94351f28bf401f07b772b82c992186d9db4dbb79c83963b1dda +size 66401 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png index 429dab899..5dc36e67a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bb95cfaa18cb26f9cc6c82a8c11d3f032b2af0c7c3eb5faad7003928196ad65f -size 207556 +oid sha256:48a3788ffed24280bbeeba840d4f75f5e6dba037b4d6c525f7456129b8dbe27f +size 207636 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png index b304f1af3..cae2245be 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f7d9eb659c324454b102746c9e583ce1276e68a1d262366bdc686dd7976c7ba -size 218268 +oid sha256:a4913673c2bce79a0f9b0f0b45a9a5dc6a0742160b392975fbca2d3424bb3d78 +size 218348 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png index f7af7d4dc..dddc10f03 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15a858e153b470913d8a6c6604f21332a69779a157608619e559f52da84aa337 -size 163128 +oid sha256:ba468042056e6c2d2531f3e20aa3410ecea5a81ad58d09b118042bf453f485f1 +size 163094 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png index 0df973c74..3d4a1a156 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a787a4a8bf924e33d934921e8799457187b3783d8bb2f2b3495f8a1710f07c70 -size 177515 +oid sha256:b084f87281f1a031086f2c79d9da812305e383da388bd1ce96ef9b88fc02be7a +size 177481 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png index 45829ca68..cee73df42 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3aacd30824f4fc78e2f92476cef0698c5144b2fc2241b7c5d4973baa272cb346 -size 207527 +oid sha256:0a99f6e4bb47e5ff5a8c911f6ae9707a83d5183e4dd11c8b42bf0bd726ec6dfa +size 207607 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png index 5e20c53af..512f1a92d 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7b793509581cbb362e946f030541822973c0fa4720be0b5a9b87d379267c2c2 -size 220412 +oid sha256:b0624c9f63c8ce9ad6706005cee922d4850fa3da5bc11be20f7ee477d0526043 +size 220492 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png index 12f33eade..ba3c75599 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2f59228951bf88dda39158ff20298daf6a950a0ed5d4dafeaaa4ba1712113119 -size 163017 +oid sha256:be7916e0e1f379faeeb3e903d13866d054b737b2afc2216b5419a8cf7cb6b9b0 +size 162983 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png index 4dcad201f..0a46d2210 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca7f92d79e4fb2f96e34ead07f04e354a28758edcd1b12a188f8d3a2c12e72d0 -size 181475 +oid sha256:83b531f84251a1260bea5ad02a6581ebcbebcfee26887be6ac17f08f9ea0f394 +size 181441 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png index e59dff194..abcd2d754 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:292fde6fdecbfff146e8b85540651c54d2dab2f073d3cd3a388f63de1121c750 -size 191418 +oid sha256:f5be91ebfd4f1052105d5299fc22be843ab9922064a03ef14bf8c1a4c99645cb +size 191498 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png index 366c95553..10e12692a 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1877453f28cb92ba4c915a8af3d3d6395aa9bd7c63876737c90b2b800669ca0b -size 197487 +oid sha256:448768a9a85d15a8d43dc05d41421b9eba5be9d0dc5f5e8e8afc2864aaaf952f +size 197567 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png index 9fc5fc0c7..d72bb6d5e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e23a9ff351f0a7510cdea1c516862eed4faafea0a38369b5684bc048ea7ec94 -size 149096 +oid sha256:7c368e208b2f69b557667fc2f84ea5886c1c0d40b649d684d54503e595ff5088 +size 149062 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png index 98bc6c095..8a81bb1b9 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InviteRequired-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:598a583a6be90107aae1173c736e923e896cb8520167ee9fbba136fb549541d4 -size 157671 +oid sha256:0591d609c4ff490710d553412f926186bb45657e11e0079a8ed2eed74c78b92e +size 157637 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png index a35c34e37..ff8dff3a3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ccdf6b4198c2a855df924758482362596b4ca9f2a034f5229228e50aa0c0f2b8 -size 204243 +oid sha256:c093e65173aea12af2a0f0a51293903169b774fbc8f451c034843a020059f7b6 +size 204307 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png index f87146d8e..479b2391f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:350adbbc77f245dfe7f822da44c69c4050a8c6f2c63800b57cf79b954acf5ad5 -size 211926 +oid sha256:017480bae1b1829d44f6bee8a0dcb852c951583d035a47a329911c3e1ea9b521 +size 212007 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png index e3927c3c1..24029dfb1 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:34e5d01ed3109e359aad855a408bf9885924d83e39b830bc45f8ef49d4a3040f -size 160117 +oid sha256:7fbe87c7fbfb9e627a1497c6ad98af84986ea5a6f73135e60e05c046cd3e61ab +size 160097 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png index 87bcc0a22..7c8bf996e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:973ba4d3e33d59cbb786ceeea793485557e2002fdecb72100bcdb9f34bedd774 -size 169551 +oid sha256:b41badc51eec49a01cb579970486fc4b3415bf6f44e52b8cd617857cac058c95 +size 169541 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png index a0892491e..2306f8db8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef49d0ec8085575cdc32e94502b2962032cfb84deecc21b9c3bb83e1f53ad3ef -size 138739 +oid sha256:08b81fdf382e749aff5d840c30e4121f33e55f7b091eb6bf906dd0b0e3f04353 +size 138801 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png index b32a27db2..2720f02d0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:32675b577632f1c4730fd4f931446e3976a3fdd934cacf26cd04838bed7b309e -size 146259 +oid sha256:41fc5f52bce46b4ee6c4632c89ca304229f21d19cf6db4ea94cbbd83cf3b4269 +size 146322 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png index cbc3cd199..51ed6f7af 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc0382013ac8c27e59b77dd669ccf636141a60e467c91f94828063f3d1b5e88c -size 91168 +oid sha256:eddba8dfc99dedebbdd4d6a387f4d99a0926dd91b68319583e18b7c9b50c69ab +size 91138 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png index e68424858..cdfe7dc39 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:696d87e51df167b17aa1c4a9ebc7c1f232f3f38800b8f13420003c1875184f0c -size 100543 +oid sha256:39758cdbad10ae48f79bb6dc969e12b18d4f3c0c607f250b8c814a8f3b347901 +size 100507 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png index 6b04b178d..6ff195cf7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:614b7fbb6d4659ee341a447658b7a7009a2b1c8eb9bd410c52a643470ecc29a0 -size 197528 +oid sha256:2d473ea1bf6accb5ec30ed758a500277bfa5870edf2c23315c6f732ac21cf67c +size 190962 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png index fc10c866b..553a944dc 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38e5137d1e07ed48a1305266804b78cda7fb27b704558813d223e6f506b8ced9 -size 199277 +oid sha256:5602aaf0cd4a0ba002a6eabc99d8e05a56a21bc527f31fc3b802dd1df831efd0 +size 192516 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png index b6c3c5b70..b0c0d7cdb 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6caafd717b97f0ca6d3490ffa8b2869cd8c0bc518d38917d6957c5188496d16a -size 150737 +oid sha256:70140c2f6735e991cdf87eea162f673907ba8a5faf03d683f19ffd4e3bb20bce +size 146351 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png index 326efaf81..818ca525c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4fbc48c046e9204f081fa8b1949d6fa7688e1fa26ceea354521e7b26f733e917 -size 152774 +oid sha256:a5a26d8872ae7bfc5a35755b6862d60aed98228f6cb4b5af5d627714f1b072e2 +size 147840 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png index 48bdb48dc..ff56e7080 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:898d87b40e4d9c2590023436e19ce48586bbefd898fd60968865754f01f6bec1 -size 209881 +oid sha256:cc03fc0c41dacc64b5a0d8eae4cbd69617ecef524f501c4eedab9a906651c3dd +size 203278 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png index 3a9be77dc..a24f3ef67 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0639a103ce9ccba5ef1857d286be86f05050a9d4326e2d145dc9af6f769f407c -size 216117 +oid sha256:a2ef29357551f17170570ab5b5fa1744594beb3b65659303de6898ba9f00a1b1 +size 205530 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png index 1fdd0b761..ebc0972f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c6bfbe0ea330c7a7fa5153a332128c71851ed357b4132a368f3695543b61ea20 -size 160658 +oid sha256:9e69cbf0e0a49b53c5a3124c3feb24e7b18bb11be3edc15c6ad81cc78489bc0e +size 156444 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png index 6a9e90913..2766d12a5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:40be41a04bfa6281b46dfa01aa3ac372c0ec526f28fd5d0b80b4e8c9ca3817ce -size 169867 +oid sha256:27f27c4ec3d0fff0e777954a164f42ab1fc373bbea9f19ef0e8aaeb4f1f3bca3 +size 162752 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png index c62640507..e95effcbe 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:843c9bca5aaf1d8ab46b56bc2fa87f661306235d1fa89067afeb99906c4aace6 -size 212826 +oid sha256:83bd0716172b4b6ef0972e61676f68e571c445b0ef471a9993741ff2f65c32f1 +size 206000 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png index 51a0bad08..269b7fc81 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f1a333d9d693aec8b7e2e352d469b356a4475c124105ec927babf1e7f484119 -size 225682 +oid sha256:91c247cbe0da99711fdfa405014f37605c7c6132c95dfcd9fd4556aef24a6ee6 +size 219094 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png index 1f9c3567f..7f4634f34 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98a5dba7e68a0e3b735354a509d73ebaf6c4cf24fafc6033f05a98c392f3fcb0 -size 167418 +oid sha256:d09cab4944f82df22214c5ced124ffa732123dc4946fa5db351fb92740f63b15 +size 163140 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png index a0a0b3458..662a67717 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9102a18181ca8506db52eea10ee8f6b3db66f56ff0e45aa22d9f18998c9432f -size 182789 +oid sha256:5a47703587c197f61a8de494a61c562b579e8f3f4f77dd592dc3838f977ff1c5 +size 178101 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png index be9685dd7..0099417cf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1790aeffe51cdb48d16beca802aa7ad55c38a91639a5c140158367b6dede0c47 -size 106679 +oid sha256:e7377923e95f6e052ffba73cfeee5d1e9567656d8d017be1f7cac571f95217ed +size 99773 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png index f1a05d1fe..7011f1e79 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:54e8363df0eb18c7917f7a744a04eb12f3d0f9d029f1db54a61cacbdcd79e9fd -size 121729 +oid sha256:fd68b89f449b4c6823e109c57bf7fa8a9cfd6bd53575754a74e2b9a8ea053b39 +size 115061 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png index 65cc954bc..33d581799 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ed33503f049b8b9d00b1107806c72e963517ef9af8bd05978f8e00a0029890c -size 63100 +oid sha256:841f21c6026c6ad270269f08d663fd1eaa577e819094bf3d9ae45a134a678ac7 +size 58856 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png index 44e43d00d..18c161a14 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ffaa33792427b91784773f513c3bffc2fbbbe4b32c04f4adb0c3826ec07e95a0 -size 82426 +oid sha256:a532bfe35f244be30367c3e2aaf3ce330d3ced13290a9002dd813fc7bee11184 +size 77772 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png index cfa75b748..c454bc885 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27c1163f7415e7ae06bd78fb6ae0f78d0cca150ea2bdcb68fdc6e1457181b05e -size 89578 +oid sha256:3339bf93cd5c4a6adc4648f758f16e458186ed79e4f795766dfab6de1c601285 +size 89495 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png index 9dc488d5f..b014546f7 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85b0734b01882f8aa19f8f6ffdf81d1c6824c5340114bbf9d7d53bfd448fc1de -size 90613 +oid sha256:0b1cd2fa30211d98c0f8e4abcc798d5980c94d892af93c91a87b547568133008 +size 90526 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png index 984767bbe..bd4efbd2e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-en-GB-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efd4b0bcedea3389b10ebe55f2dc536fa4d263342e97f452a044a8ef667a1bad -size 48459 +oid sha256:d765faa6bb1075b91aae3e851e10d1f354c94892e792870e766e4166c0d07c48 +size 48357 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png index 695966431..a61472680 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPhone-16-pseudo-0.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2e3125c47e6f4bd81a49e8ae7f9c23ab787431dec3671e8ff9da85d41c6f638 -size 49322 +oid sha256:d3be31d8e7bb3d41e64c78bc315de3750683e21d2f6cf52c8d4a0ad8a3727523 +size 49223 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-en-GB.png index 662bc38d4..3b2c233cf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a69dc4da7c7cfa9a9e02276b9d3ae3086b80dae50bd734aa15286c24031acf4 -size 73475 +oid sha256:fbf8671e2db31fe762eb1b1974496e4ee51e90502177b29d85957e8ec451fb8b +size 73156 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-pseudo.png index 662bc38d4..3b2c233cf 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a69dc4da7c7cfa9a9e02276b9d3ae3086b80dae50bd734aa15286c24031acf4 -size 73475 +oid sha256:fbf8671e2db31fe762eb1b1974496e4ee51e90502177b29d85957e8ec451fb8b +size 73156 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png index d4b78d7e7..0719ecc5c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1917fe439a153d7de4e8a24d9367b9dc68be902c87ee157bd6ec0ec9aee7d8cf -size 32599 +oid sha256:fc35986ef873445c22c25e541fc9ab7dda74b7ffc8646379cc357935bac7da44 +size 32508 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png index d4b78d7e7..0719ecc5c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1917fe439a153d7de4e8a24d9367b9dc68be902c87ee157bd6ec0ec9aee7d8cf -size 32599 +oid sha256:fc35986ef873445c22c25e541fc9ab7dda74b7ffc8646379cc357935bac7da44 +size 32508 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-en-GB.png index f8610babe..8a8713b16 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42458395202c8c27d51f04d04fea568b3bd4810cfb591f960fe2cef0faa3b3d2 -size 75236 +oid sha256:20db9a00d07e7c17a7555e08e31b430474b8006d3bdbcd6e0bdd54ac7bf12ccc +size 75443 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-pseudo.png index f8610babe..8a8713b16 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:42458395202c8c27d51f04d04fea568b3bd4810cfb591f960fe2cef0faa3b3d2 -size 75236 +oid sha256:20db9a00d07e7c17a7555e08e31b430474b8006d3bdbcd6e0bdd54ac7bf12ccc +size 75443 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-en-GB.png index e559af09c..0c7ff304f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de9203b51ed448c790df06d658a09ca7e582bd87b8beb6138b9ab427ee4b4bc4 -size 34921 +oid sha256:ab42fa76c69e75ce1a265840dff244d92dcf73353c1a49ce24e46be9388c5ffe +size 34824 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-pseudo.png index e559af09c..0c7ff304f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-without-room-name-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:de9203b51ed448c790df06d658a09ca7e582bd87b8beb6138b9ab427ee4b4bc4 -size 34921 +oid sha256:ab42fa76c69e75ce1a265840dff244d92dcf73353c1a49ce24e46be9388c5ffe +size 34824 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-en-GB.png index 5341ca7ab..0ab1bfcf0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a3ce3dbcb983f608d38f510dc4ee16e9bc65c9e246aebb3aee8fc46bcaf476e -size 69720 +oid sha256:50141db2c7b5dd7b6ce07969a675047c0b8eeacfccb10fea526979b0c5dcfcc4 +size 69632 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-pseudo.png index 5341ca7ab..0ab1bfcf0 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a3ce3dbcb983f608d38f510dc4ee16e9bc65c9e246aebb3aee8fc46bcaf476e -size 69720 +oid sha256:50141db2c7b5dd7b6ce07969a675047c0b8eeacfccb10fea526979b0c5dcfcc4 +size 69632 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png index 0c93e6351..0408d3f25 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:79b26613033be55f6d5bac6ea368aa8dcaf346f7799af773bf1599984ffd6bb3 -size 30224 +oid sha256:ec4d0cc27fc0fa149da0a307a02d5a3f9bc96b7a019f83323774edb9b83bf262 +size 30200 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png index 0c93e6351..0408d3f25 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:79b26613033be55f6d5bac6ea368aa8dcaf346f7799af773bf1599984ffd6bb3 -size 30224 +oid sha256:ec4d0cc27fc0fa149da0a307a02d5a3f9bc96b7a019f83323774edb9b83bf262 +size 30200 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-en-GB.png index 9297fa585..5fedb9d73 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e8cfd15d81ecfd4966947582f869c4357cef4e54bd8646fc078e2a79b5fe0d3 -size 69712 +oid sha256:458b7ab530c9403bd3feaa272ffd7abb5a7be6d36204ac842127f4588df55651 +size 69609 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-pseudo.png index 9297fa585..5fedb9d73 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e8cfd15d81ecfd4966947582f869c4357cef4e54bd8646fc078e2a79b5fe0d3 -size 69712 +oid sha256:458b7ab530c9403bd3feaa272ffd7abb5a7be6d36204ac842127f4588df55651 +size 69609 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png index 8118225ce..2bd12c714 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2199497caedf0c974a93d04445feb6fc11ca35d9f895d6257fd9c3cebc79a5d -size 29379 +oid sha256:e8fd29f129bcf2b28b2b597665a6f69123a49bdd8d07eeb6b81253c66ce0d21b +size 29257 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png index 8118225ce..2bd12c714 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2199497caedf0c974a93d04445feb6fc11ca35d9f895d6257fd9c3cebc79a5d -size 29379 +oid sha256:e8fd29f129bcf2b28b2b597665a6f69123a49bdd8d07eeb6b81253c66ce0d21b +size 29257 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-en-GB.png index 3f68ace9f..c4322bb9b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eadb984285c3bb9a815f0fd7839d69b7af7968702f747b3a2ccc32f3a7091a52 -size 72100 +oid sha256:c87107a1a736c3f7af026f9085c5a681dfe178aa29da6d355c85326072d83f3f +size 71969 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-pseudo.png index 3f68ace9f..c4322bb9b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eadb984285c3bb9a815f0fd7839d69b7af7968702f747b3a2ccc32f3a7091a52 -size 72100 +oid sha256:c87107a1a736c3f7af026f9085c5a681dfe178aa29da6d355c85326072d83f3f +size 71969 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-en-GB.png index 440975523..323fc043e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:beec1ef8f73c62c3a120a30496ef625a42cb75382f21246df9eedb56c1c1ba35 -size 31637 +oid sha256:704692d952e2198da3735ba7020ea9c596badfdbdb9a5a18bba864f45e356957 +size 31520 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-pseudo.png index 440975523..323fc043e 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:beec1ef8f73c62c3a120a30496ef625a42cb75382f21246df9eedb56c1c1ba35 -size 31637 +oid sha256:704692d952e2198da3735ba7020ea9c596badfdbdb9a5a18bba864f45e356957 +size 31520 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-en-GB.png index c08191c7c..4726ef451 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1bb9ebd37827a5e9e3a18031e5d0a99215fecc2ba8bf7c91be8534aaf89224b5 -size 70033 +oid sha256:55be21ce55d535d9a3a34e758b0a3b08eb21f55d672b69815d071fd7af0efe2c +size 70218 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-pseudo.png index c08191c7c..4726ef451 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1bb9ebd37827a5e9e3a18031e5d0a99215fecc2ba8bf7c91be8534aaf89224b5 -size 70033 +oid sha256:55be21ce55d535d9a3a34e758b0a3b08eb21f55d672b69815d071fd7af0efe2c +size 70218 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png index aa593da96..5e900098b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09ee682cd01ba1e3cafaf4f36048e03d4904ae8891d7497d5588244a745b2bee -size 29996 +oid sha256:042db34c5caa716cf6fbfd4e0e8a4c7912426040f896ec28310a9ca9fde7f07f +size 29884 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png index aa593da96..5e900098b 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09ee682cd01ba1e3cafaf4f36048e03d4904ae8891d7497d5588244a745b2bee -size 29996 +oid sha256:042db34c5caa716cf6fbfd4e0e8a4c7912426040f896ec28310a9ca9fde7f07f +size 29884 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-en-GB.png index ede9ff915..d09ed5a27 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78398670d2fe623f5615f8f47b1ca03a9448cbc7bf0db7d20e760ba03e5d3b32 -size 75290 +oid sha256:803e466d97daac047ef0dbece1ea599015429aceb4eaf24132b3c138f992c52b +size 75454 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-pseudo.png index ede9ff915..d09ed5a27 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78398670d2fe623f5615f8f47b1ca03a9448cbc7bf0db7d20e760ba03e5d3b32 -size 75290 +oid sha256:803e466d97daac047ef0dbece1ea599015429aceb4eaf24132b3c138f992c52b +size 75454 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-en-GB.png index 4bd046758..1eaf1a428 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d1b3f189a14f7f57a5a75abcdf8fe4302775704ce3078cfb33e48c1167075e6 -size 34893 +oid sha256:0da9f16bd39ba07b598fa3d62c311481140861f0b9b33235f00769e690d7a6b9 +size 34792 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-pseudo.png index 4bd046758..1eaf1a428 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-a-long-name-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d1b3f189a14f7f57a5a75abcdf8fe4302775704ce3078cfb33e48c1167075e6 -size 34893 +oid sha256:0da9f16bd39ba07b598fa3d62c311481140861f0b9b33235f00769e690d7a6b9 +size 34792 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-en-GB.png index eb29fbb09..84148829f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57bef12f0098ed91ef2438de9d7cc878a31b30f0de9aadd0ca9037a27e0155be -size 73454 +oid sha256:d80211e651a0f3f5aa224be2aff4bb9f7c78aa171256c86009a88b1022f932d4 +size 73343 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-pseudo.png index eb29fbb09..84148829f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57bef12f0098ed91ef2438de9d7cc878a31b30f0de9aadd0ca9037a27e0155be -size 73454 +oid sha256:d80211e651a0f3f5aa224be2aff4bb9f7c78aa171256c86009a88b1022f932d4 +size 73343 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-en-GB.png index 4fd3f638a..44f9f4950 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:803a52b525255c2f011e64b71cadea4f1cca0348449743b0a4617a5314b7ea83 -size 32080 +oid sha256:618a317d29398759577e511f6f7f7a5b675c8e8e3c0a6fb303cb3000162765dc +size 31961 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-pseudo.png index 4fd3f638a..44f9f4950 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-with-missing-name-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:803a52b525255c2f011e64b71cadea4f1cca0348449743b0a4617a5314b7ea83 -size 32080 +oid sha256:618a317d29398759577e511f6f7f7a5b675c8e8e3c0a6fb303cb3000162765dc +size 31961 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png index f4457f6b3..a5e52a1f8 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0983e6d407f0e5eb0750638092860e83ee32932dbbf114d96002fc2a2e0287c0 -size 352931 +oid sha256:19d9f9cab99ced9465837f49da0ecd3c0a08f4f79d8ad33c2b685e9101b257d5 +size 355287 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png index b5327b124..ca7f8a813 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37f4f1832e34b4cfe1409a3fc8c97af54033d13ff57f85422f5251c35db08799 -size 366220 +oid sha256:873693eb4314de3e8fe5797b422bdfca4487dc20875cad82d1b3354ef95c0831 +size 370284 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png index 6e18eda78..1f2ad04ae 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d88e1fd0fe02dd85df0b5c9fb76c8e2b433beb532dcd9d025ea68c5d6c3c2c09 -size 207618 +oid sha256:1cac8ccb886a5c7279b34078f5188d28ea4eb9c6fc1d9e5763e5475339c0e390 +size 209235 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png index 667923722..ea8f413b5 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:440d0bdbf7541c5be001376e792ca439a0dca177c014204dffdc6193362728b7 -size 219131 +oid sha256:184f7913f0502d735a942db23e6dee7e47f4034329f8695c15d293b7abf6bf40 +size 220628 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-en-GB.png index 087552673..4f732f230 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d1309e076e8f25731a16abfb8037fb2ec98f8b1b733025dd9a3fa2269b8065e -size 155253 +oid sha256:016ee0b4eb77e60c78efd864d5af4eb6500ef150f7e9c606cc6949368152f92a +size 150213 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-pseudo.png index 40e150199..442567cac 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d10922442758895f5d5eac889212a278352a84747f705aa0d356b379c54a0610 -size 165267 +oid sha256:2fffc4e1ee932de48ae09e14c4c8414da423aae6062779fb8527621b61522eac +size 163050 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-en-GB.png index 4332a02d1..b85ae715f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9b3033094c6ecda918e0939ff52f9fe98bc9239449b1c89ef792afc439e0c1c9 -size 76280 +oid sha256:33889654d5af0ae1ec2ef13de6d22fbab185d9d171c247b5582ef87fa1ca9ce3 +size 75897 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-pseudo.png index 46b5b522c..488220203 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.With-displayname-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd9ed4ba10291097a333c3e09997955091f9cdff554a455d1cac156643939083 -size 90977 +oid sha256:bc6d2f6d5385bedb3ca3dd6cbe59226309e7619f838cdf0d9832ad6d024bde53 +size 93597 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-en-GB.png index 6899c3bbc..c460d4a2f 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08b12ec4c036b7683b4610ce284a8efefa092e665442d8b26759433c59d3b89a -size 157396 +oid sha256:005a8d737c2f53062d372cabfe17d6ceaeb724393a245299d4e11ffc8b445b0f +size 152438 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-pseudo.png index d3dbb7183..0deb30f97 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7bd8c6a443578e81f19502e0dfb80be449b0d15485aa32ee159b9d9c4c435206 -size 167933 +oid sha256:16963a8e198f0e034a77f10ad0a95855e28e61db55046e42ab021c32712f71af +size 166337 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png index dae05bc9a..211042384 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:937d9277e06dbdcc4a4a4b5088b56462e115bf20486029079635a02a6362bc83 -size 78180 +oid sha256:8165145f91e72fb6ae88b89c838664afa43266d8bf19741405dd6ddd14d45612 +size 78094 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png index c9c13e2ec..0edae986c 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6a32e114015a01c5a6fdbef1239bf6ef7adc3e676428bbfc5760df79a4c102b -size 101973 +oid sha256:8b6c5ded9efa5317aba0606b9fe602dcc911fea6ac1a3738129cb2e6db9065fc +size 106764 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-en-GB.png index e3bc228ac..f82a35001 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4bc3686bbbd334bd0e159e5baed9580462fe18c10d22742604dae738d377f9a -size 86439 +oid sha256:93129ecceb176d116bc95206f298dc36f6af97c886751770cbd7a1a71e912e6a +size 84365 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-pseudo.png index 4f010f13c..21fc3df16 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPad-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:205fe4317844539ef5f9fcfb2ea1e36d6a877272c3ee1804654cd25d9da08b28 -size 95010 +oid sha256:677b3d4b3fb842f7978d39c72f5bf238fb1e88f34bf776d07a3bee8a9c58d389 +size 95911 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png index 40ad87353..cadc3ed89 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4a9f8adea22b87db13d8f99f95908fdcf17010117857f98731921b15d214095 -size 44895 +oid sha256:f088ca407a5877c0ef393be7af83867afa4ea89ed8cc594dc1c813fed261718d +size 47960 diff --git a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png index ad39742d3..e1d08e3f3 100644 --- a/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png +++ b/PreviewTests/Sources/__Snapshots__/PreviewTests/timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cb0db63457ff2bfc24377e28ddd6d32833199ea5edceb23317dedee88547c381 -size 67013 +oid sha256:443e81006c64cf792dd2f639660c586853641104ec7eabac0c60d2a1f1b46b06 +size 69414 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-18-5-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-18-5-en-GB.png index 8877f887f..4e00e8f8d 100644 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-18-5-en-GB.png +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPad-18-5-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:029bb82d5b816441648342e7cdedb853dbbdc32eb8b5c3d84803ac0ea506fc92 -size 224246 +oid sha256:ac6d69b853fcc1157f0d544e98570f7826aff1b6622f42a8cfa4af0baaf3c78c +size 224635 diff --git a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-18-5-en-GB.png b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-18-5-en-GB.png index 8b95ca314..2c0e5d2de 100644 --- a/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-18-5-en-GB.png +++ b/UITests/Sources/__Snapshots__/Application/roomScreen.testTimelineLayoutHighlightExisting-iPhone-18-5-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67c40a897fda84a678ad2207ff9c6e0f3d3fb4c9b9b3893f71e1e91bd31f89ef -size 320322 +oid sha256:d21085091b260aa5689fc75e3429c4b2c612df2e8743042b89679293bb1d03a6 +size 320203 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-1.png index 975ca4b61..766b91318 100644 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-1.png +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7264534835b786cdf8eeb6381a3038756d2cb312a07d2c53956333f73163b8c1 -size 405927 +oid sha256:0e82e90b3250139fd77584e01089632afa53f64124a3ff08b6e5dcdda2d6437c +size 405782 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-2.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-2.png index cdca35eca..fbe1e35eb 100644 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-2.png +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-2.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b155b1bdab8995950aa92bbf229db0ab0ae96be4a10bc4f897c79dcd79d525cc -size 469284 +oid sha256:5f1abd40960425f7dce054a87af5acd487692565f64096902bb5afccc4d37746 +size 529914 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-3.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-3.png index e9c7e39b3..b96b1e0ae 100644 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-3.png +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPad-18-5-en-GB-3.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7717870757fcf47bdb14bdb7613ff5a26f987df45fb4dd489b82dac51e5c6ce8 -size 753769 +oid sha256:8fec81af435528ef742740af36f837dcd92d07c5ba1dda9269db9ef7548045a9 +size 793196 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-18-5-en-GB-1.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-18-5-en-GB-1.png index 6a27bdcf1..5f4dd7274 100644 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-18-5-en-GB-1.png +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionFlows-iPhone-18-5-en-GB-1.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:612f0c70f49e50822f794ab24817f347bda6993e57c295449b1d4054b50162d5 -size 339488 +oid sha256:9847781e124856bbea6730c2938740b3dc1705d37232d913bf484bfb6bd31da1 +size 355152 diff --git a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-18-5-en-GB.png b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-18-5-en-GB.png index 45e9daccd..02e13365e 100644 --- a/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-18-5-en-GB.png +++ b/UITests/Sources/__Snapshots__/Application/userSessionScreen.testUserSessionReply-iPad-18-5-en-GB.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ba80b5b8665b78e0d54458274242d8f1437fe7f164e36d655a86af51491be01 -size 459905 +oid sha256:bb7868ca1b5e29de333462ec5b8f516f04ff98099477f286485d08f68d831ec0 +size 523206 diff --git a/project.yml b/project.yml index 815a7f05b..0f113543b 100644 --- a/project.yml +++ b/project.yml @@ -69,7 +69,7 @@ packages: # path: ../matrix-rust-sdk Compound: url: https://github.com/element-hq/compound-ios - revision: 4aa89193ba5bfa0d83f9bbc584900e518fdb3a26 + revision: 4cadcbcf1d4102e9a8114842c4def62cd8989de3 # path: ../compound-ios AnalyticsEvents: url: https://github.com/matrix-org/matrix-analytics-events