Avatars and Usernames color change (#1610)
* avatars and username color change * force a replacement for the notification placeholders * updated also the plain style * Update project.yml Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com> * changelog * UI tests updated --------- Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com>
This commit is contained in:
@@ -12,7 +12,7 @@ let package = Package(
|
||||
.library(name: "DesignKit", targets: ["DesignKit"])
|
||||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/vector-im/compound-ios", revision: "50bb7cf313bd1ad17201fc7e4c1184737a0f44c2"),
|
||||
.package(url: "https://github.com/vector-im/compound-ios", revision: "71b0c887880de639c854600a9ada6b5bcc93c719"),
|
||||
.package(url: "https://github.com/vector-im/element-design-tokens", exact: "0.0.3"),
|
||||
.package(url: "https://github.com/siteline/SwiftUI-Introspect", from: "0.9.0")
|
||||
],
|
||||
|
||||
@@ -30,14 +30,7 @@ public struct ElementColors {
|
||||
|
||||
@available(swift, deprecated: 5.0, message: "Use textActionAccent/iconAccentTertiary from Compound.")
|
||||
public var brand: Color { colors.accent }
|
||||
|
||||
public var contentAndAvatars: [Color] { colors.contentAndAvatars }
|
||||
|
||||
public func avatarBackground(for contentId: String) -> Color {
|
||||
let colorIndex = Int(contentId.hashCode % Int32(contentAndAvatars.count))
|
||||
return contentAndAvatars[colorIndex % contentAndAvatars.count]
|
||||
}
|
||||
|
||||
|
||||
// MARK: - Temp
|
||||
|
||||
/// The background colour of a row in a Form or grouped List.
|
||||
@@ -45,17 +38,3 @@ public struct ElementColors {
|
||||
/// This colour will be removed once Compound form styles are used everywhere.
|
||||
public var formRowBackground = Color.compound.bgCanvasDefaultLevel1
|
||||
}
|
||||
|
||||
private extension String {
|
||||
/// Calculates a numeric hash same as Element Web
|
||||
/// See original function here https://github.com/matrix-org/matrix-react-sdk/blob/321dd49db4fbe360fc2ff109ac117305c955b061/src/utils/FormattingUtils.js#L47
|
||||
var hashCode: Int32 {
|
||||
var hash: Int32 = 0
|
||||
|
||||
for character in self {
|
||||
let shiftedHash = hash << 5
|
||||
hash = shiftedHash.subtractingReportingOverflow(hash).partialValue + Int32(character.unicodeScalars[character.unicodeScalars.startIndex].value)
|
||||
}
|
||||
return abs(hash)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5607,7 +5607,7 @@
|
||||
repositoryURL = "https://github.com/vector-im/compound-ios";
|
||||
requirement = {
|
||||
kind = revision;
|
||||
revision = 50bb7cf313bd1ad17201fc7e4c1184737a0f44c2;
|
||||
revision = 71b0c887880de639c854600a9ada6b5bcc93c719;
|
||||
};
|
||||
};
|
||||
9A472EE0218FE7DCF5283429 /* XCRemoteSwiftPackageReference "SwiftUI-Introspect" */ = {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/vector-im/compound-ios",
|
||||
"state" : {
|
||||
"revision" : "50bb7cf313bd1ad17201fc7e4c1184737a0f44c2"
|
||||
"revision" : "71b0c887880de639c854600a9ada6b5bcc93c719"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
||||
@@ -18,6 +18,13 @@ import SceneKit
|
||||
import SwiftUI
|
||||
|
||||
class EffectsScene: SCNScene {
|
||||
static let colors: [Color] = [
|
||||
.blue,
|
||||
.red,
|
||||
.yellow,
|
||||
.green
|
||||
]
|
||||
|
||||
private enum Constants {
|
||||
static let confettiSceneName = "ConfettiScene.scn"
|
||||
static let particlesNodeName = "particles"
|
||||
@@ -26,7 +33,7 @@ class EffectsScene: SCNScene {
|
||||
static func confetti() -> EffectsScene? {
|
||||
guard let scene = EffectsScene(named: Constants.confettiSceneName) else { return nil }
|
||||
|
||||
let colors: [[Float]] = Color.element.contentAndAvatars.compactMap(\.floatComponents)
|
||||
let colors: [[Float]] = colors.compactMap(\.floatComponents)
|
||||
|
||||
if let particles = scene.rootNode.childNode(withName: Constants.particlesNodeName, recursively: false)?.particleSystems?.first {
|
||||
// The particles need a non-zero color variation for the handler to affect the color
|
||||
|
||||
@@ -184,7 +184,8 @@ extension UNMutableNotificationContent {
|
||||
}
|
||||
|
||||
private func getPlaceholderAvatarImageData(name: String, id: String) async -> Data? {
|
||||
let fileName = "notification_placeholder_\(name)_\(id).png"
|
||||
// The version value is used in case the design of the placeholder is updated to force a replacement
|
||||
let fileName = "notification_placeholderV2_\(name)_\(id).png"
|
||||
if let data = try? Data(contentsOf: URL.temporaryDirectory.appendingPathComponent(fileName)) {
|
||||
MXLog.info("Found existing notification icon placeholder")
|
||||
return data
|
||||
|
||||
@@ -33,9 +33,8 @@ struct PlaceholderAvatarImage: View {
|
||||
// This text's frame doesn't look right when redacted
|
||||
if redactionReasons != .placeholder {
|
||||
Text(textForImage)
|
||||
.padding(geometry.size.width <= 30 ? 0 : 4)
|
||||
.foregroundColor(.white)
|
||||
.font(.system(size: 200).weight(.semibold))
|
||||
.foregroundColor(avatarColor?.foreground ?? .white)
|
||||
.font(.system(size: geometry.size.width * 0.5625, weight: .semibold))
|
||||
.minimumScaleFactor(0.001)
|
||||
.frame(alignment: .center)
|
||||
}
|
||||
@@ -55,11 +54,15 @@ struct PlaceholderAvatarImage: View {
|
||||
return Color(.systemGray4) // matches the default text redaction
|
||||
}
|
||||
|
||||
return avatarColor?.background ?? .compound.iconPrimary
|
||||
}
|
||||
|
||||
private var avatarColor: AvatarColor? {
|
||||
guard let contentID else {
|
||||
return .compound.iconPrimary
|
||||
return nil
|
||||
}
|
||||
|
||||
return .element.avatarBackground(for: contentID)
|
||||
|
||||
return Color.compound.avatarColor(for: contentID)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ struct TimelineItemBubbledStylerView<Content: View>: View {
|
||||
.accessibilityHidden(true)
|
||||
Text(timelineItem.sender.displayName ?? timelineItem.sender.id)
|
||||
.font(.compound.bodySMSemibold)
|
||||
.foregroundColor(.compound.textPrimary)
|
||||
.foregroundColor(.compound.avatarColor(for: timelineItem.sender.id).foreground)
|
||||
.lineLimit(1)
|
||||
.padding(.vertical, senderNameVerticalPadding)
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ struct TimelineItemPlainStylerView<Content: View>: View {
|
||||
TimelineSenderAvatarView(timelineItem: timelineItem)
|
||||
Text(timelineItem.sender.displayName ?? timelineItem.sender.id)
|
||||
.font(.subheadline)
|
||||
.foregroundColor(.compound.textPrimary)
|
||||
.foregroundColor(.compound.avatarColor(for: timelineItem.sender.id).foreground)
|
||||
.fontWeight(.semibold)
|
||||
.lineLimit(1)
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6cda15aea18a2778a6af274e253f611c97b5d61122d8144bae74e4336f32c040
|
||||
size 110075
|
||||
oid sha256:74a4010c19646147435adececd6b9658e5c311d65567680974531260d2af54a1
|
||||
size 110073
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f12629d5c5686e82cbe6ab3afc50a8c8e2ec4c5570975cda2a218e9670142f9
|
||||
size 78574
|
||||
oid sha256:8dd1a13e3e00a124d6027cf98805691ebb83e9051ddba9a0f81d72e0c7f314d4
|
||||
size 78572
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:467a21fa9a0d2a535887851f4ba65b91f106f38a1663eec31dd5b33ad4316fef
|
||||
oid sha256:49bc0269e6ee23dd860ebe5aa28115500cfa09120db606c072be0f3831804294
|
||||
size 89795
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1adf7fe7e4d93db487a70bb74e03a1c08b9e4f7c059688aa438501f0cf4440bc
|
||||
size 134273
|
||||
oid sha256:165ffd65659a9656de2c121ddc796672bb7f8ecd11ba553801005668fb10deb1
|
||||
size 133345
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:993e53c7f8152af6e9e35359d0d3bd8745f7427ca5f70039b3ff133524854dbe
|
||||
size 136937
|
||||
oid sha256:120d645d2f85d639baea6e60e8e007889552a06ef9f387c12cfea1f70e1d5562
|
||||
size 135935
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c547c4d6470fc9c02accf3443f3a8c4815bc7b21d80fd76fcbd8664d99bba7e
|
||||
size 115725
|
||||
oid sha256:0c7c2f77452a6014acae01858121ccd20618da8a5ab7b38d9551c5941cd62b41
|
||||
size 115726
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:867e7d0fc7fe394ee9cf15ec544cf62524f0ea82a274ff8401592ed9e9d4797d
|
||||
size 86767
|
||||
oid sha256:265f840451a2f86d2014d54aa84dca092f8ea017c192c1a3cd56bba3478e3e33
|
||||
size 87559
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c0342913c7cc5718f9cf005440823d8dbb37ffa6db5b9ed5f21131d59524948
|
||||
size 108286
|
||||
oid sha256:214f8e9caf0d73019f8d1daeabe6f15732d748addca8039c8a9ef2c0ae528482
|
||||
size 108259
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1b0f5fd44056635eb1c009d0ed3cd95c0c5c00132278780e286c4bbde53dc8b
|
||||
size 98580
|
||||
oid sha256:3b6525d4723fab1d1fb4427a96af512549daaed89f294a0936cdf5b60576add3
|
||||
size 98375
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:35c228fbc1eb5555fd14c4c130f5424a18d852f6a06a3750b23561e7014a423b
|
||||
size 109925
|
||||
oid sha256:2fcd3a8eaca6db796bbe59936cdbb9904d3ff6380cab78d9f3a8e4e4b4e9b19a
|
||||
size 109895
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4e9bc5290ad51b9f39294d66e0c1f657bc2ec77080de20b691ea2fbbd44af43e
|
||||
size 98911
|
||||
oid sha256:0d780b6b967316b699c34b80caf2d1cebc3b4c72e2b048389cb96fad2313398c
|
||||
size 98710
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5e4394574235af7137862a98878b1b836b4957f2a361b0199da03605f0f5351c
|
||||
size 195006
|
||||
oid sha256:e49bbbe61d205d61f97c5f75934f21675c1c10e7311de5859ecd67411a315b7d
|
||||
size 194443
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6fe9b4659c67141496a128c929607b159c0286ecdb947ac0ccab9213b58a610
|
||||
size 103614
|
||||
oid sha256:5a5a89bd5249b626c46d3eee34c6e75a1cb7a86655877520b6af86321e6f24c6
|
||||
size 102984
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:803b9951218dda8991669367c27be7947bb4c0537cb34fa34de017fe06790d35
|
||||
size 103994
|
||||
oid sha256:762d72b3f0b38783d177f313e95a068fc4efce55c85fc4a05af80ea82f591a50
|
||||
size 103371
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4b9fc8986e2a36e20975c4e4cb7eea2ceddb9f331092d5a84bdf608b36aeecb0
|
||||
size 92603
|
||||
oid sha256:274bb0078f8a151058043897f4e7bcb77e829707e8c79881e6055b9bbed6a9c1
|
||||
size 92437
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba1231592153758bb1bb6f2bf14cf6aa315817d9feda1596146f2a7702938bfb
|
||||
size 98119
|
||||
oid sha256:5c0dd4d17f991a4b85159f9443a29c3174672a2c4a283cb6f99c74507d80267c
|
||||
size 97920
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:358a2617686f2f9d84e1a33ebd430da88ace4136aac703fde1d6051b8e3ba07b
|
||||
size 283637
|
||||
oid sha256:71d3350be93957b08de214c83788e447dc90ae640c1c48444599fa2d0ce7784d
|
||||
size 282978
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e496eafa0ac95918c2e4c3f99463a586f17fc4dcb8524c2d389063b2d64c1b2
|
||||
size 296789
|
||||
oid sha256:c4e1235a6fc359db5c947dae4078fa360caf79833b55a14bed9ae1192a5be8eb
|
||||
size 295564
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ee807fe43ff2848c8200621db7e0a7283cf18b468ffbe1be5baa278a42dbd2fa
|
||||
size 300653
|
||||
oid sha256:2bb16df5c41c7be8bfdf844845d3e4ff0d8bc40bf355eea0a47567b8b617ec33
|
||||
size 301740
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a624a1e4d4806435325c450726a1d799c3c873ebc2c9afbfe48f0b32484cb810
|
||||
size 300024
|
||||
oid sha256:4e7dc1be431fe51694b1b963efa3d1c20ed2bb258cbd6573f917cffe6dc19cc8
|
||||
size 298808
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4ea75e47b1a241150f5bc24049c79bcc1e5cd5714aa5f1d088986795477c6261
|
||||
size 75966
|
||||
oid sha256:85785ef5695faad84a691a9cd56f3f44e306429ecf7405f0ad250833ac0c239f
|
||||
size 75440
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:462ad7364eea5723177136ea42ac9d6e124b4fb406f94101086ebc8790e11ff6
|
||||
size 76852
|
||||
oid sha256:76da7318a4155c5618ee602900b01431a4027cf64baf4971c4e889fabac81a05
|
||||
size 76634
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be8d5d4e028d57d27335d0e19f069f80aeee167fc0e1ca196a6f3c265672ed1b
|
||||
size 75944
|
||||
oid sha256:2468008fdb0e9683ca484ad955db1aa40c68aa4662b900cf0a335fd6a4c8195c
|
||||
size 75088
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6c5b933023e985ffb246c4bfadbc058cd7e99185555463139f43e25fc17aea8
|
||||
size 66211
|
||||
oid sha256:2a91052dfd8468914be68593b347f27394a669fd1d5ff3b0ae2680d2684322a0
|
||||
size 65669
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e27c2244341a7083ce5dd4b57350ba23ee9cad94a44d67e773bf18de5c111917
|
||||
size 86781
|
||||
oid sha256:0c9251a4c74b48fcc297552ce9a81813c5c07804a03bc37ae6bb358dd7fe3605
|
||||
size 84654
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:adde130d9f02f69b774f4ef1e3e191f170b093c6f39ddc0b383997f7f8caf9b5
|
||||
size 78201
|
||||
oid sha256:96f0498150e63dd13409971f0917952eb2264ea6ee6f83a16e69f9c54ad67f92
|
||||
size 77336
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c98693ba962dac15b0d1e0449494341b74b833be5e74d8519c743051de47f032
|
||||
size 283387
|
||||
oid sha256:a597d367df121ecfb256a0302860bbce4299712736c7332d33ceb996f1728f60
|
||||
size 282663
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a3bb2f710d90e0e7d5439f781381328835db44af6b517ecfa24f83b973ba9e7
|
||||
size 122356
|
||||
oid sha256:1ddc932816c778d13560431de8b892ed88e03257f21a2459f74f689d8dab7177
|
||||
size 122085
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98b18e05bb45879e90ae45f7e790f57a6dad45038b749f2fe4ea8ee688bf7524
|
||||
size 295683
|
||||
oid sha256:2ad1ff3aaefa116340f1a1b41e266216c6fc72709e0756e1266e4b3d992736bd
|
||||
size 294718
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be83a4f07c4a759d40bc927f0a57958eaf49e50d2ab69ca6052d5db5f6da7f2a
|
||||
size 123234
|
||||
oid sha256:5f8d312435a9c1979e9869a458f44c3c00a0d7b7f8c8d09cb178e5ac4c962048
|
||||
size 121468
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f916e649ef6b214a3d1cfad4359aae09a2a5e443d2fd7941b24774bcb41399e
|
||||
size 165611
|
||||
oid sha256:71686cab957bbfe4a68318b43a85cd33ab09927dc947e4636767164b4c64ac07
|
||||
size 165464
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ba9eb42a22c444489f2e45c47bc4c754a1b62a60100e9edb2222fc66d2950c8e
|
||||
size 162808
|
||||
oid sha256:2a7591243a894a142ae01f85799f5c79d3c40376df766f4770d9945e7a443eba
|
||||
size 162656
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d758af2b7533e2afe8a4aadb11b987862c265be52f806bf9696a0837bf29581a
|
||||
size 87560
|
||||
oid sha256:1eac9b4cfe334feb1f273b57b92b2510cef849389b693368ba834f8471d5e582
|
||||
size 87581
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1df079ff0e22150efde892fafbe84ce8efa52d7c87f040e97ed39253e1e809f0
|
||||
size 93846
|
||||
oid sha256:ca025e4247ab87ef0b7cbe8d78998ba00cfdf827c8deb0d8c395d4f2b52be4ec
|
||||
size 93867
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c787251ce572296392fe605054990eec15001b75ee4e7891c2aff6486016eaaf
|
||||
size 97468
|
||||
oid sha256:93a16630875782087a817b51fb644b67cfc828e977a2bb60b6c64c655ddd797c
|
||||
size 97471
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:631283c81955b66f90f5a15468ee80b19ef1c6062d68b6bff3239d5a0ead76f1
|
||||
size 169491
|
||||
oid sha256:7e5b45d9223294fa1d70069ccf755f15be970e15382ba2c07b8051a6d40b0566
|
||||
size 169493
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e0326f5e131e5e8863bf16b2390616431f4d8ca81f0761784612259dfe539910
|
||||
size 99266
|
||||
oid sha256:a03b1dd25527e0377bc517ac5e3be4b969d2d2573a326c3bb52a80213502bcb0
|
||||
size 99271
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:35f8d045c4fdaa2deada0359e9a048e5fb71930bbc67025a4a888391f2dd077f
|
||||
size 79933
|
||||
oid sha256:c6be4b01d5c1265f9c9174eb95f6ead8faeaa58c4c56c797960037973f6768d0
|
||||
size 79935
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f5e079f2c731f90a837b3b1cc556d572c5eb02df9e0b85fcce9d62184edb9605
|
||||
size 81700
|
||||
oid sha256:973efef63d9c954f9625e13a13b4bc51c43b32b323749a14c6d86041c46bf819
|
||||
size 81706
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0eda3bf534334f2fd5867bb7b5f14f80d069c6ab6afc649b9fde1fa2b3b9aee2
|
||||
oid sha256:f976263f8c1e3f5b39b2ede158ef0a3c29859f5d1cf831c83d95afe26da2aa00
|
||||
size 78881
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:683d277021194d8d523ad52f098ab2f6c58f29a054f0640826ae28fe152fe84f
|
||||
size 60258
|
||||
oid sha256:8f4ba8f8fc97a1b87b4468441c7d3b352fee81b4813ddb877b7b4463d0176249
|
||||
size 60260
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:533f6d14b80dde6e788a9248130c3cff4d01df2c8a463f20c9b14ed384123839
|
||||
size 143246
|
||||
oid sha256:2c98bd3532015e24b865d29e90885f3e9d1109b0a3b7f0d315920046d54c6a65
|
||||
size 143252
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:89484af9412499786e1a1f81d3b1c9eea197dcac28d963e9f2201372647b6026
|
||||
size 140364
|
||||
oid sha256:29665eede8b90eaa93b83dddebfcdb4cddb3f1b9a3df1fa2de007338d7eed837
|
||||
size 140366
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:38176bf8047aeab5da0ebc11b27bab6d9e00d2037772a49281363370c13a3017
|
||||
size 78458
|
||||
oid sha256:e3624c44a42c2f9c0dcdf8e77d0d09cad28d9a0a7dc203b177cb345320daa52a
|
||||
size 78461
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1614a41f9991619783accd5abbe8f95fb8333a789137daf58ed0c881c6f9e270
|
||||
size 79501
|
||||
oid sha256:b9e6ebec75c529456cae53ab7edfed76adc8c6557706f2783b5281acd488fc13
|
||||
size 79506
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc23b1fe8559fd145298edd227effe614754d793c5109f2a9e7e19e0c1747a6e
|
||||
size 120126
|
||||
oid sha256:def07d1e06e120aee1988eae5212f018be8437aa24044941c9b6b8db58d2324a
|
||||
size 119392
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ce3ec0860728f0ccb0643b1586e83b5f1cf10d63edaeb75a14d5acd73d874a4d
|
||||
oid sha256:63fa379626aaa9cf674224a967732ec41ecc2ad18ae3dd18064445ced5b4a558
|
||||
size 121681
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b89c1c5792f74c6109c047ceec114a687c6e08deb451c61d4ebd2fbb1fab3973
|
||||
size 63008
|
||||
oid sha256:2e9be2c9317ad07053ac071b62149f6b9ff616ed421f8eff6843d425c9b0931d
|
||||
size 76872
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:71ae1f2a8fc0c3892519d570937d1357c9d86cd879720925162d717d6395b1d4
|
||||
size 78444
|
||||
oid sha256:eee980ce6d0ff452c706823cf658932c389d3c92f5312772a24bdc3320b228ca
|
||||
size 89204
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:474cc3e9880e1210d02b3defdb83a0133a2bb378a6e75dc208ba5db162cad252
|
||||
size 108878
|
||||
oid sha256:4b39c405e7adb43ca43001873c229963751dad2031f3d3150be697a0040c02b2
|
||||
size 108858
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8028144ace72558a2191de668a45a2e33e67012c8108c04d25445b4139d81092
|
||||
size 66099
|
||||
oid sha256:9d2f67ada9d67de06cf64cbb3db0317f6d9130399e5391920816b537803faae8
|
||||
size 66073
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a8185ab74026132241c02fd35d3efe9b8f4111d0041b3ab3f8748c92e1e36bb
|
||||
size 145285
|
||||
oid sha256:688cb467fc96dfff19c39075cf9a87159c64d02ae5e556a9fe902f9332dcba7a
|
||||
size 144003
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fec5e9a805b65a713d320cdd86ec704f9466be0bec563f93050df2cfa05c3ac8
|
||||
size 332194
|
||||
oid sha256:b0b9778f6268538295037e6726f548ae9713af139d40077bcac5264d37724359
|
||||
size 330534
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7d0f4cf385da3bb4192f23ff3863666be0f3ac30b015929583cb0e2d62dfaba
|
||||
size 402274
|
||||
oid sha256:4c77d14599ea65b2580f5a0600645c5227249e5e203690670f943819afccf30f
|
||||
size 400253
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99710fb79e6a3ec46116249dfa10fa7f76e4d260f55ad918706bde3f78e44abb
|
||||
size 718895
|
||||
oid sha256:a99605f86c136a268bd184bcfc73507a2d54a841d01d7bd872d417ad25403344
|
||||
size 718898
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:de8176c7872d2bad953281bc35760c04f729a8f503ab833f515c29817a7cb43a
|
||||
size 130547
|
||||
oid sha256:39100391b735cd202d5fd4d05302ead2d89607f210cdf986fb184daae005add5
|
||||
size 129203
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cee7780c3b1110911c4de1f35b9ead6e36b10992c0a8c59b1fa5a87d43cdb5e2
|
||||
size 87879
|
||||
oid sha256:2f24b356237f2019ae8f4f37ffe6e17b3b3c2cccbd1c815a65bc53593a473a6c
|
||||
size 85859
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bae9f63b677a58ebf951c54f84947dd312e49cd8cce50f065842973d7e983dc1
|
||||
oid sha256:d685c1db62816bfc9b9e43f510981c13f0f582e6595685231679d5e0d1aea56e
|
||||
size 84899
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f425a4f8ff36e11084da41350cc5ccae122be06cac59d1e9b03adab4f1c50d15
|
||||
size 308853
|
||||
oid sha256:aaf56b99ecc5b57d4a22a4c6fbefe5eae6e731c16794ec528072e0c5695d26eb
|
||||
size 308849
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d07086d5750c676a1f935366289bf803ed50cd2d83e962227edb50e4be432cf7
|
||||
size 103803
|
||||
oid sha256:08badf82fe902d28e5b94cb64b1e018039febf8c440aa9bcdf20278c2c85d0f0
|
||||
size 103798
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4929f3ce29fb35995ad9202b6f8cfa0e8995ab422699335221762691143e2c6
|
||||
size 176059
|
||||
oid sha256:ab50fae5e79a4ed8ddb2a118871de9fec600c68e6fb80777c0c0856419f75bcd
|
||||
size 175004
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:16f971ad5128308c6117ede8a3665d6f64c1fa0face8e00147b7b94db958ef2a
|
||||
size 182632
|
||||
oid sha256:cdb8bbea4436bcf2239bc6a164d4b9a50a1feefc1f013b5c8967d925266e20c9
|
||||
size 180771
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8e91f61c3b8c5f6068e0ef60677cd7ce8c9d746bcb6af13cf1dd089b097f2b55
|
||||
size 154443
|
||||
oid sha256:31adc6a54ba0d2fc04e1c76e1162cfb023f6363f4ecd0fe517bd9b373abddbd1
|
||||
size 154441
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:22ae67dc691d9dc9e9b12b709d8e2ef7bb10b39e2d41dda7bf78fc845328fbf1
|
||||
size 90664
|
||||
oid sha256:dfa221b76563554d46bf5d5fae1e399019876e37a4e8bb37561ee476e121cc01
|
||||
size 91837
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31addcfeca8e1ba9238c356c2155d8e60ffe13f6efbba889ce2ca063f99de1e9
|
||||
size 132700
|
||||
oid sha256:95f5c45062a79206c3cbdc1d078c3a8e2cc2fe32e2f7d69da490d9a341b2f100
|
||||
size 130243
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cfabba1a216776ae05ff193c326dd69df5094308fd451d701dc7ba6fdc6f614f
|
||||
size 115471
|
||||
oid sha256:424c9cb13f232e17df297870c384b6fab7aabfbb779bb953a5eef77f136338b5
|
||||
size 115310
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4d2b5f1a370954d48739b92a035228f47d5aa4bbb69cec4e65b39f95005496b8
|
||||
size 133286
|
||||
oid sha256:57b10e265226b2926bf770dd8cedb6654cc5d87ff1ebbaa69afeb0538f4691b9
|
||||
size 135228
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3ccb12a73d8081f75cc2fef7dd10a8e4665f06b506a4688ee84e31cce47fb223
|
||||
size 113265
|
||||
oid sha256:c606925ebe12261907e9311107ca53075fdcd021746653f37a21f54c9ea29ec1
|
||||
size 115134
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2da22017b81a6800f23f8d8e072710158bea64e3855d629c2ebd16cf949fcdc8
|
||||
size 378366
|
||||
oid sha256:32e32139c0967253a8e19f74337bf68f929c0403ecd2652008fada2410e0013d
|
||||
size 377556
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:06696bfeb0f9a758915f3667e56a7079b1a0872e5dcbbc798777697ffbeaa154
|
||||
size 123300
|
||||
oid sha256:2da113870b6aa5b9ddfe5f98fa44fa38dd389b25ba11edece3c57cf75df60369
|
||||
size 122314
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d6bce9b4f4fb3402f87a71d5671404657a6e90b916c6048b092e06cbc70b348a
|
||||
size 123808
|
||||
oid sha256:b048dbff6029ad5a2d92b66b75fae74a63809e5542740d93d1b37488e4a0cc49
|
||||
size 122848
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:625dc1829aa70663f561a323e9747342286e20b4278609350c5cbfb1e3b6494b
|
||||
size 82757
|
||||
oid sha256:19063e25a802ad7787f91c77e3a5a5556986c029b93da2bdf99fb372b4080fd3
|
||||
size 84104
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cb11ec64209cf5ff6ba8c89883179a2b19b1bffc5f4123e475a8854e1a9a35d0
|
||||
size 445100
|
||||
oid sha256:a16d4694488603b5f3c7c2fbb9753376e546534dc9ce8496eed2710ff6cc52a5
|
||||
size 444000
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc55ae0adc15b48788ee406d0bb425441744f11a3dc3f8cd5e8f0eb9180aedac
|
||||
size 119435
|
||||
oid sha256:5da0278e6f66d058066538902ed5dd8ec79109642fe9b476f526e02700ed87c9
|
||||
size 117415
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c074fc387e5d9602cd8190fa5697af2dc0ab2660d2a930229b07ff3d15662a4
|
||||
size 114440
|
||||
oid sha256:8d6b82a9efbadb6843638223aa096ae2c4236a915e7c4f2fab4c88f28d235b43
|
||||
size 114023
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:df987fbf67919cae3eaa9c767796ed51d3e58459dd421cefff0084b393e37216
|
||||
size 122485
|
||||
oid sha256:5c2b8fd204bd3615c4d099768079a3fae28acc3f8c0668b4b3570f2d30f81226
|
||||
size 122067
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:81a321deafd52084901be8907e16b6c9ed1f985f986afcee4b1967544a25199e
|
||||
size 148265
|
||||
oid sha256:0b709af1401cfca7e76e8d5775db127d794beb7b5a0b816a78ebed8bdb2cca89
|
||||
size 148719
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c79c71e4a02af6471f9ff3f1ae738864b2d0488c8ea7a71122690444356ab0f
|
||||
size 370593
|
||||
oid sha256:479c95e33a7af1849312881d26d7f0a6a15662bb57f8039277f979202d1e99a6
|
||||
size 369643
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:03e4980124a8875cad8a734873fa95b12c9dbf87af6faa72e586aed4d4bfd4e1
|
||||
size 304341
|
||||
oid sha256:0fbed12543169931d9c8570620eaec649dd9ed351679515da0bfc93e162fd74a
|
||||
size 302768
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:af8d8d92782a38f0296841ba8b8100537bcfc69f7cfcf59b4d23eab96a5e84e6
|
||||
size 306418
|
||||
oid sha256:7088c0cd2836196515ee1fbb8a1eb464f418ac6fab865190c781f689fa6403b6
|
||||
size 288939
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5984c652e6cffc37e0fa86e2595b1a3150a8c3b48e09af267ab25097249bdd51
|
||||
size 307306
|
||||
oid sha256:f34bced7ed19a31dd2d7fc6930cdec68fc39f339d429228d5e694c423a0a06d9
|
||||
size 305973
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0a5f6d3ee648baa5e2abb2f14cac938a9d8f972c830d1426f2d4a3fb3f6cd965
|
||||
size 86273
|
||||
oid sha256:bc305177ef9f263afb29691784f5c40961ac21b2f7c591bca405d2d76387f842
|
||||
size 85474
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5c2bc3553ddb135bf03926e3740e2422e5f9b9bc639e470357a2b94dd34f4ef1
|
||||
size 73353
|
||||
oid sha256:2b3a36ba84e60fb79550b1f40c8425dff1051f13b54c4d40088e6ae010795372
|
||||
size 75373
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f712d611fae7a30fc18710e0b8128a7861a77c0bfff19548677c5d131e7a022
|
||||
size 85801
|
||||
oid sha256:f3655badd3effec1b631ceee3bcd3d6f945fc17af5537694b01a619dab13007b
|
||||
size 87714
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:98dc0e2843ca313a638060e2c37452b2cd53f96c6ce05e0d6fdebf218b87e447
|
||||
size 82436
|
||||
oid sha256:2e8cfdcd28ab441b98be4170dadc88d8d266b946f950969f9abf1a1451059347
|
||||
size 81010
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ac78d703543bc42eaf5359f74be140187c4e310ea4ee375044584cd928b314d
|
||||
size 66999
|
||||
oid sha256:a7ea0b877736281d7fc9cd1070cc1b579419c0a0b83447c1169e34300d922e80
|
||||
size 109987
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c664d105dd9b363226e77aa6105006b68ded1361f9a5bb2a94e2fae87f9c635
|
||||
size 66241
|
||||
oid sha256:3665a5674f0fccfd75002ab9917448b8928a8643af1e5bf33b8dee75d1868b46
|
||||
size 117023
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:34c4a5c036e8a3fb758913aa0984ea787a0524c0cc3048bdb1c84ab6f72da4b4
|
||||
size 86497
|
||||
oid sha256:81f3da0d16d68db3689ac1b60fcf8e7671ad842a01e38fbf4ba5b98c40235419
|
||||
size 86455
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1a50a5619f0d381dde1c6ab162769b23785c9984d44c42df956c6104ea08aa35
|
||||
size 370162
|
||||
oid sha256:cc8045f067fd71cb4e693c6460b4cc04bad776b7ab675896529d2896b73b86ce
|
||||
size 369347
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:47b1a4de38896780fafd5557688f9797374b30a970e75efff01280a1b06bb3ac
|
||||
size 191806
|
||||
oid sha256:1b4e1a2e6c0fa99a1dc1a549822a64e8eab0c83d8977efde95e3f30b8a7a956d
|
||||
size 191203
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:519228a018d16b450fd1fb4d1a369da4c9add59a84ea415a3c1f37c85c43dee3
|
||||
size 317437
|
||||
oid sha256:4cd28d159c39dd2d945f4970fb71dd95fbefb4a36f93149c32f2979ac8b8c776
|
||||
size 316421
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user