-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into dev/migrie/oop-scra…
…tch-2
- Loading branch information
Showing
542 changed files
with
3,001 additions
and
2,384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,181 @@ | ||
# | ||
# Generate-TerminalAssets.ps1 | ||
# | ||
# Typical usage: | ||
# .\Generate-TerminalAssets.ps1 -Path .\Terminal.svg -HighContrastPath .\Terminal_HC.svg -Destination .\images | ||
# .\Generate-TerminalAssets.ps1 -Path .\Terminal_Pre.svg -HighContrastPath .\Terminal_Pre_HC.svg -Destination .\images-Pre | ||
# .\Generate-TerminalAssets.ps1 -Path .\Terminal_Dev.svg -HighContrastPath .\Terminal_Dev_HC.svg -Destination .\images-Dev | ||
# | ||
# Some icons benefit from manual hints. The most efficient way to do that is to run the script twice: | ||
# | ||
# 1. Run .\Generate-TerminalAssets.ps1 ...args... -Destination .\images -KeepIntermediates | ||
# 2. Manually hint the intermediate images under .\images\_intermediate*.png | ||
# 3. Run .\Generate-TerminalAssets.ps1 ...args... -Destination .\images -UseExistingIntermediates | ||
# | ||
# Hinting the intermediate files minimizes the number of times you'll have to | ||
# hint the same image. You may want to hint just the _intermediate.*.png and | ||
# _intermediate.black.*.png files, and delete _intermediate.white.*.png. The | ||
# script will then automatically derive _intermediate.white.*.png from | ||
# _intermediate.black.*.png. | ||
# | ||
|
||
Param( | ||
[Parameter(Mandatory=$true,ValueFromPipeline=$true)] | ||
[string]$Path, | ||
[string]$Destination, | ||
[int[]]$Altforms = (16, 20, 24, 30, 32, 36, 40, 48, 60, 64, 72, 80, 96, 256), | ||
[switch]$Unplated = $true, | ||
[float[]]$Scales = (1.0, 1.25, 1.5, 2.0, 4.0), | ||
[string]$HighContrastPath = "", | ||
[switch]$UseExistingIntermediates = $false, | ||
[switch]$KeepIntermediates = $false | ||
) | ||
|
||
$assetTypes = @( | ||
[pscustomobject]@{Name="LargeTile"; W=310; H=310; IconSize=96} | ||
[pscustomobject]@{Name="LockScreenLogo"; W=24; H=24; IconSize=24} | ||
[pscustomobject]@{Name="SmallTile"; W=71; H=71; IconSize=36} | ||
[pscustomobject]@{Name="SplashScreen"; W=620; H=300; IconSize=96} | ||
[pscustomobject]@{Name="Square44x44Logo"; W=44; H=44; IconSize=32} | ||
[pscustomobject]@{Name="Square150x150Logo"; W=150; H=150; IconSize=48} | ||
[pscustomobject]@{Name="StoreLogo"; W=50; H=50; IconSize=36} | ||
[pscustomobject]@{Name="Wide310x150Logo"; W=310; H=150; IconSize=48} | ||
) | ||
|
||
function CeilToEven ([int]$i) { if ($i % 2 -eq 0) { [int]($i) } else { [int]($i + 1) } } | ||
|
||
$inflatedAssetSizes = $assetTypes | ForEach-Object { | ||
$as = $_; | ||
$scales | ForEach-Object { | ||
[pscustomobject]@{ | ||
Name = $as.Name + ".scale-$($_*100)" | ||
W = [math]::Round($as.W * $_, [System.MidpointRounding]::ToPositiveInfinity) | ||
H = [math]::Round($as.H * $_, [System.MidpointRounding]::ToPositiveInfinity) | ||
IconSize = CeilToEven ($as.IconSize * $_) | ||
} | ||
} | ||
} | ||
|
||
$allAssetSizes = $inflatedAssetSizes + ($Altforms | ForEach-Object { | ||
[pscustomobject]@{ | ||
Name = "Square44x44Logo.targetsize-${_}" | ||
W = [int]$_ | ||
H = [int]$_ | ||
IconSize = [int]$_ | ||
} | ||
If ($Unplated) { | ||
[pscustomobject]@{ | ||
Name = "Square44x44Logo.targetsize-${_}_altform-unplated" | ||
W = [int]$_ | ||
H = [int]$_ | ||
IconSize = [int]$_ | ||
} | ||
} | ||
}) | ||
|
||
# Cross product with the 3 high contrast modes | ||
$allAssetSizes = $allAssetSizes | ForEach-Object { | ||
$asset = $_ | ||
("standard", "black", "white") | ForEach-Object { | ||
$contrast = $_ | ||
$name = $asset.Name | ||
If ($contrast -Ne "standard") { | ||
If ($HighContrastPath -Eq "") { | ||
# "standard" is the default, so we can omit it in filenames | ||
return | ||
} | ||
$name += "_contrast-" + $contrast | ||
} | ||
[pscustomobject]@{ | ||
Name = $name | ||
W = $asset.W | ||
H = $asset.H | ||
IconSize = $asset.IconSize | ||
Contrast = $_ | ||
} | ||
} | ||
} | ||
|
||
$allSizes = $allAssetSizes.IconSize | Group-Object | Select-Object -Expand Name | ||
|
||
$TranslatedSVGPath = & wsl wslpath -u ((Get-Item $Path -ErrorAction:Stop).FullName -Replace "\\","/") | ||
$TranslatedSVGContrastPath = $null | ||
If ($HighContrastPath -Ne "") { | ||
$TranslatedSVGContrastPath = & wsl wslpath -u ((Get-Item $HighContrastPath -ErrorAction:Stop).FullName -Replace "\\","/") | ||
} | ||
& wsl which inkscape | Out-Null | ||
If ($LASTEXITCODE -Ne 0) { throw "Inkscape is not installed in WSL" } | ||
& wsl which convert | Out-Null | ||
If ($LASTEXITCODE -Ne 0) { throw "imagemagick is not installed in WSL" } | ||
|
||
If (-Not [string]::IsNullOrEmpty($Destination)) { | ||
New-Item -Type Directory $Destination -EA:Ignore | ||
$TranslatedOutDir = & wsl wslpath -u ((Get-Item $Destination -EA:Stop).FullName -Replace "\\","/") | ||
} Else { | ||
$TranslatedOutDir = "." | ||
} | ||
|
||
$intermediateFiles = [System.Collections.Concurrent.ConcurrentBag[string]]::new() | ||
|
||
# Generate the base icons | ||
$allSizes | ForEach-Object -Parallel { | ||
$sz = $_; | ||
|
||
$destinationNt = $using:Destination | ||
$destinationWsl = $using:TranslatedOutDir | ||
$svgStandardWsl = $using:TranslatedSVGPath | ||
$svgContrastWsl = $using:TranslatedSVGContrastPath | ||
|
||
$intermediateStandardNt = "$destinationNt\_intermediate.standard.$($sz).png" | ||
$intermediateStandardWsl = "$destinationWsl/_intermediate.standard.$($sz).png" | ||
|
||
If (($using:UseExistingIntermediates -Eq $false) -Or (-Not (Test-Path $intermediateStandardNt))) { | ||
wsl inkscape -z -e "$intermediateStandardWsl" -w $sz -h $sz $svgStandardWsl | ||
} Else { | ||
Write-Host "Using existing $intermediateStandardNt" | ||
} | ||
|
||
($using:intermediateFiles).Add($intermediateStandardNt) | ||
|
||
If ($svgContrastWsl -Ne $null) { | ||
$intermediateBlackNt = "$destinationNt\_intermediate.black.$($sz).png" | ||
$intermediateWhiteNt = "$destinationNt\_intermediate.white.$($sz).png" | ||
$intermediateBlackWsl = "$destinationWsl/_intermediate.black.$($sz).png" | ||
$intermediateWhiteWsl = "$destinationWsl/_intermediate.white.$($sz).png" | ||
|
||
If (($using:UseExistingIntermediates -Eq $false) -Or (-Not (Test-Path $intermediateBlackNt))) { | ||
wsl inkscape -z -e "$intermediateBlackWsl" -w $sz -h $sz $svgContrastWsl | ||
} Else { | ||
Write-Host "Using existing $intermediateBlackNt" | ||
} | ||
|
||
If (($using:UseExistingIntermediates -Eq $false) -Or (-Not (Test-Path $intermediateWhiteNt))) { | ||
# The HC white icon is just a negative image of the HC black one | ||
wsl convert "$intermediateBlackWsl" -channel RGB -negate "$intermediateWhiteWsl" | ||
} Else { | ||
Write-Host "Using existing $intermediateWhiteNt" | ||
} | ||
|
||
($using:intermediateFiles).Add($intermediateBlackNt) | ||
($using:intermediateFiles).Add($intermediateWhiteNt) | ||
} | ||
} | ||
|
||
# Once the base icons are done, splat them into the middles of larger canvases. | ||
$allAssetSizes | ForEach-Object -Parallel { | ||
$asset = $_ | ||
If ($asset.W -Eq $asset.H -And $asset.IconSize -eq $asset.W) { | ||
Write-Host "Copying base icon for size=$($asset.IconSize), contrast=$($asset.Contrast) to $($asset.Name)" | ||
Copy-Item "${using:Destination}\_intermediate.$($asset.Contrast).$($asset.IconSize).png" "${using:Destination}\$($asset.Name).png" -Force | ||
} Else { | ||
wsl convert "$($using:TranslatedOutDir)/_intermediate.$($asset.Contrast).$($asset.IconSize).png" -gravity center -background transparent -extent "$($asset.W)x$($asset.H)" "$($using:TranslatedOutDir)/$($asset.Name).png" | ||
} | ||
} | ||
|
||
If ($KeepIntermediates -Eq $false) { | ||
$intermediateFiles | ForEach-Object { | ||
Write-Host "Cleaning up intermediate file $_" | ||
Remove-Item $_ | ||
} | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+374 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-100_contrast-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+444 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-100_contrast-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+491 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-125_contrast-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+518 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-125_contrast-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+474 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-150_contrast-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+501 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-150_contrast-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+574 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-200_contrast-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+565 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-200_contrast-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+959 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-400_contrast-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+869 Bytes
res/terminal/images-Dev/LockScreenLogo.scale-400_contrast-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+726 Bytes
res/terminal/images-Dev/Square150x150Logo.scale-100_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+700 Bytes
res/terminal/images-Dev/Square150x150Logo.scale-100_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+846 Bytes
res/terminal/images-Dev/Square150x150Logo.scale-125_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+816 Bytes
res/terminal/images-Dev/Square150x150Logo.scale-125_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+967 Bytes
res/terminal/images-Dev/Square150x150Logo.scale-150_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+910 Bytes
res/terminal/images-Dev/Square150x150Logo.scale-150_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.25 KB
res/terminal/images-Dev/Square150x150Logo.scale-200_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.15 KB
res/terminal/images-Dev/Square150x150Logo.scale-200_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+2.42 KB
res/terminal/images-Dev/Square150x150Logo.scale-400_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+2.37 KB
res/terminal/images-Dev/Square150x150Logo.scale-400_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+504 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-100_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+501 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-100_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+554 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-125_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+562 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-125_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+625 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-150_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+608 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-150_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+697 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-200_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+676 Bytes
res/terminal/images-Dev/Square44x44Logo.scale-200_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
...al/images-Dev/Square44x44Logo.targetsize-16_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+395 Bytes
...al/images-Dev/Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+300 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-16_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+395 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-16_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+338 Bytes
...al/images-Dev/Square44x44Logo.targetsize-20_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+427 Bytes
...al/images-Dev/Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+338 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-20_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+427 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-20_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
...al/images-Dev/Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
...al/images-Dev/Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-24_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+444 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-24_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
...l/images-Dev/Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+2.03 KB
...l/images-Dev/Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+2.64 KB
res/terminal/images-Dev/Square44x44Logo.targetsize-256_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+2.03 KB
res/terminal/images-Dev/Square44x44Logo.targetsize-256_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+491 Bytes
...al/images-Dev/Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+518 Bytes
...al/images-Dev/Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+491 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-30_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+518 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-30_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+430 Bytes
...al/images-Dev/Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+490 Bytes
...al/images-Dev/Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+430 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-32_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+490 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-32_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+474 Bytes
...al/images-Dev/Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+501 Bytes
...al/images-Dev/Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+474 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-36_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+501 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-36_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+499 Bytes
...al/images-Dev/Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+532 Bytes
...al/images-Dev/Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+499 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-40_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+532 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-40_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+574 Bytes
...al/images-Dev/Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+565 Bytes
...al/images-Dev/Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+574 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-48_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+565 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-48_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+708 Bytes
...al/images-Dev/Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+650 Bytes
...al/images-Dev/Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+708 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-60_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+650 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-60_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+714 Bytes
...al/images-Dev/Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+634 Bytes
...al/images-Dev/Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+714 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-64_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+634 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-64_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+788 Bytes
...al/images-Dev/Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+698 Bytes
...al/images-Dev/Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+788 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-72_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+698 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-72_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+883 Bytes
...al/images-Dev/Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+757 Bytes
...al/images-Dev/Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+883 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-80_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+757 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-80_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+959 Bytes
...al/images-Dev/Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+869 Bytes
...al/images-Dev/Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+959 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-96_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+869 Bytes
res/terminal/images-Dev/Square44x44Logo.targetsize-96_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+808 Bytes
res/terminal/images-Dev/Wide310x150Logo.scale-100_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+756 Bytes
res/terminal/images-Dev/Wide310x150Logo.scale-100_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+959 Bytes
res/terminal/images-Dev/Wide310x150Logo.scale-125_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+920 Bytes
res/terminal/images-Dev/Wide310x150Logo.scale-125_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1019 Bytes
res/terminal/images-Dev/Wide310x150Logo.scale-150_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+595 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-100_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+586 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-100_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+770 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-125_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+680 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-125_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+842 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-150_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+730 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-150_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+963 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-200_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+792 Bytes
res/terminal/images-Pre/LockScreenLogo.scale-200_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+954 Bytes
res/terminal/images-Pre/Square150x150Logo.scale-100_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+936 Bytes
res/terminal/images-Pre/Square150x150Logo.scale-100_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.18 KB
res/terminal/images-Pre/Square150x150Logo.scale-125_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.13 KB
res/terminal/images-Pre/Square150x150Logo.scale-125_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.34 KB
res/terminal/images-Pre/Square150x150Logo.scale-150_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.27 KB
res/terminal/images-Pre/Square150x150Logo.scale-150_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.72 KB
res/terminal/images-Pre/Square150x150Logo.scale-200_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.63 KB
res/terminal/images-Pre/Square150x150Logo.scale-200_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+3.04 KB
res/terminal/images-Pre/Square150x150Logo.scale-400_contrast-black.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+667 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-100_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+670 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-100_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+775 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-125_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+777 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-125_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+841 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-150_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+828 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-150_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1010 Bytes
res/terminal/images-Pre/Square44x44Logo.scale-200_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
...al/images-Pre/Square44x44Logo.targetsize-16_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+485 Bytes
...al/images-Pre/Square44x44Logo.targetsize-16_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-16_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+485 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-16_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+509 Bytes
...al/images-Pre/Square44x44Logo.targetsize-20_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+546 Bytes
...al/images-Pre/Square44x44Logo.targetsize-20_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+509 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-20_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+546 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-20_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+595 Bytes
...al/images-Pre/Square44x44Logo.targetsize-24_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+586 Bytes
...al/images-Pre/Square44x44Logo.targetsize-24_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+595 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-24_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+586 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-24_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+3.97 KB
...l/images-Pre/Square44x44Logo.targetsize-256_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+2.94 KB
...l/images-Pre/Square44x44Logo.targetsize-256_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+3.97 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-256_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+2.94 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-256_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+770 Bytes
...al/images-Pre/Square44x44Logo.targetsize-30_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+680 Bytes
...al/images-Pre/Square44x44Logo.targetsize-30_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+770 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-30_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+680 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-30_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+681 Bytes
...al/images-Pre/Square44x44Logo.targetsize-32_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+647 Bytes
...al/images-Pre/Square44x44Logo.targetsize-32_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+681 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-32_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+647 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-32_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+842 Bytes
...al/images-Pre/Square44x44Logo.targetsize-36_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+730 Bytes
...al/images-Pre/Square44x44Logo.targetsize-36_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+842 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-36_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+730 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-36_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+867 Bytes
...al/images-Pre/Square44x44Logo.targetsize-40_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+741 Bytes
...al/images-Pre/Square44x44Logo.targetsize-40_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+867 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-40_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+741 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-40_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+963 Bytes
...al/images-Pre/Square44x44Logo.targetsize-48_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+792 Bytes
...al/images-Pre/Square44x44Logo.targetsize-48_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+963 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-48_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+792 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-48_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.21 KB
...al/images-Pre/Square44x44Logo.targetsize-60_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+953 Bytes
...al/images-Pre/Square44x44Logo.targetsize-60_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.21 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-60_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+953 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-60_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.23 KB
...al/images-Pre/Square44x44Logo.targetsize-64_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+963 Bytes
...al/images-Pre/Square44x44Logo.targetsize-64_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.23 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-64_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+963 Bytes
res/terminal/images-Pre/Square44x44Logo.targetsize-64_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.29 KB
...al/images-Pre/Square44x44Logo.targetsize-72_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1 KB
...al/images-Pre/Square44x44Logo.targetsize-72_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.29 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-72_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-72_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.53 KB
...al/images-Pre/Square44x44Logo.targetsize-80_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.12 KB
...al/images-Pre/Square44x44Logo.targetsize-80_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.53 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-80_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.12 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-80_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.68 KB
...al/images-Pre/Square44x44Logo.targetsize-96_altform-unplated_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.27 KB
...al/images-Pre/Square44x44Logo.targetsize-96_altform-unplated_contrast-white.png
Oops, something went wrong.
Binary file added
BIN
+1.68 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-96_contrast-black.png
Oops, something went wrong.
Binary file added
BIN
+1.27 KB
res/terminal/images-Pre/Square44x44Logo.targetsize-96_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1014 Bytes
res/terminal/images-Pre/Wide310x150Logo.scale-100_contrast-white.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.