update asset catalog
BIN
Resources/Assets.xcassets/betaBlueprint.imageset/ShhShell Blueprint@1x.png
vendored
Normal file
|
After Width: | Height: | Size: 172 KiB |
BIN
Resources/Assets.xcassets/betaBlueprint.imageset/ShhShell Blueprint@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 558 KiB |
BIN
Resources/Assets.xcassets/betaBlueprint.imageset/ShhShell Blueprint@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 551 KiB |
|
Before Width: | Height: | Size: 2.1 MiB |
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"images" : [
|
"images" : [
|
||||||
{
|
{
|
||||||
"filename" : "ShhShell 3.png",
|
"filename" : "ShhShell@1x.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "1x"
|
"scale" : "1x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"filename" : "ShhShell 2.png",
|
"filename" : "ShhShell@2x.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "2x"
|
"scale" : "2x"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"filename" : "ShhShell 1.png",
|
"filename" : "ShhShell@3x.png",
|
||||||
"idiom" : "universal",
|
"idiom" : "universal",
|
||||||
"scale" : "3x"
|
"scale" : "3x"
|
||||||
}
|
}
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 66 KiB |
|
Before Width: | Height: | Size: 28 KiB |
BIN
Resources/Assets.xcassets/regular.imageset/ShhShell@1x.png
vendored
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
Resources/Assets.xcassets/regular.imageset/ShhShell@2x.png
vendored
Normal file
|
After Width: | Height: | Size: 181 KiB |
BIN
Resources/Assets.xcassets/regular.imageset/ShhShell@3x.png
vendored
Normal file
|
After Width: | Height: | Size: 532 KiB |
@@ -31,11 +31,12 @@ enum TerminalFilter: Codable, CaseIterable, Equatable {
|
|||||||
|
|
||||||
enum AppIcon: Codable, CaseIterable, Equatable {
|
enum AppIcon: Codable, CaseIterable, Equatable {
|
||||||
case regular
|
case regular
|
||||||
case blueprint
|
case beta
|
||||||
|
case betaBlueprint
|
||||||
|
|
||||||
var image: Image {
|
var image: Image {
|
||||||
switch self {
|
switch self {
|
||||||
case .regular, .blueprint:
|
case .regular, .beta, .betaBlueprint:
|
||||||
Image("\(self)")
|
Image("\(self)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||