mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-08-03 20:03:48 +01:00
Fix UI issues in reg flow and update screenshot tests for all tablets.
This commit is contained in:
committed by
Michelle Tang
parent
0451ea188d
commit
d55d1a2acd
@@ -111,7 +111,7 @@ annotation class TabletLandscapeNightPreview
|
||||
annotation class TabletNightPreviews
|
||||
|
||||
@TabletDayPreviews
|
||||
@TabletLandscapeNightPreview
|
||||
@TabletNightPreviews
|
||||
annotation class TabletPreviews
|
||||
|
||||
@PhoneNightPreviews
|
||||
|
||||
+12
-1
@@ -32,9 +32,12 @@ import androidx.compose.ui.unit.dp
|
||||
import com.google.accompanist.permissions.ExperimentalPermissionsApi
|
||||
import com.google.accompanist.permissions.PermissionState
|
||||
import com.google.accompanist.permissions.isGranted
|
||||
import org.signal.core.ui.FormFactor
|
||||
import org.signal.core.ui.assumedFormFactor
|
||||
import org.signal.core.ui.compose.AllDevicePreviews
|
||||
import org.signal.core.ui.compose.Buttons
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.core.ui.rememberWindowBreakpoint
|
||||
import org.signal.registration.R
|
||||
import org.signal.registration.screens.OnePaneRegistrationScaffold
|
||||
import org.signal.registration.screens.RegistrationScaffold
|
||||
@@ -64,6 +67,7 @@ fun AllowNotificationsScreen(
|
||||
@Composable
|
||||
private fun OnePane(params: RegistrationScaffold.Params.OnePane, permissionState: PermissionState, onProceed: () -> Unit) {
|
||||
val scrollState = rememberScrollState()
|
||||
val windowBreakpoint = rememberWindowBreakpoint()
|
||||
|
||||
OnePaneRegistrationScaffold(
|
||||
params = params,
|
||||
@@ -75,7 +79,14 @@ private fun OnePane(params: RegistrationScaffold.Params.OnePane, permissionState
|
||||
.padding(paddingValues)
|
||||
) {
|
||||
FirstPaneContent()
|
||||
Spacer(modifier = Modifier.height(16.dp))
|
||||
|
||||
val space = if (windowBreakpoint.assumedFormFactor == FormFactor.TABLET) {
|
||||
64.dp
|
||||
} else {
|
||||
24.dp
|
||||
}
|
||||
|
||||
Spacer(modifier = Modifier.height(space))
|
||||
SecondPaneContent()
|
||||
}
|
||||
},
|
||||
|
||||
+12
-13
@@ -17,7 +17,6 @@ import androidx.compose.foundation.layout.padding
|
||||
import androidx.compose.foundation.layout.widthIn
|
||||
import androidx.compose.foundation.rememberScrollState
|
||||
import androidx.compose.foundation.verticalScroll
|
||||
import androidx.compose.material3.Icon
|
||||
import androidx.compose.material3.LinearProgressIndicator
|
||||
import androidx.compose.material3.MaterialTheme
|
||||
import androidx.compose.material3.Surface
|
||||
@@ -46,7 +45,8 @@ import org.signal.core.ui.compose.Buttons
|
||||
import org.signal.core.ui.compose.Dialogs
|
||||
import org.signal.core.ui.compose.KeepScreenOnEffect
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.core.ui.compose.SignalIcons
|
||||
import org.signal.core.ui.fonts.SignalSymbols
|
||||
import org.signal.core.ui.fonts.SignalSymbols.SignalSymbol
|
||||
import org.signal.core.ui.rememberWindowBreakpoint
|
||||
import org.signal.core.util.kibiBytes
|
||||
import org.signal.core.util.mebiBytes
|
||||
@@ -297,7 +297,13 @@ private fun InlineFooter(
|
||||
verticalAlignment = Alignment.CenterVertically
|
||||
) {
|
||||
Spacer(modifier = Modifier.weight(1f))
|
||||
Notice(onEvent = onEvent)
|
||||
|
||||
Box(
|
||||
modifier = Modifier.weight(2f),
|
||||
contentAlignment = Alignment.Center
|
||||
) {
|
||||
Notice(onEvent = onEvent)
|
||||
}
|
||||
|
||||
Box(
|
||||
modifier = Modifier.weight(1f),
|
||||
@@ -320,17 +326,10 @@ private fun Notice(
|
||||
onEvent: (MessageSyncScreenEvent) -> Unit
|
||||
) {
|
||||
Row(modifier = modifier) {
|
||||
Icon(
|
||||
imageVector = SignalIcons.Lock.imageVector,
|
||||
contentDescription = null,
|
||||
tint = MaterialTheme.colorScheme.onSurfaceVariant,
|
||||
modifier = Modifier
|
||||
.padding(end = 2.dp)
|
||||
.align(Alignment.CenterVertically)
|
||||
)
|
||||
|
||||
Text(
|
||||
text = buildAnnotatedString {
|
||||
SignalSymbol(glyph = SignalSymbols.Glyph.LOCK)
|
||||
append(' ')
|
||||
append(stringResource(R.string.MessageSyncScreen__messages_and_chat_info_are_protected_by_e2ee))
|
||||
append(' ')
|
||||
|
||||
@@ -339,7 +338,7 @@ private fun Notice(
|
||||
tag = "learn-more",
|
||||
styles = TextLinkStyles(
|
||||
style = SpanStyle(
|
||||
color = MaterialTheme.colorScheme.onSurface,
|
||||
color = MaterialTheme.colorScheme.onSurfaceVariant,
|
||||
fontWeight = FontWeight.Bold,
|
||||
textDecoration = TextDecoration.Underline
|
||||
)
|
||||
|
||||
+12
-1
@@ -64,6 +64,7 @@ import org.signal.core.ui.compose.BottomSheets
|
||||
import org.signal.core.ui.compose.Buttons
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.core.ui.compose.SignalIcons
|
||||
import org.signal.core.ui.compose.TabletPortraitDayPreview
|
||||
import org.signal.core.ui.compose.dismissWithAnimation
|
||||
import org.signal.core.ui.compose.horizontalGutters
|
||||
import org.signal.core.ui.compose.theme.SignalTheme
|
||||
@@ -410,7 +411,9 @@ private fun ColumnScope.SecondaryDeviceCallToActionButtons(
|
||||
modifier = Modifier.align(Alignment.CenterHorizontally)
|
||||
) {
|
||||
Text(
|
||||
text = stringResource(R.string.WelcomeScreen__not_on_signal_yet)
|
||||
text = stringResource(R.string.WelcomeScreen__not_on_signal_yet),
|
||||
style = MaterialTheme.typography.bodyMedium,
|
||||
color = MaterialTheme.colorScheme.onSurfaceVariant
|
||||
)
|
||||
|
||||
TextButton(
|
||||
@@ -564,6 +567,14 @@ private fun WelcomeScreenPreview() {
|
||||
}
|
||||
}
|
||||
|
||||
@TabletPortraitDayPreview
|
||||
@Composable
|
||||
private fun WelcomeScreenLinkedDevicePreview() {
|
||||
Previews.Preview {
|
||||
WelcomeScreen(state = WelcomeScreenState(isLinkAndSyncAvailable = true), onEvent = {})
|
||||
}
|
||||
}
|
||||
|
||||
@AllDevicePreviews
|
||||
@Composable
|
||||
private fun RestoreOrTransferBottomSheetPreview() {
|
||||
|
||||
+10
@@ -10,6 +10,7 @@ import com.android.tools.screenshot.PreviewTest
|
||||
import org.signal.core.ui.compose.AllDevicePreviews
|
||||
import org.signal.core.ui.compose.Previews
|
||||
import org.signal.core.ui.compose.RtlPreview
|
||||
import org.signal.core.ui.compose.TabletPreviews
|
||||
|
||||
class WelcomeScreenScreenshotTests {
|
||||
@PreviewTest
|
||||
@@ -21,4 +22,13 @@ class WelcomeScreenScreenshotTests {
|
||||
WelcomeScreen(state = WelcomeScreenState(), onEvent = {})
|
||||
}
|
||||
}
|
||||
|
||||
@PreviewTest
|
||||
@TabletPreviews
|
||||
@Composable
|
||||
fun WelcomeScreenLinkedDevicePreview() {
|
||||
Previews.Preview {
|
||||
WelcomeScreen(state = WelcomeScreenState(isLinkAndSyncAvailable = true), onEvent = {})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31170a912678c4dd42ec92c2d6c6816fc62d85c0396e6cf8a4a5a8583fd15d83
|
||||
size 83125
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d430ca7d7b77519743d26a29fc67ac543c1126477b1a6a4d33bb4a4bca4cca2a
|
||||
size 81994
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:736919c4f9d0d7d464d9a7edc971fa0ad20d20621b918cf644104bc708ac4b54
|
||||
size 56349
|
||||
oid sha256:0f52f669fce070f69be1b08bb82c07cc08e29c7251b0bb52bd093aa6274908e4
|
||||
size 55951
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d73c1bf15ed7cce08d3633240f580049f8bd62cc609af4a7453845311fc034ef
|
||||
size 55000
|
||||
oid sha256:afb168813aba90295d11886c2b94a1f8702c12cc9e27d7f63ada2095d547c7b4
|
||||
size 54616
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31101208b8cad353711508b9118776f571e9426877a4b3370fe20670e1df02a6
|
||||
size 77490
|
||||
oid sha256:579f3743c05b92e4994fd44a48947e2841e20d86be263fbb11ca8d103bcb843d
|
||||
size 77519
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:695d5ef7315cede6c60f6a28e64278d812f91d993d5b41b10c253495c4149c8e
|
||||
size 88046
|
||||
oid sha256:255f0065a287909bbf81db77a2d630d40b38c10844d99509793e473d6104c09a
|
||||
size 88129
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32a5382a60325a2e40386e88527d7bc0e3f91dd8a2fd34e317e126529e478c72
|
||||
size 118204
|
||||
oid sha256:6c0f0bc6e35c81bc62100043f7ca823a901cd4316cbe30b313c81229eda3958f
|
||||
size 118296
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f6c9e542a809451084dbf572fcb453af89a8e481ae81fcc620c6f807f5763ba2
|
||||
size 116683
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:183b4af45d76b0f859a3743b09d59f806b201f770c665319b6d01919dea4284a
|
||||
size 91572
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a9403843944d11c1eea077a5618236a6945a05830590c6b7d28e119879206e3
|
||||
size 101962
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e2e4237ccba62e22e2ea147a24adf29d1c78c48314e59fb2e120781fb74f2ce
|
||||
size 58420
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f91d7eab726e9a79374ddcdddbb04392f70a775fa5c11b49cf8194af6fb98120
|
||||
size 63952
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6250199f78e7b0bf73211792f1bca7ed685777808c428e39d1fbc2c0439a7779
|
||||
size 53424
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:aa5532b39e0af790208506ed4bcd4997d91cc5542963d27aecc65ebfee5564dd
|
||||
size 36449
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c246dd235fc98c809860c51383645b17e0d222fb3d79fe9f3cf270f0b3da0d82
|
||||
size 72593
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ec9e5ad4684887eea35642b97266f7c8237178e90619772595bc668cd481bba4
|
||||
size 160980
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d628513e2a817b311d982be7576b1fd9d871dbd139676e350b8397d743024f85
|
||||
size 91262
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f278203913e71bdf003996c021290c9c5fd2f5b4d171fc03559530f780cc1353
|
||||
size 131987
|
||||
oid sha256:e0417db2f235eb9ce1ff6dc963c75e5aad033349b587dc24c9c916f8a7dc00de
|
||||
size 130758
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c4843e9203cdc31b21fffaa97abcdaef2771db26946898142d62e2adaa03fe1c
|
||||
size 128373
|
||||
oid sha256:83cf44eeb4c82dd697792c3d3ba7121111f2cdf5d16d9454a1d9c67b07c9ddd0
|
||||
size 127169
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52d7ad7b4fdcf39a2ae0ede7c1841e0977e8f52505ce9b3652601a65308b0586
|
||||
size 132584
|
||||
oid sha256:c039efca7e3bb22c95547f877e0b348f236fffae06e04e07fc6032445104f9a7
|
||||
size 131473
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:01eab7a28187e31052fffb823c0927056a364919cd687befb627c8438fa2b5a6
|
||||
size 49229
|
||||
oid sha256:22ec9ee99a775be8a4ab9a711646b2f026832d6a968767de78e7c7fb3d4bb01e
|
||||
size 47951
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4463d008a1c661567ed9072200225299be5651186055505d0361fc6679d4c618
|
||||
size 49224
|
||||
oid sha256:e5b4575c42f385e271f7f0ae2163817437f669c773e8e583bff8e6b8ea0b9663
|
||||
size 47992
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:65327400793ee00bafcf3083de0f35944347434621c144178824741de3860c51
|
||||
size 58385
|
||||
oid sha256:1fdc54ff5ab9bcce7227f021fbea843be673516028fdfcdb10492e827cc2b441
|
||||
size 57224
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bc0dcd4e4fe04d78b96f49b42c04803b6a240d2646496d6f40dbcc878bae6e4e
|
||||
size 68648
|
||||
oid sha256:0b8ea6e4b955c2c8438dd34ad48a01d55e42322037cb4d97f867ecbe4720d349
|
||||
size 67437
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e5645d7f8e80adfc70b87f8089e72bb5d433928d206786659a8ac125b6750619
|
||||
size 113827
|
||||
oid sha256:08d08f4d2e1eb1a33e23a33ef2952a9b86fccfc1155c46c421e45700877ed8e8
|
||||
size 112595
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e8755ec06c301ba7f2ec55e0393fcfcb61fd04515181837a88e9feb6183bea81
|
||||
size 112957
|
||||
oid sha256:a538db67c89dde436630b9c806a73e55740de6ee3bf53cd3097fc3899c84ecc6
|
||||
size 111689
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bfd2484d3140e836609f6471d99ce6458a83d08217248e09ae21cd956dd57779
|
||||
size 104939
|
||||
oid sha256:192957c7bdd305b316c662f143e1855cd6fa567723ab7679ba080e39ca64f5cf
|
||||
size 103555
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2ff47e333b71686dcd97f5c8dd710dd21d4ecdc232949ed51defae2d691c4392
|
||||
size 114956
|
||||
oid sha256:74aff43cf59907f51b92b4907b4f006b5880a7d3571d8188550abaae14dc9e7b
|
||||
size 113802
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7241546eeb98ffa220afb2f57914ca5d36b7ea0760e0623c40321777664a68e
|
||||
size 95954
|
||||
oid sha256:2dd21a8fab6979db35cbc92415a3a0b83205d76b0d03cf0d7c21d85d2272aad4
|
||||
size 94826
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b66f017a10e2cab1d676e2d3cb0eccabaf489078b8a4f1733c0a828d6ff7eec3
|
||||
size 121562
|
||||
oid sha256:f775a74aaca538bb6eeb5e075fd22ee7a42ea45455ef218af9b67568da1ba7d2
|
||||
size 120256
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4ee58e0adfd7894537ca1f18c5267d37ec88ddf1f0e6170b1a4d72ce90d1a3da
|
||||
size 96449
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:566aef6885cf79f4778d198d1a58da70339d19f4975432d649df3b6cfff43ab3
|
||||
size 133355
|
||||
oid sha256:11e130cd5f0bc4e96a6d38205765844fae381275f3773e9ed41fd599adf4a32d
|
||||
size 132200
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3a7d00202dedccf68454d48bba04c87d64951496c85db3e07d4fba337f0ea53a
|
||||
size 129920
|
||||
oid sha256:e05dfe30bce6e9a27aaa9d6f272db70d64f7aa04c05c4125025e4016e2e23313
|
||||
size 128801
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:453536e56d62df9da83e9992def0e2e418765b6bab8008f25d74cb33be0c399e
|
||||
size 133954
|
||||
oid sha256:7bd6408f69b2c07a18348231d9f84fc6be7298ed3be9c3e72abbb21a58b36826
|
||||
size 132880
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4aa109cdb3d90928af7e6658eb9d5ba62e05140054746e348d8bf831d8baee1b
|
||||
size 50506
|
||||
oid sha256:54505cfbbba8d02904173aa02b1bd3407daee976741c3b7dceb5cc42f37c00a6
|
||||
size 49298
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b1a3ec2f034cbb91e51841a55a444f24afb1b44c0fe767c47fa0f8152dbfe6a
|
||||
size 50731
|
||||
oid sha256:fdccc1b510f42c9debab6eb7145ee025381bac0d4dd27bdc38b30490f5546f48
|
||||
size 49563
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6c25d96c4f3aac30c4a71583862e3788a9d6df857499ebb6c89d847a4e033a03
|
||||
size 59528
|
||||
oid sha256:a9e7564fa91b345ceb23f633045250b2fe8d57ae520b7698ac23fc0c2f43e66c
|
||||
size 58532
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:156d77b033986b5a459684fc56b363629d55251b8c51f35c52e4a550061d7928
|
||||
size 67437
|
||||
oid sha256:555ac1b0f5189789d17da9e12912ef62fac4c81f5da241f626cdae769289457e
|
||||
size 66337
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c75df96242b6753c01ac0d71c1f158758cc5fcd60e8efb932273da5e2bbcece
|
||||
size 115207
|
||||
oid sha256:dae6e6b5eb6dbef885b8b0885eff61d4f87dc10bc60fac3d73c5e1570c9f245a
|
||||
size 114065
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8328095d98186d69cb549de2c9c813334e3cd3daf499e63685184ff9cae28ffd
|
||||
size 114495
|
||||
oid sha256:a8e2fdc0ab211737735e80b80052221b328a51442937cfe284be49064a14723d
|
||||
size 113348
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:94103353e323be41177b5d323f2aeb7ef349fcb1e177063f62eda053b59bdd7d
|
||||
size 106317
|
||||
oid sha256:f1c29654b84e744fe6ae9935d2b0a279b415cb4f4c2631e5d635de3711a17262
|
||||
size 105030
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1ff00796f1e8f3617c9bb50461f6a6ba5a3064e54335b2bf93507745f53559a9
|
||||
size 116472
|
||||
oid sha256:8ee9996c46777dc341aa66d83dc4e7454abd0a005e13120b45167ed23a4ce3a2
|
||||
size 115308
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:252a603ca156958850b13c39a87c31fc0fb0df01e33b3598c9dc8ee2d896089a
|
||||
size 97583
|
||||
oid sha256:79a7a5fe7849f5d84f7f8afc2f0c7fc2c1c729fae9eb1fb3f00a2fe04487a5a6
|
||||
size 96554
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7fa06a697f18d8a1ae6c9e9a151098cf1b7208d85587c87b603d84c6ea64140
|
||||
size 123110
|
||||
oid sha256:e13b6aaca58deaed5e83a178e24d92f2c862e7dc15d1a1553195ae7f65e34e89
|
||||
size 121853
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b2c5dcc4ef050592fd73337e4e8074d784f07aaec9a552422edf702608050909
|
||||
size 98135
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:278772753f477f98f06236e4d8763a7ffa85162a5e9700ecac28183dd478e905
|
||||
size 136897
|
||||
oid sha256:860c696348d84fc91c066859d8a65b40d76c4111f482f6c78f6581239cb2c8c4
|
||||
size 135884
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8131ae306f398892f43b6d56f4b19edc2a800f72fef80d9c23c007a8c5e0a2b8
|
||||
size 132020
|
||||
oid sha256:c4c5a2b0edd0fa6e7cb8a13addb8af3b1f9a3d935a54aa3a11f305d7845d0011
|
||||
size 132501
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1e4aaf4d5e0a291372b929a4c16f129f7bb88af55b102653b4891ff9d38cd596
|
||||
size 137424
|
||||
oid sha256:a2cb4b002f2739a031244dc70847f374e7f9312edc35818e274b1155b141d3c1
|
||||
size 136474
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a1d91f050752a2ba82d7d17fcc2ee41a4255285f016ee7f1f01b8ab882e038fa
|
||||
size 53756
|
||||
oid sha256:ac8e904c5aa6f2fb0eb6c0a7e4bc605e242e5f88cb207b0ee015761e1264f830
|
||||
size 52516
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9edb6352998f387a355844ce065484e2808157c8df90e2492aa74e8c83f36b04
|
||||
size 53934
|
||||
oid sha256:6d41ebe3299df3998c6593bfbbe29e3ee961d786880e78302b2bbc17d527ba98
|
||||
size 52749
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:86d6a387e218d8cc467263a717e680c8bca875eacab6768c45fb9de167b0c699
|
||||
size 62630
|
||||
oid sha256:11dcdbdede65d2081f85fdf0cb5627bbff772893fb33a077d0c7a4139ee8a8a6
|
||||
size 61587
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5fca62967c95654dad306300fe4264ed3f927901dda08a6ab452cbf77e648fe5
|
||||
size 71063
|
||||
oid sha256:6056ea2b3ef2cadadb06841112bab8614538052d00d65dd1d0934e218a654dfd
|
||||
size 69851
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:09a21b9663f24d8b39d975ed9da3215f007d753159e90b2a2e19ad4fe16189b1
|
||||
size 118480
|
||||
oid sha256:a52bf06454d547282e2a71e7a299acc31a7b3689ed378bc8c98b12bba98f5c09
|
||||
size 117399
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:455829520e7907edbab47e28dc9b7e894ad20b1f5af045c0b65dfe8bb23f1405
|
||||
size 112622
|
||||
oid sha256:45b2088637e1561e6b1c03adf79ffcedc5c4e2f7879f620cdaa277984034f8a1
|
||||
size 116692
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f4571e98f5e212e1910a9cfc66bdcf03c156e5d22d7bdbc8f08c02a91e9402bd
|
||||
size 109429
|
||||
oid sha256:8eb0c9cb82f5260bb9d7155a851cd80c7911b180c6ec4b98f957112295751eec
|
||||
size 108276
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:42741c8fc55ec5ff87bdd2533bbe9f5c13b93121d16510d0eb97e80a2286e56a
|
||||
size 120101
|
||||
oid sha256:f2b034cbcc7175e10c7d6beb9af0a547b94628ff53823653980e94269a97ce24
|
||||
size 119183
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5b04c9c381930d1058334807d3ecfbfac66a6a848bb2d03c02498ff8035843fa
|
||||
size 101200
|
||||
oid sha256:452ca8624e5add5f23284d5f3db7ec27c0b37d19123b337a3d9fa7142b655625
|
||||
size 100211
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:449dda77f8d57a5133033b8e57cf233720e1c65fbc42c75ba82ad88904e9076a
|
||||
size 126574
|
||||
oid sha256:d0a9a24815f3239196be05dc6a2835bdd9c917ef2628f7e10a8caee609aa49e2
|
||||
size 125301
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:145edb6a1ca38564ddc4b081815fd6c8476bd4ad2b62fdad1a416fe58e516897
|
||||
size 101435
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:21fe9a94ad9b7f7e3a4daa834eed440be6967896db1e8c4691bc578417f10188
|
||||
size 134027
|
||||
oid sha256:87f97b316fcbba528ae5d0297082754d1c56f60f9dc0e25ee36fdc9234de5ad4
|
||||
size 132858
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b5f2e83f2f47c21e356ebb22e408764f9c1c31e8ce1da89981a981131e5e56fe
|
||||
size 130546
|
||||
oid sha256:213fd58be91a568d696de4bccfc070eab6b10bfc6170a563c0e92ebb596be1a3
|
||||
size 129448
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d6df760824910a93714d5159f02540582e33f024d53ab4be682e95ae4dc8740c
|
||||
size 134610
|
||||
oid sha256:f6c9065ec5eaeb33f1bedce204475065a55f90202542e1afccc85e938ba77a74
|
||||
size 133514
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8c7ee3d2ab87950f5ba97b9dfcee32cbc314975f67cf14731fca2197550fb1f2
|
||||
size 51094
|
||||
oid sha256:059a5e3073c38359a76a152f790f081ce5813d4726f3ff4722d02c8a6cef12ae
|
||||
size 49886
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:143279658bf04623eed661cd2b1dd3b4f58fc83b791a227272a5a4dd1b251b85
|
||||
size 51297
|
||||
oid sha256:b4fc59aa502cebd7a227d27bce5d3e1d3f17ea5c0c824a007fe41581aa98b3a8
|
||||
size 50121
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:540c5e3ddf9c0e4d7abd00928498f71f893e05e6bda6bcd6594631b95176a517
|
||||
size 59993
|
||||
oid sha256:2e9d9be37830d20613be716e847e50c2d86e55cd574749844c38030056f27a67
|
||||
size 59036
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c9c124a012338028c3ac3c95bbfb46793d96de1d97d6988d0ce51ee6098ea66
|
||||
size 68691
|
||||
oid sha256:2b794e215c56f9507ed943943df787180afd6e834f3e81bfadefcb4092a26999
|
||||
size 67530
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:42c642fc44f38da4bed19c25d40f9c1c21da375be70ffff6aa0d3f2fb4830efc
|
||||
size 115856
|
||||
oid sha256:7defa3a5a55f10481ef65c4eb0d7d1501b2036cd68b6eaaea557bba07f4aabd7
|
||||
size 114714
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6dc72a139219c38bec594ae0404ceadd5bcbebbcf105df42d89468a873bfa5ad
|
||||
size 115092
|
||||
oid sha256:1d788695664bda64bca9a44844b0904c36dff49ef6938f9d08c0af2d57a326e5
|
||||
size 113944
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e263b66becb610374fde851fe639eb9a167138b18717bf53806fe32dadb975d8
|
||||
size 106913
|
||||
oid sha256:9fd39a03e620e579744d5590bf6538683470ac566bb0e209892d99ed4686f2a5
|
||||
size 105624
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3d84aae5f7ba7500fb84ba6c0fc2d3a6090b83bda65135ea1e40627c39700a9c
|
||||
size 117184
|
||||
oid sha256:e453a015bd9062a15551b2cd300880dfc3c9a121c15c886877c97f0e720bf32b
|
||||
size 116010
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9a54b6bcf3fdf67312813e45d386301c21077b34b3af80bb28459bbccf91ee96
|
||||
size 98198
|
||||
oid sha256:47491b1ad2d581bfb4d1710320cb334386462b8874468121412c4fc962601d6e
|
||||
size 97165
|
||||
|
||||
+2
-2
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:82cb6e56c2f9efd858c5ea2704dc82207cefe112de1d3c072d8e92726386d9fa
|
||||
size 123724
|
||||
oid sha256:c49696e03b6570f9cc6f67b94c25d52e58ac266c1d0f741ec3663cfcd5696545
|
||||
size 122452
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8ab390f2b784e85c5e68c75b7f497fa3dd15f57a916d8a61bd9a10b254f4a26b
|
||||
size 98719
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f9c6273ac82d362635650702db9620ea547eb4da2ee59897dd048f50d5b14174
|
||||
size 145452
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:00d9e6bdc796343793b29f5d63c31d363569ece2e1c1894364e553d96aa9bf10
|
||||
size 70227
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a9820b163db2652704c1f5cffbda1b9515c6ad7afcce7be8113897c404584a8
|
||||
size 75741
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:11cdb43c6aaf6dbdc26ad3509eb56d1af230e0da4fa8c22c70447765f91c656d
|
||||
size 68986
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d2d407a3eb0b32ecde50574445367a6ac42ab72e495094f9da3f013da0b3858
|
||||
size 116823
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c7ef2e50e12de8b578e494408e55fe762b01fe081be1ae1a06183570a5b4e5ac
|
||||
size 94635
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ccb861bff099f70e065df109fff6e86feb9eb1f3a9512d43131f0ddb4e1a793a
|
||||
size 137755
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3087f293eca5d2d8bddb892cfe8b56e9f69cdafcfceb4c935fe670643f5447f5
|
||||
size 68979
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0974ce214f04519d530a1946a9310fd910fce619bf630ee7b072c05a66341dc5
|
||||
size 439446
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cd7f35dac332df07565ca0d7461c9ed1245b90b880e80a0ffc4ddc4d2c94b4e7
|
||||
size 400755
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3c362ad56dff71fdac52bf45e117d0d2866d5834ce0c419b4d210d224449bb60
|
||||
size 301746
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0e6619f53118001ed4203bd09fa6479333b4d6b78c34abb6693cb9f9d7637f54
|
||||
size 279530
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2bd26a837eda19f8783b7d8db8ff8d75013a532ce5ec94923751af5c4366a9b3
|
||||
size 275692
|
||||
Reference in New Issue
Block a user