Updated Screenshot Tests and fixed an issue with the MockMediaProvider (#554)

* updated the tests

* updated ui tests

* removed unused files

* fixed a bug that prevented the image to be added in the avatar of the rooms from the mock, and improved some UI tests

* swiftformat

* fixed an issue where the room Id was not matching the real room id coming from the timelineController, also updated some tests, and added a test for the case where the RoomAvatar is available.

* added some waitForExistence checks to allow the CI to find the UI elements

* this should make the loading bar always match at the HStack size

* code improvement for the tests

* fix for the max frame of the loading screen

* updated tests

* regenerated and improved some tests

* sonarcloud improvements

* changelog
This commit is contained in:
Mauro
2023-02-09 14:57:55 +01:00
committed by GitHub
parent c4343d3dd9
commit 4af8f2860d
137 changed files with 293 additions and 260 deletions

View File

@@ -40,7 +40,8 @@ struct UserNotificationModalView: View {
}
}
.padding()
.frame(minWidth: 150.0, maxWidth: 250.0)
.frame(minWidth: 150.0)
.fixedSize(horizontal: true, vertical: false)
.background(Color.element.quinaryContent)
.clipShape(RoundedCornerShape(radius: 12.0, corners: .allCorners))
.shadow(color: .black.opacity(0.1), radius: 10.0, y: 4.0)

View File

@@ -103,13 +103,13 @@ struct RoomDetailsScreen: View {
.background(Color.element.system)
.clipShape(RoundedCornerShape(radius: 8, corners: .allCorners))
.frame(width: menuIconSize, height: menuIconSize)
Text(ElementL10n.bottomActionPeople)
.foregroundColor(.element.primaryContent)
.font(.body)
Spacer()
if context.viewState.isLoadingMembers {
ProgressView()
} else {
@@ -138,19 +138,19 @@ struct RoomDetailsScreen: View {
.background(Color.element.system)
.clipShape(RoundedCornerShape(radius: 8, corners: .allCorners))
.frame(width: menuIconSize, height: menuIconSize)
VStack(alignment: .leading, spacing: 2) {
Text(ElementL10n.encryptionEnabled)
.foregroundColor(.element.primaryContent)
.font(.element.body)
Text(ElementL10n.encryptionEnabledTileDescription)
.foregroundColor(.element.secondaryContent)
.font(.element.footnote)
}
Spacer()
Image(systemName: "checkmark")
.foregroundColor(.element.quaternaryContent)
}

View File

@@ -119,7 +119,7 @@ class BugReportService: NSObject, BugReportServiceProtocol {
if let progressListener {
progressSubject
.receive(on: DispatchQueue.main)
.assign(to: \.value, on: progressListener.progressSubject)
.weakAssign(to: \.value, on: progressListener.progressSubject)
.store(in: &cancellables)
(data, _) = try await session.data(for: request, delegate: self)
} else {

View File

@@ -19,7 +19,7 @@ import UIKit
struct MockMediaProvider: MediaProviderProtocol {
func imageFromSource(_ source: MediaSourceProxy?, size: CGSize?) -> UIImage? {
nil
imageFromURL(source?.url, size: size)
}
func loadImageFromSource(_ source: MediaSourceProxy, size: CGSize?) async -> Result<UIImage, MediaProviderError> {

View File

@@ -19,7 +19,7 @@ import Foundation
import MatrixRustSDK
struct MockRoomProxy: RoomProxyProtocol {
let id = UUID().uuidString
var id = UUID().uuidString
let name: String? = nil
let displayName: String?
var topic: String?

View File

@@ -41,6 +41,7 @@ enum UITestScreenIdentifier: String {
case sessionVerification
case userSessionScreen
case roomDetailsScreen
case roomDetailsScreenWithRoomAvatar
case roomMemberDetailsScreen
}

View File

@@ -274,11 +274,24 @@ class MockScreen: Identifiable {
return navigationSplitCoordinator
case .roomDetailsScreen:
let navigationStackCoordinator = NavigationStackCoordinator()
let userNotificationController = UserNotificationController(rootCoordinator: navigationStackCoordinator)
let roomProxy = MockRoomProxy(id: "MockRoomIdentifier",
displayName: "Room",
isEncrypted: true,
members: [.mockAlice, .mockBob, .mockCharlie])
let coordinator = RoomDetailsCoordinator(parameters: .init(navigationStackCoordinator: navigationStackCoordinator,
roomProxy: MockRoomProxy(displayName: "Room",
isEncrypted: true,
members: [.mockAlice, .mockBob, .mockCharlie]),
roomProxy: roomProxy,
mediaProvider: MockMediaProvider()))
navigationStackCoordinator.setRootCoordinator(coordinator)
return navigationStackCoordinator
case .roomDetailsScreenWithRoomAvatar:
let navigationStackCoordinator = NavigationStackCoordinator()
let roomProxy = MockRoomProxy(id: "MockRoomIdentifier",
displayName: "Room",
avatarURL: URL.picturesDirectory,
isEncrypted: true,
members: [.mockAlice, .mockBob, .mockCharlie])
let coordinator = RoomDetailsCoordinator(parameters: .init(navigationStackCoordinator: navigationStackCoordinator,
roomProxy: roomProxy,
mediaProvider: MockMediaProvider()))
navigationStackCoordinator.setRootCoordinator(coordinator)
return navigationStackCoordinator

View File

@@ -51,7 +51,9 @@ class LoginScreenUITests: XCTestCase {
app.goToScreenWithIdentifier(.login)
// When entering a username on a homeserver with an unsupported flow.
app.textFields["usernameTextField"].clearAndTypeText("@test:server.net\n")
let usernameTextField = app.textFields["usernameTextField"]
XCTAssertTrue(usernameTextField.waitForExistence(timeout: 5.0))
usernameTextField.clearAndTypeText("@test:server.net\n")
// Then the screen should not allow login to continue.
app.assertScreenshot(.login, step: 2)

View File

@@ -22,6 +22,15 @@ class RoomDetailsScreenUITests: XCTestCase {
let app = Application.launch()
app.goToScreenWithIdentifier(.roomDetailsScreen)
XCTAssert(app.staticTexts["roomAvatarImage"].exists)
app.assertScreenshot(.roomDetailsScreen)
}
func testInitialStateComponentsWithRoomAvatar() {
let app = Application.launch()
app.goToScreenWithIdentifier(.roomDetailsScreenWithRoomAvatar)
XCTAssert(app.images["roomAvatarImage"].waitForExistence(timeout: 1))
app.assertScreenshot(.roomDetailsScreenWithRoomAvatar)
}
}

View File

@@ -147,7 +147,7 @@ class RoomScreenUITests: XCTestCase {
app.goToScreenWithIdentifier(.roomLayoutBottom)
let connection = try await listener.connection()
try await Task.sleep(for: .seconds(1)) // Allow the connection to settle on CI/Intel...
try await Task.sleep(for: .seconds(2)) // Allow the connection to settle on CI/Intel...
defer { connection.disconnect() }
// When an incoming message arrives.

View File

@@ -29,7 +29,7 @@ class UserSessionScreenTests: XCTestCase {
app.buttons["roomName:\(roomName)"].tap()
XCTAssert(app.staticTexts[roomName].exists)
XCTAssert(app.staticTexts[roomName].waitForExistence(timeout: 5.0))
try await Task.sleep(for: .seconds(1))

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef1a784afc00ceabab3bfa313034818d6b7d0a8be76f19e00381fc815a60b5d4
size 147357
oid sha256:94aaa3eafaa774d0fe02f1d45f54df9dec1e3e45ce5e05f0b8ad13af2663bf5f
size 147757

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0e3edbda082d2708de03ca541e7fff618bf9efd177673f9da1a5ae26fc56e284
size 89473
oid sha256:84ae2c884d2fba85aea5d2d107d8096ccdcad93ce452d39e8fc9509cb5d5ce28
size 88786

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b426320713d78e29a3bfe11868255b6bae66be179bf5d9ff6b3b9e0dd754fb4
size 109278
oid sha256:da6f2865d45eff4ba6cc6b28954152184fa2b1e0b360b680789e5fc52156800d
size 109266

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f41c6d7d09b22e773ce5d1fe37ba4a2cda25e239881de405dc47ab161591961f
size 163911
oid sha256:0a8b60268e5024ab15548a0de7585f1492d18cbbc5ff02344d82cd7cb468609c
size 163777

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a53b68cb08ebc041b8b1aa8a29af94c4c19f3bb48df672b078aa586e858728a1
size 166072
oid sha256:2267708bec43c594b550ee43a9871ed6efa36c185fa12b73232c6ad508274328
size 165403

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9427f2e142bcfeae39c253a2ef620263e8ece317d317868198a0077c66d61996
size 78625
oid sha256:82f38aea3c8f38bc8bf87028ad3f6cf4770c6fec2d2bf46ae739d7865d914854
size 86064

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4b94b634587f6f2326763babe911f68f089f0c82b5d5ecb48a8da9a48d4ed048
size 91500
oid sha256:a41aec90e72bf87733ba3c5affb128531f02809d54d3034572fa095a8f0ab721
size 91192

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2047a424580d38d7780fef8a1287d70fc1663565cc1cbfce30882b7fc2df8993
size 76516
oid sha256:3ea593b5c20747ebc9a972689a4db0a131d2908b7a0d0794646606f6cf518ece
size 76656

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:572337d216e1705d6c23c47bfaf064f0518f9048e4d9ff06b48079e986702d14
size 83871
oid sha256:d44f42e63c990b2f012800494af6780fd24acea71e44ca3c361e407d9c7c311f
size 83985

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c527ad80bd198c70e84e79b242d5ea2e2032d39027444e19676d5ef393684ddd
size 92787
oid sha256:51a2c9dc7b2049c0a351268187aad2854f15d1e5c10e9caf733d629a93b5a089
size 90771

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d4f9921f23e219abb45b496389854f5b371ee7463ee42866991b44a47b19bb59
size 94836
oid sha256:970c9b01387e5cd16dfda9a4da49d0bebaaa06dfba5bcf9e48ff575ba635a471
size 90791

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32e747c2a8b7b7cd5aeee2f8e50f26ef2af0bf03d2fd4a89e25fad0104687fcf
size 211496
oid sha256:4687a8dd1909ff3b8e309dbaf8f6adf07bb18c39cd1d0b890d0220ca3da9e330
size 222368

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3cb8e1d07e418e7a3fecd9b0699158b8fef40609771fef9666428015d056738c
size 305317
oid sha256:1fda25285905d9abe2ec7f39b8a5ec071e3f22a85afad60a032307bbf5402477
size 276634

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:410e331dca5dbd99356ed345216f83288e231b808d4c3cbc05276a38dc5fba1f
size 304826
oid sha256:a4887066f6c7e9156acebf3d50ead4d34df3ca37128d232649b6bd502279cb8f
size 285790

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8b51971fbfc26b12f82e6b653a62062563564643cfd246f4ee9c3ac559ed7f0
size 314028
oid sha256:6dfd61d9b53508d1813dabc59b4324ae8f6eac23ac993e6f42d5b87ab6d418c6
size 284847

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fea82166624c56da8239158cf04ad9e62bdacb4d7feebf4895fa75ff8a6df621
size 322678
oid sha256:6d123e4e5fc6ed3681175847ed23c7232fbd833d546eed046e07a3243a1cf8c4
size 298132

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e09a2caa99abebc8728bc81d5786e0b9a320348067a684646f653b88145badb1
size 293804
oid sha256:e20417225259eb8fbd67a051a625dcdd5e4d6a9ab25de30056f487a30a214470
size 263315

View File

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

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85656b18c4ef17cf3a36aaef699fffdd34c43089749b5496b09f18fd3a520e60
size 210875
oid sha256:415ddc64b9806f5ec6c7d40efeecdb63632e61f442b9d37e3d320b1a57535143
size 222246

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:96d580e92e1618c729240a00439801feccbfadf6bd7e00119a4df5b3724e1c82
size 92567
oid sha256:90e75572da49d74ad050876780fdbc30ab9e570c17beccf9557cf1ea89a7acc1
size 93664

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:925c9edf55718ec2e1195fbe8a6e313f435eee075c703c74a487ca0425a60f2f
size 133380
oid sha256:823edb684ce585febf4e2b362f7a7e03d8e04185691b3527c2eff06490d61607
size 114797

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:089f14916f6e386fb8ea620df10e74f8f24c703ccfba65b2c46c5f5888c79f3d
size 311767
oid sha256:f34f1152c0e1e3b8c428eb39c6cdc92ec906d3311eb96f51dcd80e858246b1af
size 282423

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:922e97a85ab47e69f02024729c38ca8588da72543039bc8090b9f9a3325032bb
size 120255
oid sha256:63f4e2039ed15cadf9d6af1aa9c4eb529d36586981d233d4f2b23e2a1ff1a8f1
size 167979

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6c875932207a233850e2e14aae1d427e4c06e8adfc324dcee8362c14eda11fff
size 81910
oid sha256:b2f133463e9be7e05cb2d5e53a8cbcba33d524b57321a89a3fc24bd16f9e09b8
size 81684

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0ab7f75524ce702d1d0344884aad7bafa821b7cdd8215c28aff7ddcf0f5d184e
size 90671
oid sha256:911e3f878cf2fb58f4618326b0efeaa9fc69b5b750ab2f9898516f01c068e404
size 100993

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:247a5f18ee289b1343a1648f8a5b7f3400891514032cc0f2065e3a64da3c97bb
size 83087
oid sha256:7d69dbcfbcf77ff231d83db9572ba1f5be9264901ea15bc881e01d5235f3cac8
size 84602

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1cd654b15d352e959b581c117e787919258c535099e480c99cdbb72fa2f7f2fd
size 77679
oid sha256:e209f4603a1ee7ad24278f768cdcdcaa99e732f9cfafb1314a981753ea857c28
size 78912

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b6aa904999e1e46ed25d5adabe9026a757dc2ab7203fab5560409a4bf03a6c44
size 134768
oid sha256:cdb0b509432a547066e7f1c50b416b4b1c37ae484598c918da07f7bcf6bd3be4
size 134530

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c1c5a7753f93c24408a9c9b79252c3b920fcbcb657f4e300a47e5ed695c727d7
size 155231
oid sha256:b3c21386a16a7d7747695e62bf602bb2f4f081623515e986ecbed98f64d12158
size 154491

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d6ccdd35be673a52fcbf796a9ab6dcc9542e20dd657e28119012e71adc46b44e
size 320431
oid sha256:24ef8ab6a55033b41f3a3e93f50632b5da263ab987786fcd5ddbae385b9fbe66
size 313274

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:60541a81761da790812559755f85ff201d393ba9ac76507f0e3f7b855a4e2091
size 193940
oid sha256:7d84ed064f75bb3861fb9c2d2598d0983b13ebb872dad6202aeafd6b013b7e1d
size 194651

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bdd091e931e4eb0f7ec52107bddde230731148567f1e2f09bd9751fe9815ad7f
size 100425
oid sha256:2f9ecffc022f179f5b3c85ebb0c97237aeb441901304930ce134c4e6197863d4
size 99001

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7ac9ea3a814e5b27796bf7cc698a1359c340fad45fe7b2e256d81280b94878b
size 141013
oid sha256:8c8ccf539c26dd51858cd0ae66a7e42a8e3ac2dbe41832a0df6825a2a804d04f
size 141237

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b13c2948b5f5bde43db78e8cc12fb7e63f29fa9d000bc38c107f1c1b8a5f331
size 164364
oid sha256:1c31dfc2666606276181af62a131e0e1199f5b75b72725817766d6cc0fc25375
size 161533

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dbd72a146b02e7f9eee32b6109e05bc373c21918807be479f8d1fb4e9e7f69d4
size 163050
oid sha256:59221f632aef10a110775bd24aba1717feb900dde5168f79f72c42080b539943
size 166287

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:41ae0873744b10876925f55a4201bfc3ec40498ed5f1d7ecdfec66b44f9ca458
size 146025
oid sha256:53a27c874a017b7391fdf2df70fe3c2744ce9700683dcac2851fd8de46738c0b
size 148351

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:87283d139b1810b7b675ec2b5c659ec01e20438d88dc047d5d6262ee923144dd
size 87188
oid sha256:4039015d7f252d560ab7ee0d9fbc0f8abd241411b4661f0eb9963d945e37fd84
size 90236

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f56d59dee20430b613c93ed9d05547fbc887a5f5f4f66fa9cbc6da14d9d1d86f
size 102841
oid sha256:ecaeddba259d1a13f5e5b80d9e59a88302c33f5a57aead8a5a4a92cb93fa455d
size 102062

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bd8314e6b5eaa80eea9bba1d3a93d1c224707fb81b6280625454d6136c8ca66f
size 80882
oid sha256:913989ca0c6f27c2cd1701c987ba5633d9eb9448863b38066f9b535ffa1cce7d
size 80014

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ce3f468a20ae0d814dfc91dd138c5f861505e4b0283c1d3e09f81adad2b6d37e
size 91436
oid sha256:30ed8b2d0e9bdc5caddd9ecadfdbbf735970a7ae2c6d816072e18b690142804f
size 90584

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:59b5f7b444255df8dfa064567e63fbbad4dff501f364fd5675b8a401bef68f2f
size 103405
oid sha256:109e28a53aab25f260b1f2946ab0a0e680efacad60055eb2720d4be5ab534055
size 100053

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7fd5fcb6ee8cdbbe6fae4c10344f05ff4461b9d15451c85f86338b3c176e626b
size 112092
oid sha256:3d36ef0d09153dc39c5f4b4f5b14f3e71f70e0f157d45a8ef1c451c6622716b3
size 106670

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9ba4ef4f768e1c44c0e058db23dc97e8a50516af2a2001fc5f433abf16aeac1a
size 366658
oid sha256:144c168d55608c3d15ea3f952374fee7f0750bffddaa57847f23166e2a395b68
size 345783

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8943c20d22d19e720eb949a47dce8ab304da3cdb6ae292dc007d38c62ee435a8
size 330436
oid sha256:90f909d82506c1a256b02f423c8b29d2fba10706079039eb945b75da3d9196ff
size 285989

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4312ba6002da73071187b871f6532f122bb6c4c3fdf3c9e7a93e9baffd27edfd
size 323699
oid sha256:d6cec36fb1de4ad1ff4ef403e95aabd5aba6a3cc7ef1b3ecdacc01f0f77b3ae6
size 282236

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e19e5caa62c85d0d39177e981961f8356172849bdd564522575762ab44c40dd
size 340523
oid sha256:09768833f6ae1cd4bccffd2e7afb18338b7095cf8cac37df45ea2d620c2e523f
size 310018

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7dce2910cc89ed74a016c5237cd6616357f5f7551cc81541d40ddb8b0e80b39a
size 318257
oid sha256:dce0fd6478bef902b056ec1b6033095eb18c862decb480d247ec163ca97389bc
size 292473

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95fbe5f1ab035fbd354b3f27094ee0c4e37a9965bbadb370919a5476a64c3995
size 284468
oid sha256:f3fdf038b89a5b3792b557b84b2d733f36bd68561d838016e26abfab937fd2f2
size 238618

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:54301aeca9fdaea001bbabf7bd9d4624c820c6cca08bd75eaa3a66a3b88e271a
size 365082
oid sha256:8fe30bb34280bda099f583a8d3e9db2bdf6c6e975df2ec4decf679e337a95a52
size 345536

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94c4a7bb1f6ecf74120324ab118ab314f07663d0b01889581804afc6826a70d0
size 115882
oid sha256:00429d745e49332b1be91658b230d15516a0eb66a83e9cf9512703ef476e3720
size 146069

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:015eb7e93e193d635194bb6d0d67a3a8751180598fc63762ada0f94be11099e9
size 212903
oid sha256:b04854d0bc3be38fa772c097bb7f02e841e7e32b33eb61b89692a24bd82d6ffc
size 179369

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f7192b4cffb7a9079b4a90a4dcb03d663cde46c0835eeb2481deead9d069d30
size 333980
oid sha256:eb0231fdd204fd8754b3e9ba59eb522b599c03c9e04e717650be5ab1c3440aca
size 298553

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:799775d327dfc0e7648afc460f49b5685533552e07c7410f81302be92219df3b
size 112137
oid sha256:9da6d1ec94b9cba6b468b9e2368d3e9aa10b52599cfbf8bd18565e3c2f63cac2
size 110691

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8fedebc2f8236e9824e067c48a3177c198ae5399f3b79a63d0f42876c4dc9212
size 109549
oid sha256:8ab14c3f0a94c2fdef06fe1a8e8b60c0359d8e09587a1e70d86d171d6699bc89
size 172116

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79163533dc0069a51c0309ad4cc5291a324457949d69155954fa2c8529de9478
size 109653
oid sha256:7356f84c44761fc41f98fc4fca6cc9146eeb55a3130f76f6bea025543fb5b730
size 123373

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15b94ec3bf3863ebf6e82295899b623b1c29dceeb99a0d1073555aaa3ca46405
size 94755
oid sha256:8c8ea2a331256f8170454573f7c5cdd2198d7f9d5106872102cb1f578e71579e
size 94643

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d2dd1bb2e8d6d2b9f7f4c049bd2337224f963c845efb0ed81b19000d652698b6
size 87699
oid sha256:6255d6b5e899ff82c963864a459f5d63e8b0c1be6f157e7f4da14e0e2746221d
size 87524

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:464e4cadb82e91d37564989379d1be21b16ca6f665d918cecc267b0e7bc0dcff
size 177470
oid sha256:925ef2c8e27829b8797cb3c288b6d720f82917dd24eebe07e602bfe415711b9a
size 178889

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b4c590ae196e4712101b4b073770301a903360b0682215f9a76dc0a599d6bfe
size 125669
oid sha256:99aa02d9d59f1ebb256c2012aa21fa83c41c2a174825285e3ec233d4821cc7c5
size 124694

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a41dd1f7b4c34ffefa5a60154729192c7ae8b28ef91d7c3453333e11b1b27e90
size 301235
oid sha256:64ad1d19129a80c3603619d6424a5ff9f17768395226f01eb3850315a4806537
size 289244

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:67b5e3652af586ba4478c79cdb1bf2f6f952ef93065c18aa4b30622f7644a20b
size 135323
oid sha256:97e77a883d7803bf18ace6204966badb5f76f382f6b8900b7aee9f8d1fcf8d7b
size 135715

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:842fd6e19c0395b5f893073ae954501a9a5130aa0d94af2509334900ad33dd03
size 87222
oid sha256:772f4603de5890f2cb5519eb03b69405fd8a744a4a8187bd357538c2134cc36a
size 88386

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:785af4eb68e1a2c4456594408f9daca73e0d2c32dabab859236728ecd5d4f3a8
size 108706
oid sha256:7cdf78ee1d8da820ad8ab7d9055f8ab3e0811aacacc56d93eca7cbe75d038066
size 108651

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bec1027681bfaae00b6923156409328de885b9c2a0cc9321a156d8a8b6db1bf2
size 163881
oid sha256:b8dd0c7905a101a5cd98bb2bc95a538453b8fb9532cf4eba75e48239b8d67c1d
size 163129

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c83c78541c802938288bae1630cbf0ab65e46e0efc97a33af3c6d5e869b298d
size 165517
oid sha256:7ad3e77c76fea231adf9340f4ca0208eadbae56f4b4b7aa6bb1c2ab697e9525c
size 164851

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9427f2e142bcfeae39c253a2ef620263e8ece317d317868198a0077c66d61996
size 78625
oid sha256:82f38aea3c8f38bc8bf87028ad3f6cf4770c6fec2d2bf46ae739d7865d914854
size 86064

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d6dd66777ae8f3e28df56483cdc1a7ec69c89215e1cff3a4eb89babcca05f68b
size 89322
oid sha256:ba7a7a1cc7c1006a4a859dc532535bee0217a9624f10899265e9391df632ccf0
size 90724

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:376013470882195ec51279f0ddf31e1704c6751ef10b0154e937df2bd93daf9d
size 74868
oid sha256:da60b298f838c5484052fca786da8dbcffcb2a5c9d989623f697e1d136cd79c2
size 76264

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb947f6d7daf93f194f513cd0d2c30cf549382c39d7997dab32ace6be08faf1b
size 79052
oid sha256:8be57bcd3b0ea533dcc832494e3d066085b057f33b42b05e44c9386c448291ec
size 80427

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e9ff2966d30ddceeb541281efd67eba3aeebd9764d3d3f1ba13a9aa82a8d4b1
size 88087
oid sha256:7cda6e325b169f50786cfb8444e27ff7213eefc6e5e81fd59cbb1ff9bf19a1bf
size 87464

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c75cd037fa00ce8a313d71e5d27a7228ae9534327eb73e6d466edde1eed7cbc0
size 89990
oid sha256:50081a6f1d88492cee859e6948f528ed1400509fa6b829f4ac30f9594d0905df
size 86961

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:874b7aafe67bc385648ffdfce0d6fa8b75899dcd923de24a97b2d9a5246d4e9e
size 210847
oid sha256:a0129e1b6f13fbd21d167be2903217600653f4ddef38388ad6da6ba14c55fa38
size 222460

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e293cc224e3c71f5339ca59f10db4450d96e025738c9117b18d41b57fe49a4d5
size 305117
oid sha256:9e530096c62b5eed931df88a4a0a229130c2b3007cee614706f007a81e5fbf76
size 277101

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4580e0f596f44aece15bf7b8deb28b996e4c3f2132babd243d8896cdc67319f9
size 307638
oid sha256:3ec5385d592d1067b7f8afda9dfa56ec21a94d54eb7c3351078ce9ff1b64624c
size 286210

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:88beeea3e68ad96cae62801499a232d9f2390ff7419a7a21ee03bbc96755833a
size 313817
oid sha256:c79ad9e4df49dfbd266248571d082e98852d1a2a02d743a413281a3b08dd3068
size 285382

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5987f0e456429925cbd96f562bb0bd6a2de281d8e16c04e3607709f4a826aa81
size 324059
oid sha256:ac2bfda0c854002deb4b220fd95588a711d5bc80832cf51dcd68d1b834215883
size 298817

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e591b331dbb4531b1f6c772b23d0dd64887b9969c08bf2f5df9eed5e96e6cc71
size 293606
oid sha256:30ae9c3b1d985b20bcb233a6509fcacd20b889935a210afab837ce2849954d81
size 263931

View File

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

View File

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

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e181e9ded4026b2ecfb48c7a2f9d3f4b5045c4d08608dbca45ad26cca831c160
size 210222
oid sha256:55da826140e242192146e855c132ba5b89d167b620b4cea2a3a7b7fa330e2ca2
size 222337

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12af6767660c17c4eaebdb951da4e61ac1cc365ba950e237fe8f08d4707f39a5
size 92342
oid sha256:73b62c2a828f6ba3a2c30f7d1301125b8a585e4b3541cdd126a30503085d1c89
size 94176

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:087309a5c640fe574e3f80e9e8cbccef71bced0d49016a27c963d7bff07e24d1
size 133159
oid sha256:c544755cdbe2f6f3bfb6529660f6ccec8664dac5e43e6bfbea873750500952b5
size 115325

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7482b45bcde59ec93b1a3f211d2f3187357b5326be5a70dce4a309c8204b6a2
size 311570
oid sha256:e2e476a1ace6813f7277345d4dc2cbf748c43c021e14033dd6b8c51c2b76525b
size 282952

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afd87ea8987b841873e0fac1868d1ddb08ddaca12296dc7b2715b5e73792fa31
size 114965
oid sha256:87194387a1bcfbf41fe627cdbf4fde40a7b13e86fedbf7a2775565ec7824284a
size 163166

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