update asset catalog

This commit is contained in:
neon443
2025-08-21 19:25:55 +01:00
parent 518946ace1
commit e9ddf0c13e
15 changed files with 6 additions and 5 deletions

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 558 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 551 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 MiB

View File

@@ -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"
} }

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 181 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 532 KiB

View File

@@ -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)")
} }
} }