Upgrade the project to use Xcode 15.4 (#3027)

* Update snapshots for Xcode 15.4

* Update CI.

* Fix crashing UI test.

* Fix compile error in Integration Tests.

* Try putting UI tests on GH runners again.
This commit is contained in:
Doug
2024-07-11 17:38:32 +01:00
committed by GitHub
parent c0e704ce1d
commit 47d94501c7
1133 changed files with 2265 additions and 2266 deletions

View File

@@ -13,7 +13,7 @@ on:
jobs:
tests:
name: Tests
runs-on: perf-only
runs-on: macos-14
concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.

View File

@@ -76,6 +76,8 @@ extension ClientProxyMock {
recentlyVisitedRoomsReturnValue = .success([])
recentConversationCounterpartsReturnValue = []
getElementWellKnownReturnValue = .success(nil)
loadMediaContentForSourceThrowableError = ClientProxyError.sdkError(ClientProxyMockError.generic)
loadMediaThumbnailForSourceWidthHeightThrowableError = ClientProxyError.sdkError(ClientProxyMockError.generic)
loadMediaFileForSourceBodyThrowableError = ClientProxyError.sdkError(ClientProxyMockError.generic)

View File

@@ -31,6 +31,7 @@ struct FormActionButtonStyle: ButtonStyle {
Text(title)
.foregroundColor(.compound.textPrimary)
.font(.compound.bodyLG)
.textCase(.none)
}
.padding(.horizontal, 4)
.padding(.vertical, 8)

View File

@@ -197,11 +197,11 @@ struct CreateRoom_Previews: PreviewProvider, TestablePreview {
}()
static var previews: some View {
NavigationView {
NavigationStack {
CreateRoomScreen(context: viewModel.context)
}
.previewDisplayName("Create Room")
NavigationView {
NavigationStack {
CreateRoomScreen(context: emtpyViewModel.context)
}
.previewDisplayName("Create Room without users")

View File

@@ -95,7 +95,14 @@ struct EmojiPickerScreen_Previews: PreviewProvider, TestablePreview {
static var previews: some View {
EmojiPickerScreen(context: viewModel.context, selectedEmojis: ["😀", "😄"])
.previewDisplayName("Screen")
.snapshot(delay: 0.5)
}
}
struct EmojiPickerScreenSheet_Previews: PreviewProvider {
static let viewModel = EmojiPickerScreenViewModel(emojiProvider: EmojiProvider())
static var previews: some View {
Text("Timeline view")
.sheet(isPresented: .constant(true)) {
EmojiPickerScreen(context: viewModel.context, selectedEmojis: ["😀", "😄"])

View File

@@ -68,6 +68,7 @@ struct RoomListFiltersEmptyStateView_Previews: PreviewProvider, TestablePreview
}
RoomListFiltersEmptyStateView(state: .init(activeFilters: [.people, .favourites]))
}
.padding(.bottom)
.previewLayout(.sizeThatFits)
}
}

View File

@@ -169,7 +169,7 @@ struct InviteUsersScreen_Previews: PreviewProvider, TestablePreview {
}()
static var previews: some View {
NavigationView {
NavigationStack {
InviteUsersScreen(context: viewModel.context)
}
}

View File

@@ -140,7 +140,7 @@ struct StartChatScreen_Previews: PreviewProvider, TestablePreview {
}()
static var previews: some View {
NavigationView {
NavigationStack {
StartChatScreen(context: viewModel.context)
}
}

View File

@@ -25,7 +25,7 @@ class Signposter {
private let logger = Logger(subsystem: subsystem, category: category)
/// Signpost name constants.
private enum Name {
enum Name {
static let login: StaticString = "Login"
static let firstSync: StaticString = "FirstSync"
static let firstRooms: StaticString = "FirstRooms"

View File

@@ -520,6 +520,9 @@ class MockScreen: Identifiable {
let clientProxy = ClientProxyMock(.init(userID: "@mock:client.com", roomSummaryProvider: RoomSummaryProviderMock(.init(state: .loaded(.mockRooms)))))
ServiceLocator.shared.settings.migratedAccounts[clientProxy.userID] = true
let appMediator = AppMediatorMock.default
appMediator.underlyingWindowManager = windowManager
let flowCoordinator = UserSessionFlowCoordinator(userSession: UserSessionMock(.init(clientProxy: clientProxy)),
navigationRootCoordinator: navigationRootCoordinator,
appLockService: AppLockService(keychainController: KeychainControllerMock(),
@@ -527,7 +530,7 @@ class MockScreen: Identifiable {
bugReportService: BugReportServiceMock(),
elementCallService: ElementCallServiceMock(.init()),
roomTimelineControllerFactory: RoomTimelineControllerFactoryMock(configuration: .init()),
appMediator: AppMediatorMock.default,
appMediator: appMediator,
appSettings: appSettings,
analytics: ServiceLocator.shared.analytics,
notificationManager: NotificationManagerMock(),

View File

@@ -1,6 +1,6 @@
test_configuration:
- template_file_path: PreviewTests.stencil
- simulator_device: "iPhone15"
- simulator_device: "iPhone14,6" # iPhone SE 3rd Generation
- required_os: 17
- snapshot_devices:
- iPhone 15

View File

@@ -77,8 +77,8 @@ class PreviewTests: XCTestCase {
fatalError("Unknown device name: \(deviceName)")
}
// Ignore specific device safe area
device.safeArea = .zero
// Ignore specific device safe area (using the workaround value to fix rendering issues).
device.safeArea = .one
// Ignore specific device display scale
let traits = UITraitCollection(displayScale: 2.0)
@@ -159,7 +159,7 @@ class PreviewTests: XCTestCase {
if let simulatorDevice {
let deviceModel = ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"]
guard deviceModel?.contains(simulatorDevice) ?? false else {
fatalError("Switch to using \(simulatorDevice) for these tests.")
fatalError("\(deviceModel ?? "Unknown") is the wrong one. Switch to using \(simulatorDevice) for these tests.")
}
}
@@ -215,10 +215,12 @@ private extension Snapshotting where Value: SwiftUI.View, Format == UIImage {
config = deviceConfig
#endif
case .sizeThatFits:
config = .init(safeArea: .zero, size: nil, traits: traits)
// Make sure to use the workaround safe area insets.
config = .init(safeArea: .one, size: nil, traits: traits)
case let .fixed(width: width, height: height):
let size = CGSize(width: width, height: height)
config = .init(safeArea: .zero, size: size, traits: traits)
// Make sure to use the workaround safe area insets.
config = .init(safeArea: .one, size: size, traits: traits)
}
return SimplySnapshotting<UIImage>(pathExtension: "png", diffing: .prefireImage(precision: precision, perceptualPrecision: perceptualPrecision, scale: traits.displayScale))
@@ -272,5 +274,11 @@ private extension Diffing where Value == UIImage {
}
}
private extension UIEdgeInsets {
/// A custom inset that prevents the snapshotting library from rendering the
/// origin at (10000, 10000) which breaks some of our views such as MessageText.
static var one: UIEdgeInsets { UIEdgeInsets(top: 1, left: 1, bottom: 1, right: 1) }
}
// swiftlint:enable all
// swiftformat:enable all

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cf7c229c57ebbe255d1e976eef6d8c1bef6d78ce4becf88cc4030564ece26555
size 146060
oid sha256:5098e8febb522533a164ea49f50bd049d0f7d273210476fcf43106349b18d746
size 112936

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef028c13b841194a7858bf24a99f83607219f079be78053df273d577f7c78905
size 193215
oid sha256:e314cb293d55bc73c9b9882aaee4a75fe7cf57a1d2c77d2010c001a597b63a95
size 126399

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dc45722e2c3ea3c1a10e1903bde8fbe799aa9de29e1a342abebc107cfa835c2f
size 96753
oid sha256:18f7db074cbe0d70b888d436287f6831b44735cb84c3809a02a977825ee45c41
size 66590

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55d395662df5543bbde6ac6fbeafe32f1625441bb5275f2306eebba343c5577d
size 144075
oid sha256:7a604cc7c506dbfdb0f465a9b00339101e7dd01a8552c0a716ce2f572b20fed2
size 83990

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d9f4fd014234c687d03c529490fe08e5ba11104f398ca1a571fcd8381abec9f
size 532444
oid sha256:2f21a974ffbabece1a0bf4761e6307c096382fec58c56eb9e6313a2453a1be07
size 515653

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f09f74d990c3da296b044d967eb825e91ee496a53fae7a8bfa070e1b56b99b0f
size 609180
oid sha256:2904bd34a9ebd5113aed2fe521a91f552648270a0ecce950353f167dd4306a0d
size 541329

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6016d580c905a76047da354f0a8752e87fd0b822bf8365680cec216f19e5e85e
size 329675
oid sha256:c69e5671c7d50cd1b49590e9daae7ea286ecddde1e88f89181ad48c2456e73d2
size 314645

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:84dbbc0b29b1113d020d287c8f23a99227e270f818921c673d389feb2bc307b8
size 375338
oid sha256:ff8d146eef1c077b5a1eedb7e6872248ea07c06995f443ab3282a10c8e9181d3
size 319983

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:00901d81bcf6162af7818cac12604d49d47d700ae98fe9f263aec7d8664c7d96
size 149648
oid sha256:a0c76b4c51a368ac5c5bfa4f37355bbfb7f9f8a62f3f97a9b4aead814ed0d242
size 114226

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b431c7382f2bd6169445dd6eb57985e81b052c296333b99ec90f9b4bc2cc7a92
size 184609
oid sha256:9beba313e377cdf2d2910d576a1f450fa5e1e999c25a5062b663a8b22a45d0cc
size 119634

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:25ec6698fbca73ff83f88300ed333a050aef317f388ce71fc6476596c123853d
size 104872
oid sha256:20b5be056145918d911a4139b45f46edd1e4a53445e9f75a977dddec3f5da62e
size 76034

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d117add9e8bf7b4400f03dd33bb0171917f6046e4c296bc5e122b92de64e84aa
size 139693
oid sha256:b42bce7f01ea1be7410870009a4cb7b80b8ef7fe011cd4bd631b610a530645a2
size 90993

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfa36c329639b7bd53482c4066a37743160839bd9a4debe3de9cfdb80883e961
size 115021
oid sha256:12f04ac21a26c2a2dd916765b8e462c41efecc85906f3068c4a7a7ff8b6dc50d
size 98508

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95ea5891cadd570a9dfd69fd1ff1282f3b91c688f63b7e78443b76ecc27109e4
size 152680
oid sha256:4ba42b7fee4204b382bf7f9d64f2cfa3d1571093de95e74c63525ec9c0153772
size 104987

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b6c0168a64d2438a4a11c031845dd70401758c91b507617a8960eba73fa4efd8
size 68382
oid sha256:9310439b4d7829601990e55d8933962c97f8993fc29c74c737404ca2829325c4
size 51370

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b1ea1685762aa0e0f05b5c974a069e3747aba7469c83b0ab754a1f69193e6418
size 98385
oid sha256:c8557814c45afe798af3888bee1b88254cb6e8af29224a7958389a9942e32ab0
size 66131

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:74fc0d2d0d9933d5f98a667b41780d01bbb59617695e2543944d1f0c3122d461
size 137574
oid sha256:8b079a6750fcaae622ee5b104e6eb1d2dd9e9ce560ea21a3e59d394ea39b1578
size 114681

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a96a4e42c4885f64ca9ae5425f9722a4f2ff56b7d24f04c7f2891673a27b8300
size 166347
oid sha256:e074dc779b28db695da4291d48a843083ab2ed3a37d60cf5d120379c3e90c7ba
size 123067

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ae2dcb5510d49106cfdfa8a9edb46e885d343f83b73dc5b8a088a26a99738335
size 91052
oid sha256:7271a235ebd28e27681eaeabc74ae3d2694dfd9009c0bb7c7eef377f3061773f
size 70777

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79a196f4288fe6fb3cc4ad9ba80ddd4bbe676fe0325f3cc4272ebbd3d7ed72b1
size 116741
oid sha256:68644465e33c39d540d08d61632705359753b84e85df700052340d9864f41cd8
size 77623

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5140ad4c2e87cedd06778a7dee016da2357db9bf4d52cb503f9e3d2bc363d905
size 117569
oid sha256:e1185f3149926908e18fc3cb965ba3931bd76f8b72aaa6c081647a2d488ce79d
size 98717

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9922d84c272da0d0df45dc37b5a391bf654ab73024159148d80afaa94c69fe3
size 133736
oid sha256:6b5d3819f144534d794c57aa512b154314196c3b35747ca926e586352f88631b
size 107059

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99821a8646ec4494d5faf8e1027ff3af755fd57ba0c86789c8c294ee1d0447a9
size 159121
oid sha256:df306effa6fe58269811225d3fc0d19fa31ba652355bfff7d725b00387534508
size 112133

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3ddc6a03294746a12c7072a9f85f7af9296ca085a2108107ba1df4664dd669c4
size 178130
oid sha256:a6cb494828af912b2e722689df630df96febdda6fa6de254d08e1bc4e36331c5
size 122066

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e3efc828ed17b5860d525801af71eb9f3b77a89d3b1e8d296199a44805d28de
size 74117
oid sha256:64aba3ab8685c7cb50cd0da6cc38a52b9682ad8ddcf8d743e7932b1c3c3ee630
size 57308

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:19688b95f90db29ff6f604c56dfcda7e571f360a5dd121594bcf2b000559e3d7
size 85161
oid sha256:8c4a26a40858792e666b5ce0e03111aa9593d970cd539299b5b61c09f45432a7
size 64698

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:956c62fe195c949834b198703e1a7661b859ba6b509815fcecbd7200bf6d801f
size 113704
oid sha256:ca5fd5daf821b64e84e921f35c37d18671fac074d4b7697357422e66d2f4f95f
size 73303

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1d1e5d4ff7af3faabe400cd75e4621df01a7e6bec1dca29a5a407f3951810e23
size 132567
oid sha256:4431ab0233ed1750fc2f42441c5842ed964a70c2bf43c23b9c909eb965dbc8f9
size 81123

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39a6378f7df6c01583babab0b71bac767f97fa37905f2d867d0a8904d7e9acdd
size 122499
oid sha256:5922b6a330c096c0686a8128566714e7626e3fd1f8682b50a9bf75aaca5f9569
size 99568

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55e0c5e851d041da806f13a65b5d1b0c1161a3b71941db9cc6e9a8723bf4510f
size 124974
oid sha256:b5ec60ac0e1b77235dd08fbd5e14fbb37ee9f42e1199c9eaf232759652d7adce
size 99985

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f47aec44b9792c08b8d75c669bbc0dd4b3bf970817cef690507335244b59a4a7
size 107982
oid sha256:641c3c085bc438ce97679deca21b6ece615db80c8091aad5230db249229f0df3
size 90985

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:46229a5d25d747e7f430b5123f1bf7c5e3d0bd51f5dc504362cf5af7eba49433
size 106665
oid sha256:ad4521af99376c414502cdaabca8b4d6d6c91afd7d55867a45a9d3d9283a72d7
size 89696

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4ce96b100be97ab727d12dd40fa830e45c3273cde01109db36edb2948cb0f23b
size 169765
oid sha256:0b059a0e1069e9a0d4b71effcb2b92e6bd7d75719deed87dcb8db5bc685364d1
size 118852

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8674d2c5605782b44e429817a872f828465efa8fd0efed8da84fa6e1502a4c3b
size 171910
oid sha256:dd1fa6ec01b866375ba36673b738f00f16bf57d6e7281343348bc7379475c494
size 119211

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9bf783d76f373076fe6cccf7c0edfd8d4b24b37852850eccdcc730215083d585
size 129004
oid sha256:82687be353cafb7ec3e8da2333ff07d9c040732dcf9f9a3ec23681055ce0f697
size 94116

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e20edd9615c6ccea143b3d2e737a99d4f6aa216f4e8d98e7614cdc4fe5ba68b2
size 128143
oid sha256:209b952077441c3053be9d2b514a24404b3043e7664a624ed2764ea85e10d40f
size 93919

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:854578a7bf75adaad847dcf733ad364670d0b5c601f3c767c26a1f477f67e2a2
size 80094
oid sha256:0f0d14bbe0566bc50d964af9f958c5501d8905748299545e54e36ed41dc63696
size 58511

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d09086b13a697b7ce3e112aebec1c8fcaa07143e7d24d6b6fcae8b12e4844899
size 82078
oid sha256:fd3f9345a6ee5874078da7ab4ea83d6c8f1cb608bfba421730d6228ac84cdc75
size 58844

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:54fc37f67ea17e13a71c9f3f6d34c6070aa975b5bed4eeb41b43b1dd27b0b546
size 64943
oid sha256:e7629b409f37c0fddd6f36e68d6fe6da2aa9d782759abbd74501e80bb4cb35a1
size 49415

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fb76fd47f5c34d06fc4e5ceb5c016ce218dbc48e731717c649eda583c70c6941
size 63822
oid sha256:03ebe2f4f43ff78ed48a4e2cc943ddbdfdfc6e07944804b55fc75ae855a76698
size 48104

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51f1498af1600bd16c2ff63d26a241e0eed0279576bf7f7d063d2d8752bd1b90
size 124281
oid sha256:51d4fe7837ee09f20bb446037004354bdd7e3056f37a72e8f63c074e691addd9
size 79170

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:332349a7e1b08546476638d82703d6658193ff36931f4eb105cac8df4d20f274
size 126046
oid sha256:7ab0ad8f12771b5636df311f435c05af4a9f965438426f72899bf9ae31b10d0b
size 79454

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8b0676f18635f34b897fe405d32fe85dd6af30712781422a43ff2999f3b397e9
size 83873
oid sha256:6d3f3fc20d010027cabf991f4ed7e626ff3cf3b37a27f533689e13e058128044
size 52015

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0230fed35ac76ef19c1cc0d0b2bc1828ecb995c9c5fdc18ee2342614162c0da4
size 82786
oid sha256:8bab864c1f3986d0c09972e4793d5ca18976ad533a428f006192c8c412b260ac
size 51822

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9fb8d94bfa8533cfb42bbcfa9dcb5abfa61f1ccf74adca0ea9f902310bbbb53
size 108769
oid sha256:ec2c2f47f0135af7758fad4d59866aeb3c47c9ff3a7a6c9cc48e82af86cf5ea2
size 96981

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32b935a10ffce63ddeccd817c7439ae9e79d8c732698d886638483e6cb3dce54
size 97696
oid sha256:132cead04ae998a039b9413b193d4e52f6026c0c1160dc3e11ff69699e9c0234
size 89534

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d08caa830148a6cde48cbce58769934c8d8d6b9a759b7eeabafda110c59a9162
size 101336
oid sha256:4c77258aa2aeb2796a3e33b9e0a35bb056f0012cc559889bb16cce22e36fe51d
size 92515

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b82e5015a7c1d4217cf57ffd9dec598de325ab925489097ea870f75f2437d789
size 138109
oid sha256:33f49dff77e6615185dab79ae24d09615f04a32d56edde006bfbe66bf33dab14
size 105473

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfd4175b3c9cdbe6f92bc9fd68d2760ac122b92de8d2cf9909db816f00475e71
size 117414
oid sha256:9c8006261f925d143a7702f5a4d7f16aa4ee7e1f68e53e08ddc39ee5b6cbd943
size 94248

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:70d6145bbe005041218aa7e6ed0bc7c9be34480c5fff783500f368d176db2ebc
size 123473
oid sha256:773e1134128bb35979bb19e82e9c286a73598baa304cb02d18a5080b5b0fc7b5
size 100047

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8550ac5e218bcd29ecf4e1b7c570046280f5bab447be47f99bc8d4a3d090f443
size 60872
oid sha256:41c0b7a7337aebd06d760c380f09962f8d74e3312998b6c5d038d96d602d6217
size 48742

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e2ed1976b415e39c28f13ee7b48c8ab2850da2e461f2561048415a9d5614763
size 50446
oid sha256:9529b21243d48a7e7887f447170eb6ee65c943debcdd3a68b421fdab4884cf26
size 42332

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8495eb3332ec93bb27b08eadb2f163c2fb648523e39e5637ebce043e884a316f
size 54454
oid sha256:5a39ba86e64d5ce7610c505ce219f3f4ff12c8b989fd5e2ed5ce639a27bf1747
size 45410

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4d856dc741b5d93f0687a3f6f99f348307c13c3dde47c90933e619820b8da175
size 86909
oid sha256:d7b7ce5eabd1f1251d8be7e5f6ac19c99d61ad35cc6cbf6814be2031a36b5e09
size 56450

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3b5861a69bdec28fb65f118528af9615446c24e14da6a07e91cfb8b6292ae955
size 69225
oid sha256:48410b4fb132f4cb7900f3a16f9f8cfe14cd14c4f1c6d0b86afcac1d9583e5d3
size 46522

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8279de468b0d1757829e2c1a57c9d98d894e55cb089121a9b353e4ea7bfbfdad
size 75720
oid sha256:f976d440111790cb662bc972a55295ea77d6f6c581f69cd7a84fbeffafb4e713
size 51879

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2bbb3c58d23a7d2845f1856bea66eccd129a8d09141550c6b361fa387b0264a7
size 82232
oid sha256:fa607ea20134baf6191f63c8779cf36e992c040f5819b798c9be56fd22098593
size 76297

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2bbb3c58d23a7d2845f1856bea66eccd129a8d09141550c6b361fa387b0264a7
size 82232
oid sha256:fa607ea20134baf6191f63c8779cf36e992c040f5819b798c9be56fd22098593
size 76297

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ecf85f4211a6455b977a5dfa99df1f10ae17d352cd4562ad9aa9d2cb0048507
size 41081
oid sha256:470baef15b29e19a7ae58a12682d590baa1f7759b0915f2e96f5594cc0eed1c2
size 35522

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8ecf85f4211a6455b977a5dfa99df1f10ae17d352cd4562ad9aa9d2cb0048507
size 41081
oid sha256:470baef15b29e19a7ae58a12682d590baa1f7759b0915f2e96f5594cc0eed1c2
size 35522

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5db96b5725e55787e772dda0698e7d2d9c9c33b33e56a3746905582a4fe7c567
size 1299604
oid sha256:48fb262e42f8d01a6feeb3e4e70b72afd11e57469c87c1fb2a649e58967f0fef
size 1257762

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fb26a324a312d0c2a20a14fc7ab0c929cfab5da64c90c273a00956fede25c1f4
size 1368211
oid sha256:028e7ad09b78fad84301635102b9968fb2e6d957a85f2b49a5be2d81fff0e9f3
size 1287670

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71a18a8153f97586c0c8ceb6d02bbade1522a1b82509dc47106617a28f829bcf
size 551048
oid sha256:dc44d147264a7965e37c72ea2a9656565d5919b1fceeeb75c4bbf7aa3a320300
size 530595

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b249f19b8a68db4905ecb5bc45a7f8ed04829ecb2640105e09d76b084c575c91
size 600660
oid sha256:204ba84c66920eaee46b314f64d035ce834cd08e22aaa0c9f0d0b58a6db07bd0
size 557370

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b05797848d320bcb43fba3afb6063ae215aa97d14c0bbd17588dc1050a004784
size 133370
oid sha256:54ef29775fd40b31a78578dfbabe1d959820441bebb93d98e95278796b278f32
size 124304

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec2b1b617a403cd6e9022f1a25c7c98928db7f53551fc3ad79a2c55bf0e5efd0
size 82388
oid sha256:b32488a5a7c90b0c4b750d8cd822153782fa8493ac84d54af3496086a856d530
size 65677

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32cc2748f76baf53c9381577b3df8ad94dc61a46381dc4d7b461230c6697f664
size 155899
oid sha256:0e01fea50098eccd088f769862a228f157c6d841669f25f1f1069c7a3868d434
size 142729

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1e7114ea0a72f99d269cf65e4f2901c84d0aed974bf00c83fd2866103723d984
size 136836
oid sha256:5f2bd0bdf5bd80c5d95b446c3506586cef87d941053e11e326ec0aead7e6a4a5
size 124659

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec2b1b617a403cd6e9022f1a25c7c98928db7f53551fc3ad79a2c55bf0e5efd0
size 82388
oid sha256:b32488a5a7c90b0c4b750d8cd822153782fa8493ac84d54af3496086a856d530
size 65677

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1de78718ec47dc82b401bf585c9f81f908e1fc8726bddd398ccd3e28edb85501
size 162473
oid sha256:aa1f5d7f650040389a061f8e0cd1d51715bded4e147f631de212ba3720bc226f
size 144069

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15e6be4601c0e76ae48d1bd9fd686b84c88cebf442615ec68ab413651795a81f
size 80910
oid sha256:5458062a12859055a57f03859348658aa572d134ed6906eeff6a575f11ae52c8
size 72837

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a879da48969258931810b0b2810e2e1833328f55617a36898ae0ba4defb168d
size 54981
oid sha256:7dbc686c75e95b8b0fbabad6f707d23bb5f0f5a6f37db69a98fd7a0138b4d0f3
size 39633

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9cfb47c1627fcf7416300c41e78f2e86a1512d81c5b6b574550c4999fe70d6a3
size 100178
oid sha256:47dfcdcfcef7152c3ccc610aa17093eac3857eddd0238590f37e1fc90d427f5d
size 87144

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef6435d13417dbe812914489ce47a35920c7c914c78703339124943406e84d36
size 84952
oid sha256:cf5b48f75f09bd661480be71c3209326808f7d4e65111b29d29669143d3e7641
size 74498

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a879da48969258931810b0b2810e2e1833328f55617a36898ae0ba4defb168d
size 54981
oid sha256:7dbc686c75e95b8b0fbabad6f707d23bb5f0f5a6f37db69a98fd7a0138b4d0f3
size 39633

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:736923ab372c79c459687628f2e96af88b2dfa62eaf014e6b9067471e9af671a
size 107992
oid sha256:e759b307ab44876bb4140927bf41db9484df54fc663cf4a6f778c7ff2760322f
size 91460

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aca0294e51fb455abaf02c9783b8aac6ee855994997d69545b6cb796d6cb2e62
size 79168
oid sha256:eec0fb622bb41ba2aa7e605065b5521abb0fd101102364ef69a130d99b587af1
size 75546

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aca0294e51fb455abaf02c9783b8aac6ee855994997d69545b6cb796d6cb2e62
size 79168
oid sha256:eec0fb622bb41ba2aa7e605065b5521abb0fd101102364ef69a130d99b587af1
size 75546

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56d470d206796f188e6035f34899f874001bbfcf2c6bc70505203aa03a216ad3
size 39241
oid sha256:7ab64c68f9da19160bb88f295cfed92eb979078450d93b6f9c50eadba832d36d
size 34513

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56d470d206796f188e6035f34899f874001bbfcf2c6bc70505203aa03a216ad3
size 39241
oid sha256:7ab64c68f9da19160bb88f295cfed92eb979078450d93b6f9c50eadba832d36d
size 34513

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff896f598f8727e98beeec6b16eb72f939c32cd70aa087b6687e8334878b358e
size 176633
oid sha256:f10187faa0870cc71be03fe91f748f4f6011f2bab7028b5e06c625eb80aa0c60
size 134172

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e3111166fcde6e995fe21c008ff24608fa8d524d6da3bb53ea29dc6e8487a3d8
size 182650
oid sha256:275663ed1e0c3d0271a1f8a0b0cd91b44b915c18782a577b49a39d58e96ae414
size 134819

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:313113fd6bb30e1a16d35bd67534ba314954ba8d1d6a75603ad6f7c41a28c7cb
size 118587
oid sha256:60cf61947b68f5a3f955d37543044136bdfe61e1d86880979296f75d03a595f7
size 81036

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fda9a9b13afc071983034b96b163e7ff938c02ad81a9ab3e1139557c75841909
size 124228
oid sha256:f56cd4475dbbb4b385b2e6aa5028f257e75f082b24c8d1dadf088dd999ec6ce8
size 81615

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11302abb63ef416995108ba008b4d7f850bba43e8188e6db6c166f3916327e13
size 234184
oid sha256:949b617382ca9d05a57d19b1344b3666e1adb95714719ba190949a39fe915293
size 152494

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c68018bb8f7c06958413b2ac0dc3ad22d677fabea52f3bbe9cc866673a4f2b6d
size 282938
oid sha256:c78b8b5715b08148dd9072f55e7479bb12cee81b9829530dd338eda9059961bc
size 202139

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:892381c850ba022187374834b45d5931d7ec149f72dd67059976dee6edf6ce8b
size 347894
oid sha256:81932b36dba1deb02020f8ea7fea245d494dd62b49da9c40bf8930b82d1706c4
size 195022

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b428f8c94dbe29f0da927b55b577874a4366ed3a492662407fe32725d8976eb
size 396260
oid sha256:c210c6effe6337247a5cedc26b00a57cb3973efe22cc0ad806e8df655af58d18
size 241866

Some files were not shown because too many files have changed in this diff Show More