Update UI tests (#730)
* Update snapshots. * Fix timeline grouping and UI tests. * Remove German UI tests with double-length pseudolanguage. Avoids tests breaking when translations are updated.
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -56,7 +56,7 @@ Tools/Scripts/element-android
|
||||
# ignore all
|
||||
/UITests/Sources/__Snapshots__/Application/*
|
||||
# but keep the references
|
||||
!/UITests/Sources/__Snapshots__/Application/de-DE-iPad-9th-generation.*.png
|
||||
!/UITests/Sources/__Snapshots__/Application/en-GB-iPad-9th-generation.*.png
|
||||
!/UITests/Sources/__Snapshots__/Application/de-DE-iPhone-14.*.png
|
||||
!/UITests/Sources/__Snapshots__/Application/pseudo-iPad-9th-generation.*.png
|
||||
!/UITests/Sources/__Snapshots__/Application/en-GB-iPhone-14.*.png
|
||||
!/UITests/Sources/__Snapshots__/Application/pseudo-iPhone-14.*.png
|
||||
|
||||
@@ -65,6 +65,12 @@ The project uses its own shared githooks stored in the .githooks folder, you wil
|
||||
git config core.hooksPath .githooks
|
||||
```
|
||||
|
||||
### Strings and Translations
|
||||
|
||||
The project uses Localazy and is sharing its translations with the ElementX Android project: https://localazy.com/p/element
|
||||
|
||||
Please read the [Android docs](https://github.com/vector-im/element-x-android/blob/develop/tools/localazy/README.md) for more information about how this works. Note: On iOS we don't have the additional step of filtering strings per module.
|
||||
|
||||
### Continuous Integration
|
||||
|
||||
ElementX uses Fastlane for running actions on the CI and tries to keep the configuration confined to either [fastlane](fastlane/Fastfile) or [xcodegen](project.yml).
|
||||
|
||||
@@ -128,7 +128,6 @@ struct RoomDetailsScreen: View {
|
||||
|
||||
private var securitySection: some View {
|
||||
Section {
|
||||
HStack(alignment: .top) {
|
||||
Label {
|
||||
VStack(alignment: .leading, spacing: 2) {
|
||||
Text(L10n.screenRoomDetailsEncryptionEnabledTitle)
|
||||
@@ -140,12 +139,6 @@ struct RoomDetailsScreen: View {
|
||||
Image(systemName: "lock.shield")
|
||||
}
|
||||
.labelStyle(FormRowLabelStyle(alignment: .top))
|
||||
|
||||
Spacer()
|
||||
|
||||
Image(systemName: "checkmark")
|
||||
.foregroundColor(.element.quaternaryContent)
|
||||
}
|
||||
} header: {
|
||||
Text(L10n.commonSecurity)
|
||||
.formSectionHeader()
|
||||
|
||||
@@ -196,7 +196,7 @@ class RoomScreenViewModel: RoomScreenViewModelType, RoomScreenViewModelProtocol
|
||||
}
|
||||
|
||||
// can be improved by adding a date threshold
|
||||
return otherEventTimelineItem.properties.reactions.isEmpty && eventTimelineItem.sender == otherEventTimelineItem.sender
|
||||
return eventTimelineItem.properties.reactions.isEmpty && eventTimelineItem.sender == otherEventTimelineItem.sender
|
||||
}
|
||||
|
||||
private func sendCurrentMessage() async {
|
||||
|
||||
@@ -23,14 +23,10 @@ struct MockMediaProvider: MediaProviderProtocol {
|
||||
return nil
|
||||
}
|
||||
|
||||
#warning("Fix me. this is stupid!")
|
||||
if let size {
|
||||
if size == AvatarSize.room(on: .details).scaledSize
|
||||
|| size == AvatarSize.room(on: .home).scaledSize
|
||||
|| size == AvatarSize.room(on: .timeline).scaledSize {
|
||||
if source?.url == .picturesDirectory {
|
||||
return Asset.Images.appLogo.image
|
||||
}
|
||||
}
|
||||
|
||||
return UIImage(systemName: "photo")
|
||||
}
|
||||
|
||||
|
||||
@@ -161,7 +161,7 @@ extension RoomTimelineViewProvider: View {
|
||||
}
|
||||
}
|
||||
|
||||
private var timelineGroupStyle: TimelineGroupStyle {
|
||||
var timelineGroupStyle: TimelineGroupStyle {
|
||||
switch self {
|
||||
case .text(_, let groupStyle),
|
||||
.separator(_, let groupStyle),
|
||||
|
||||
@@ -62,7 +62,7 @@ extension XCUIApplication {
|
||||
}
|
||||
|
||||
private var testName: String {
|
||||
languageCode + "-" + regionCode + "-" + deviceName
|
||||
localeCode + "-" + deviceName
|
||||
}
|
||||
|
||||
private var deviceName: String {
|
||||
@@ -77,6 +77,13 @@ extension XCUIApplication {
|
||||
return name
|
||||
}
|
||||
|
||||
private var localeCode: String {
|
||||
if UserDefaults.standard.bool(forKey: "NSDoubleLocalizedStrings") {
|
||||
return "pseudo"
|
||||
}
|
||||
return languageCode + "-" + regionCode
|
||||
}
|
||||
|
||||
private var languageCode: String {
|
||||
Locale.current.language.languageCode?.identifier ?? ""
|
||||
}
|
||||
@@ -84,10 +91,6 @@ extension XCUIApplication {
|
||||
private var regionCode: String {
|
||||
Locale.current.language.region?.identifier ?? ""
|
||||
}
|
||||
|
||||
private var osVersion: String {
|
||||
UIDevice.current.systemVersion.replacingOccurrences(of: ".", with: "-")
|
||||
}
|
||||
}
|
||||
|
||||
private extension UIImage {
|
||||
|
||||
@@ -28,12 +28,15 @@ class BugReportUITests: XCTestCase {
|
||||
func testToggleSendingLogs() {
|
||||
let app = Application.launch(.bugReport)
|
||||
|
||||
app.switches[A11yIdentifiers.bugReportScreen.sendLogs].tap()
|
||||
|
||||
// Don't know why, but there's an issue on CI where the toggle is tapped but doesn't respond. Waiting for
|
||||
// it fixes this (even it it already exists). Reproducible by running the test after quitting the simulator.
|
||||
let sendingLogsToggle = app.switches[A11yIdentifiers.bugReportScreen.sendLogs]
|
||||
XCTAssert(sendingLogsToggle.exists)
|
||||
XCTAssertFalse(sendingLogsToggle.isOn)
|
||||
XCTAssertTrue(sendingLogsToggle.waitForExistence(timeout: 1))
|
||||
XCTAssertTrue(sendingLogsToggle.isOn)
|
||||
|
||||
sendingLogsToggle.tap()
|
||||
|
||||
XCTAssertFalse(sendingLogsToggle.isOn)
|
||||
app.assertScreenshot(.bugReport, step: 1)
|
||||
}
|
||||
|
||||
|
||||
@@ -52,7 +52,6 @@ class ServerSelectionUITests: XCTestCase {
|
||||
|
||||
// Then an error should be shown and the confirmation button disabled.
|
||||
app.assertScreenshot(.serverSelection, step: 2)
|
||||
XCTAssertTrue(app.staticTexts[L10n.screenChangeServerErrorInvalidHomeserver].exists)
|
||||
XCTAssertFalse(app.buttons[A11yIdentifiers.changeServerScreen.continue].isEnabled, "The confirm button should be disabled when there is an error.")
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94aaa3eafaa774d0fe02f1d45f54df9dec1e3e45ce5e05f0b8ad13af2663bf5f
|
||||
size 147757
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:84ae2c884d2fba85aea5d2d107d8096ccdcad93ce452d39e8fc9509cb5d5ce28
|
||||
size 88786
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c67bdab391e95ef065f074a300bac9c6bb6279e7cddbc58c9300cb067fa9e716
|
||||
size 115162
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05566c0ba47079128b45e644969b5499a412a8eb2e5da9abc6ba1de742ac816c
|
||||
size 115270
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:71ae0023d08a5a02a47c725d26a103f3eaace978f0675c095fa714bb52d32478
|
||||
size 182410
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca298db59b6d239a4995357addc9b15b321bf29cb3dc429aef57dcff61b160a2
|
||||
size 185714
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c265f3e09023a30882395c67b4512056b2d7a2d8b5562238e428e2380abf346
|
||||
size 120759
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:12d5ef8e967ad8f3f1a8f3b9b1579cfb19eaa50acd4c0ac9735f523760dd75c4
|
||||
size 86218
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b4bc4e25efcb9e07898fdb6486727902aa2d7f2bb7df8e163a6082a6136a1817
|
||||
size 89873
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2bb6922c20a35da7aef9e756c5c3951c9e01a3dfa407f58ed69959b511f9537
|
||||
size 75911
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c3b9ffcf57deb42b4cb78fc2ea339afb88b66c2fbc543b97ba7d2a548b3f98c
|
||||
size 83159
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2b31aef830a765e8fc0eee3bc853b21c7c17afc760630f8325db42478d4161ca
|
||||
size 89503
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5cc87b3038204a03ceffb0367150ae715672ece31c28aded1867e29154d23348
|
||||
size 853026
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec76c4a7817c01035c828a72134bc0838f69bb1aa506bb36b5f2446b0e30cc0e
|
||||
size 99569
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:480187021f8337ffbc59d03b149d9aa27141b695d116daa311de27bca9b517c9
|
||||
size 95009
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e035ab94494f59f9ecf1416f861b8d9bbee6477daad8a5cfdb107032cd14d322
|
||||
size 120849
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4687a8dd1909ff3b8e309dbaf8f6adf07bb18c39cd1d0b890d0220ca3da9e330
|
||||
size 222368
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1fda25285905d9abe2ec7f39b8a5ec071e3f22a85afad60a032307bbf5402477
|
||||
size 276634
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a4887066f6c7e9156acebf3d50ead4d34df3ca37128d232649b6bd502279cb8f
|
||||
size 285790
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6dfd61d9b53508d1813dabc59b4324ae8f6eac23ac993e6f42d5b87ab6d418c6
|
||||
size 284847
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6d123e4e5fc6ed3681175847ed23c7232fbd833d546eed046e07a3243a1cf8c4
|
||||
size 298132
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e20417225259eb8fbd67a051a625dcdd5e4d6a9ab25de30056f487a30a214470
|
||||
size 263315
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fa29d51f482c87a93da7fd8c059215fcc3da9ef6c980a301e9507ed1f7c3c7a5
|
||||
size 79947
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5afc94645db66763519ca354f302e3e3ca5e380c9a7a9b6d634b4fc9ed98c31c
|
||||
size 73131
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:20e6382f3e6befa47d6a343b63fd5e5094e66e216b50853d35555b1e1b9e86ba
|
||||
size 81051
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4f1e050e223e5f3b0e0649574541f0339698cbf8ecdfb2780deecea2e016379
|
||||
size 77761
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:415ddc64b9806f5ec6c7d40efeecdb63632e61f442b9d37e3d320b1a57535143
|
||||
size 222246
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90e75572da49d74ad050876780fdbc30ab9e570c17beccf9557cf1ea89a7acc1
|
||||
size 93664
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:823edb684ce585febf4e2b362f7a7e03d8e04185691b3527c2eff06490d61607
|
||||
size 114797
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f34f1152c0e1e3b8c428eb39c6cdc92ec906d3311eb96f51dcd80e858246b1af
|
||||
size 282423
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:08ccbb291e92a77b0494489f32fd71a1a7c3f93c5b3eaa0d3adbd0ee46ad463f
|
||||
size 98987
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0210f0729a0c724349146a0cbbc654016dbbb80789b2193bcec28e4b689637a2
|
||||
size 171245
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc36539eae4418ffc6be0a1c79700a8a04a0a2b526ab287abd84ac8d579849ea
|
||||
size 90984
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f10f8d4d47e9774ff5a536499b28a965f1691d176e3e9dc908657a7a6dae86b5
|
||||
size 95449
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9816c9839b1c53e16a06fe9a17b362e82a4d7c6677b40aa61f4354626363ebae
|
||||
size 80103
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f17d7a325c0e21254b69e75ea34d92e0db13bd1cb3fb398843f68f6a3f13fd35
|
||||
size 81693
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f36618d1a5c044771b470c6e9dc69623ff6be43c8d52378540e5707a9aa96839
|
||||
size 82363
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e4fc350e39d457f8a308af521af3427d72c383d274441b154e10b0a5259fc296
|
||||
size 61324
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:10b6d9c5ded6d4ccf5254253f8b40fd4a85874c0f97d6001db8f93a1b67d6202
|
||||
size 145036
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9ac5fe406934d77c87808a7f7168494a3276086b4add800cbd88e588ecbe57b0
|
||||
size 142115
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f2e944e139033083033e477a32ffe3af852457572d96f9afd126225f4d548d2b
|
||||
size 85636
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d851c65117003c330db9ea6a2a711525da3d8b6639dc5d0c1d3d1ddf02cbdd3a
|
||||
size 82280
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49de14582fb7f808a05b3473a031484183441fca5f969a996395bd4c34b5fc46
|
||||
size 102630
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d69dbcfbcf77ff231d83db9572ba1f5be9264901ea15bc881e01d5235f3cac8
|
||||
size 84602
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e209f4603a1ee7ad24278f768cdcdcaa99e732f9cfafb1314a981753ea857c28
|
||||
size 78912
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cdb0b509432a547066e7f1c50b416b4b1c37ae484598c918da07f7bcf6bd3be4
|
||||
size 134530
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2be45f5492a94a96ff2da692738ec68d258805a297b6dec68b86fb14199a3726
|
||||
size 107619
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c797f4746179d6c2e5a58b83f88c8f3bd58c27da8268ceabdbd1814e6bd19fc2
|
||||
size 154413
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c125b8970f7e61f00448e97abb29a147cb5aba0a7b351778215f1400a1c169db
|
||||
size 312985
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7d84ed064f75bb3861fb9c2d2598d0983b13ebb872dad6202aeafd6b013b7e1d
|
||||
size 194651
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2f9ecffc022f179f5b3c85ebb0c97237aeb441901304930ce134c4e6197863d4
|
||||
size 99001
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e3634a16e87fd51d5cb8b55e7396691e4cabd9fa047f7fa19a02acbbdb9a7c2
|
||||
size 147542
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:667f974615cc883187b05beba38f805ad578873368826db2c3525ceaadcfa18a
|
||||
size 145083
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:521dc12c3d27c2d43b9db79929fffb38fb2ad227d276a9136ef69a24f2234fb8
|
||||
size 205573
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f5ec6a8697f774afda7b61e79edc652344c5a951a0b92ecc211efbc2bcd17335
|
||||
size 208770
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f0a8445cba54afb2c2a00aa78bf33a4eaa94c8a89e61b3762b537030719741d8
|
||||
size 154495
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6bc0d14a5e2ad157c6eec0f606f8cebba7baf03f7ff2e9955663715981cc185b
|
||||
size 89929
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa034d1cbdefdb5ecaaf90fb990d5c5c6d6575105f7ddc3ed5ccda1677f641c0
|
||||
size 100182
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0715d96372684171ef6fc61f17c76bf47acc65ea73bcb9f7b03d7b02406e8cd9
|
||||
size 79141
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e7ff29912bddf0a7cf58651df00ecde92b9841b3e182b38136adcaa228a886c8
|
||||
size 89539
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01cb6b0bbce4a995ccb5e81ccc3a54f9d37448002e443bd819363bf72c2bee9e
|
||||
size 99707
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a7dcbb090ddb93fd31e8960d06cadc501e44a5eb095637408f107a27bda2520
|
||||
size 1374145
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5f4639f2a8e394ac19f489514ca8028c8b88933f794ecf4133c11bd5923a4ce7
|
||||
size 125839
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8eafd53e5f50f849a4a7da0bf436d0a532e725fe9adff3fc3fca788f5dac5edb
|
||||
size 115884
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:abfabc7f8c5f26e407e1f6263678bff477afb1e44dff8f5d612e76cd367e41da
|
||||
size 152690
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:144c168d55608c3d15ea3f952374fee7f0750bffddaa57847f23166e2a395b68
|
||||
size 345783
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90f909d82506c1a256b02f423c8b29d2fba10706079039eb945b75da3d9196ff
|
||||
size 285989
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d6cec36fb1de4ad1ff4ef403e95aabd5aba6a3cc7ef1b3ecdacc01f0f77b3ae6
|
||||
size 282236
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09768833f6ae1cd4bccffd2e7afb18338b7095cf8cac37df45ea2d620c2e523f
|
||||
size 310018
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dce0fd6478bef902b056ec1b6033095eb18c862decb480d247ec163ca97389bc
|
||||
size 292473
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f3fdf038b89a5b3792b557b84b2d733f36bd68561d838016e26abfab937fd2f2
|
||||
size 238618
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9718639645f9d3d1c198a8c3322e7c52c23722d1020a8ee9d1009fc6312d965e
|
||||
size 92445
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65b9fb1f561d907511a365a893840e638fdab7905a16a3a67e8136ea86a7ae6d
|
||||
size 77514
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f698182d7eb30b43799b99e49f59422c601387ac4ddc675feecb939ff32e099d
|
||||
size 94597
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:68a2947127b5feb5df6b379a82adb9d5db31b26f0486edc4f9827f9c512ffdc2
|
||||
size 84991
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8fe30bb34280bda099f583a8d3e9db2bdf6c6e975df2ec4decf679e337a95a52
|
||||
size 345536
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00429d745e49332b1be91658b230d15516a0eb66a83e9cf9512703ef476e3720
|
||||
size 146069
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b04854d0bc3be38fa772c097bb7f02e841e7e32b33eb61b89692a24bd82d6ffc
|
||||
size 179369
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:eb0231fdd204fd8754b3e9ba59eb522b599c03c9e04e717650be5ab1c3440aca
|
||||
size 298553
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e18912f41e73595bfc56e831b3baf67441a6b31fc2d2b361e3569afa44bc3f49
|
||||
size 114487
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1f4342e3845bf0ab2664f19bcd9bbf98c9f954109f829ce7f6ee81aa2c1dae89
|
||||
size 175337
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e7d7a678b69e9d3cde1f19b6ec8b609a936ea321e53cbb4a003ee7f6c0bb600c
|
||||
size 102218
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1e5513207b68b17378df23a229cbb1cbeb3e1bdf7adea31b74827bf4aea42ec
|
||||
size 109589
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4672d6427dcbed403779c3b4baa494f2c5d2830ad95bfa2396e3d959a04d9e7c
|
||||
size 89995
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7844dcd302f0c67a0ed8e9d7c9c50c5577d0c71b88598fa42998bae19a5ca867
|
||||
size 90253
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a20998014db07e003cde17e499960b73543367935802b6b5fc51c55e164092dd
|
||||
size 92635
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:53bda96a8dca3dbb5e3c48c522b24079ba59d93472435c05ba3b36034ce3f75e
|
||||
size 59492
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b700ca16ad78b58d35a23bfc5889f71cb98e49a459b1f3f089a97ee1b1dee983
|
||||
size 206042
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dce3111b9474295191ed34648fcdefc0709f6c583357a34b0f2ad742ca1d3416
|
||||
size 202738
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cf9da344d757c985aa111516e5f7b6b3819fdd3c8d6e4ad70f2cab5bcf908642
|
||||
size 93697
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b52bbe15a48467633513593065e68fcee225e33f7630b105a406d331d56fc3b5
|
||||
size 93451
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user