Update Preview tests for Xcode 16.

This commit is contained in:
Doug
2024-09-18 17:18:18 +01:00
committed by Doug
parent 9c15f24ad1
commit fa76508788
1179 changed files with 1455 additions and 1457 deletions

View File

@@ -5,6 +5,7 @@
// Please see LICENSE in the repository root for full details.
//
import Compound
import SwiftUI
struct AvatarHeaderView<Footer: View>: View {
@@ -193,7 +194,7 @@ struct AvatarHeaderView_Previews: PreviewProvider, TestablePreview {
mediaProvider: MockMediaProvider()) {
HStack(spacing: 32) {
ShareLink(item: "test") {
Image(systemName: "square.and.arrow.up")
CompoundIcon(\.shareIos)
}
.buttonStyle(FormActionButtonStyle(title: "Test"))
}
@@ -207,7 +208,7 @@ struct AvatarHeaderView_Previews: PreviewProvider, TestablePreview {
mediaProvider: MockMediaProvider()) {
HStack(spacing: 32) {
ShareLink(item: "test") {
Image(systemName: "square.and.arrow.up")
CompoundIcon(\.shareIos)
}
.buttonStyle(FormActionButtonStyle(title: "Test"))
}

View File

@@ -29,7 +29,7 @@ struct MatrixUserShareLink<Label: View>: View {
struct MatrixUserPermalink_Previews: PreviewProvider, TestablePreview {
static var previews: some View {
MatrixUserShareLink(userID: "@someone:somewhere.org") {
Label("Share", systemImage: "square.and.arrow.up")
Label("Share", icon: \.shareIos)
}
}
}

View File

@@ -5,7 +5,7 @@
// Please see LICENSE in the repository root for full details.
//
import Foundation
import Compound
import SwiftUI
struct FileRoomTimelineView: View {
@@ -13,15 +13,15 @@ struct FileRoomTimelineView: View {
var body: some View {
TimelineStyler(timelineItem: timelineItem) {
Label(title: { Text(timelineItem.body) },
icon: { Image(systemName: "doc.text.fill")
.foregroundColor(.compound.iconPrimary)
})
.labelStyle(RoomTimelineViewLabelStyle())
.font(.compound.bodyLG)
.padding(.vertical, 12)
.padding(.horizontal, 6)
.accessibilityLabel(L10n.commonFile)
Label { Text(timelineItem.body) } icon: {
CompoundIcon(\.document)
.foregroundColor(.compound.iconPrimary)
}
.labelStyle(RoomTimelineViewLabelStyle())
.font(.compound.bodyLG)
.padding(.vertical, 8)
.padding(.horizontal, 6)
.accessibilityLabel(L10n.commonFile)
}
}
}

View File

@@ -18,8 +18,8 @@ import AccessibilitySnapshot
class PreviewTests: XCTestCase {
private let deviceConfig: ViewImageConfig = .iPhoneX
private var simulatorDevice: String? = "iPhone14,6" // iPhone SE 3rd Generation
private var requiredOSVersion = (major: 17, minor: 5)
private let snapshotDevices = ["iPhone 15", "iPad"]
private var requiredOSVersion = (major: 18, minor: 0)
private let snapshotDevices = ["iPhone 16", "iPad"]
override func setUp() {
super.setUp()
@@ -27,18 +27,28 @@ class PreviewTests: XCTestCase {
checkEnvironments()
UIView.setAnimationsEnabled(false)
}
/// Check environments to avoid problems with snapshots on different devices or OS.
private func checkEnvironments() {
if let simulatorDevice {
let deviceModel = ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"]
guard deviceModel?.contains(simulatorDevice) ?? false else {
fatalError("\(deviceModel ?? "Unknown") is the wrong one. Switch to using \(simulatorDevice) for these tests.")
}
}
let osVersion = ProcessInfo().operatingSystemVersion
guard osVersion.majorVersion == requiredOSVersion.major, osVersion.minorVersion == requiredOSVersion.minor else {
fatalError("Switch to iOS \(requiredOSVersion) for these tests.")
}
guard !snapshotDevices.isEmpty else {
fatalError("Specify at least one snapshot device to test on.")
}
}
// MARK: - Snapshots
func assertSnapshots(matching preview: _Preview, testName: String = #function) {
guard !snapshotDevices.isEmpty else {
if let failure = assertSnapshots(matching: AnyView(preview.content),
name: preview.displayName,
isScreen: preview.layout == .device,
device: preview.device?.snapshotDevice() ?? deviceConfig,
testName: testName) {
XCTFail(failure)
}
return
}
for deviceName in snapshotDevices {
guard var device = PreviewDevice(rawValue: deviceName).snapshotDevice() else {
fatalError("Unknown device name: \(deviceName)")
@@ -91,15 +101,17 @@ class PreviewTests: XCTestCase {
.frame(width: device.size?.width)
.fixedSize(horizontal: false, vertical: true)
)
let failure = verifySnapshot(of: matchingView,
as: .prefireImage(precision: { precision },
perceptualPrecision: { perceptualPrecision },
duration: { delay },
layout: isScreen ? .device(config: device) : .sizeThatFits,
traits: traits),
named: name,
testName: testName)
let failure = withSnapshotTesting(record: .missing) {
verifySnapshot(of: matchingView,
as: .prefireImage(precision: { precision },
perceptualPrecision: { perceptualPrecision },
duration: { delay },
layout: isScreen ? .device(config: device) : .sizeThatFits,
traits: traits),
named: name,
testName: testName)
}
#if canImport(AccessibilitySnapshot)
let vc = UIHostingController(rootView: matchingView)
@@ -111,21 +123,6 @@ class PreviewTests: XCTestCase {
#endif
return failure
}
/// Check environments to avoid problems with snapshots on different devices or OS.
private func checkEnvironments() {
if let simulatorDevice {
let deviceModel = ProcessInfo().environment["SIMULATOR_MODEL_IDENTIFIER"]
guard deviceModel?.contains(simulatorDevice) ?? false else {
fatalError("\(deviceModel ?? "Unknown") is the wrong one. Switch to using \(simulatorDevice) for these tests.")
}
}
let osVersion = ProcessInfo().operatingSystemVersion
guard osVersion.majorVersion == requiredOSVersion.major, osVersion.minorVersion == requiredOSVersion.minor else {
fatalError("Switch to iOS \(requiredOSVersion) for these tests.")
}
}
}
// MARK: - SnapshotTesting + Extensions
@@ -133,7 +130,7 @@ class PreviewTests: XCTestCase {
private extension PreviewDevice {
func snapshotDevice() -> ViewImageConfig? {
switch rawValue {
case "iPhone 15", "iPhone 14", "iPhone 13", "iPhone 12", "iPhone 11", "iPhone 10":
case "iPhone 16", "iPhone 15", "iPhone 14", "iPhone 13", "iPhone 12", "iPhone 11", "iPhone 10":
return .iPhoneX
case "iPhone 6", "iPhone 6s", "iPhone 7", "iPhone 8":
return .iPhone8

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:987c192f5c1ab4c07fc198c190b3867843d9b459e6edf71a5057102853fe9941
size 66997

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd509058af6af0c07b4350bf19e33dc16ca76c977be0c99d03614f4810374235
size 84485

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f008b0b91873db9b4102bf8508a78372db9440f577c609e1677837e19561dbb
size 111069
oid sha256:4959f2b957a1fc21cd35b690b5eea1fc9aab9cc84fe13c3a50b3fbecea276e3c
size 110926

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:668a9c0536b5155b7bf07e6b8fc7de64e94c15868d5efee11cdb771d9cf2175d
size 118743
oid sha256:4f3d9c02c0c19490c9b1245d86dfdd97468f0cafa8c32bb9d01a62c1dccca6a9
size 118558

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82b98dbc5b90e4f3432d4d311cf98b1f8762e22b7b4437364030633782145f38
size 73447

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3701ce1293f61e7b35abfe35d13f5860c1a87136ecaa3d3406e8d0dd117a6b14
size 87369

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7558f09b10e62a9a111e91fe259f86c3709bf354867b406b23a3a122c67d9d29
size 73551

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2bea6d31ae7c93fb10936d2af89bdefa799d2a8d5a314c2d7e351dd817c6bf68
size 87505

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8b079a6750fcaae622ee5b104e6eb1d2dd9e9ce560ea21a3e59d394ea39b1578
size 114681
oid sha256:56c1d96bd433043bd76ec90173c6e0a4d8acab8f07425e59f49973e203bf7d59
size 116471

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86edb6ef21be16e30d1dcbfe0b97bad62777455f33fc0f482ea80df5cc27a2ad
size 70704

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a48b16f920e15a66dde777206198e6cb1c5233606e3dd77dd12b56c716c4d64
size 77691

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e1185f3149926908e18fc3cb965ba3931bd76f8b72aaa6c081647a2d488ce79d
size 98717
oid sha256:8148695b7f4dd66e4334d77d7212f37b833875c9f54ca14f4adcb2c524cce376
size 100027

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fb7d1a41531c3f361c5d3fc5e5e518123131ad15431deb258c00276989e9e78e
size 57266

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f472a38eb8971e54a1ee3df632082f817d074b607c5836394259a3b14d084052
size 73270

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5922b6a330c096c0686a8128566714e7626e3fd1f8682b50a9bf75aaca5f9569
size 99568
oid sha256:4e8e2c0d5fb539547eb17874010dc890a90283cd99a9baf63a91b8b4d4bccfc1
size 102419

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd1fa6ec01b866375ba36673b738f00f16bf57d6e7281343348bc7379475c494
size 119211
oid sha256:268ba715124976362a3bffb717681af0d82b8e93562d2374a70ff2bf4cde752f
size 121144

View File

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

View File

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

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:132cead04ae998a039b9413b193d4e52f6026c0c1160dc3e11ff69699e9c0234
size 89534
oid sha256:727f3dc6aabbeb986ea755b0595a0f8a7eaee848d15fd95eb2d21ba563432ffa
size 89618

View File

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

View File

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

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:773e1134128bb35979bb19e82e9c286a73598baa304cb02d18a5080b5b0fc7b5
size 100047
oid sha256:908b9f86a6cb31e620009f7bff398ead7d68241eedc5f8e59fe01d39e5cf167d
size 97588

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b7a4a6ca895b8d71d079176ab44732316aa7149992b21ab768be82a6e7dbc4ea
size 49095

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:41acc3cd4775ba06b537fedad75903356275269b02a8c80c56cfa8e8b9411a44
size 42396

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f8942f3d67c62661dbebc6580c3d79853ab49673f846ca481d4740153d04625c
size 45702

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e8e967bf9f379fa62f6ca21a70e0af0bb146a0ac78a7a2eea0a97c11e6a10afd
size 56649

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d12573998b27fb7094012b265f02558a6ec1d47282daedda183ec64e7abb190c
size 46489

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c9ae6aec2e39d2782be188c197e97e0a5c617a67adbc6f5cfd0ee6866e7eed5
size 52118

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:acb92bfaa2a8849b1debe3852d55dcdb2eec2d77e1aaf2417c75248ae2538b2c
size 1260707
oid sha256:9739d20915112a358519b0ad80382b27827df4b26dd504a08d71ebe3ec041ff3
size 112019

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2ce2c744aa3b516479a4bbac4d69f9c324f736200330cd8d9107deceed604696
size 1294329
oid sha256:d5727c77119c15ced3ed6e082ce49f62700182108d9e1180aec189eb263faa50
size 131397

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0e01fea50098eccd088f769862a228f157c6d841669f25f1f1069c7a3868d434
size 142729
oid sha256:7d2557dc6f6c8bf357f8941d5e34eca1bad97930e73ffcb65e747f43edab5ee9
size 142395

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d554256c0bed2b0dec2ab2357fb0b6f44e5f927e8766f5134d0083ebf8b77d6
size 72733

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:781c7c0aa241138c17c18ca152815a0476fb9722c174f24dff3afffcea9cb2d5
size 86998

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:805b359ab4c8880717b6771e0acc049b7a8eed27214d4ef1833183d349e7dfa7
size 74400

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dbb2e14c8bf7b0a9b5082db07e123732ac26ef431418e6d3d62011a2100a7e7e
size 91331

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56034d6fdb06f469ebbb3328591e2106428d8f1e6cd52539ff3a5545ea65957c
size 81251

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9e2a1d28a41ed0bc2e42b4f3a6ac7fedc641052847cc5d8694b30131a742399e
size 81848

View File

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

View File

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

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