[icons]: Added more icons from sidestore-next

This commit is contained in:
Magesh K
2024-12-17 13:14:33 +05:30
parent 1203c9f5f2
commit c41d25c19b
16 changed files with 133 additions and 10 deletions

View File

@@ -2,7 +2,7 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>modern</key> <key>classic</key>
<array> <array>
<dict> <dict>
<key>name</key> <key>name</key>
@@ -10,6 +10,33 @@
<key>imageName</key> <key>imageName</key>
<string>AppIcon</string> <string>AppIcon</string>
</dict> </dict>
</array>
<key>modern</key>
<array>
<dict>
<key>name</key>
<string>Blue</string>
<key>imageName</key>
<string>Blue</string>
</dict>
<dict>
<key>name</key>
<string>Dark</string>
<key>imageName</key>
<string>Dark</string>
</dict>
<dict>
<key>name</key>
<string>Honeydew</string>
<key>imageName</key>
<string>Honeydew</string>
</dict>
<dict>
<key>name</key>
<string>Pride</string>
<key>imageName</key>
<string>Pride</string>
</dict>
<dict> <dict>
<key>name</key> <key>name</key>
<string>Sandy</string> <string>Sandy</string>
@@ -18,21 +45,33 @@
</dict> </dict>
<dict> <dict>
<key>name</key> <key>name</key>
<string>Winter</string> <string>Sky</string>
<key>imageName</key> <key>imageName</key>
<string>Winter</string> <string>Sky</string>
</dict> </dict>
<dict> <dict>
<key>name</key> <key>name</key>
<string>Sunny</string> <string>Starburst</string>
<key>imageName</key> <key>imageName</key>
<string>Sunny</string> <string>Starburst</string>
</dict> </dict>
<dict> <dict>
<key>name</key> <key>name</key>
<string>Dark</string> <string>Storm</string>
<key>imageName</key> <key>imageName</key>
<string>Dark</string> <string>Storm</string>
</dict>
<dict>
<key>name</key>
<string>Vista</string>
<key>imageName</key>
<string>Vista</string>
</dict>
<dict>
<key>name</key>
<string>Winter</string>
<key>imageName</key>
<string>Winter</string>
</dict> </dict>
</array> </array>
</dict> </dict>

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

View File

@@ -1,7 +1,7 @@
{ {
"images" : [ "images" : [
{ {
"filename" : "Sunny.png", "filename" : "Blue.png",
"idiom" : "universal", "idiom" : "universal",
"platform" : "ios", "platform" : "ios",
"size" : "1024x1024" "size" : "1024x1024"

View File

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "Honeydew.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

View File

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "Pride.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 719 KiB

View File

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "Sky.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

View File

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "Starburst.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "Storm.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 KiB

View File

@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "Vista.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -43,18 +43,18 @@ extension AltAppIconsViewController
{ {
private enum Section: String, CaseIterable, Decodable, CodingKeyRepresentable private enum Section: String, CaseIterable, Decodable, CodingKeyRepresentable
{ {
case classic
case modern case modern
// case gradient // case gradient
// case recessed // case recessed
// case classic
var localizedName: String { var localizedName: String {
switch self switch self
{ {
case .classic: return NSLocalizedString("Classic", comment: "")
case .modern: return NSLocalizedString("Modern", comment: "") case .modern: return NSLocalizedString("Modern", comment: "")
// case .gradient: return NSLocalizedString("Gradient", comment: "") // case .gradient: return NSLocalizedString("Gradient", comment: "")
// case .recessed: return NSLocalizedString("Recessed", comment: "") // case .recessed: return NSLocalizedString("Recessed", comment: "")
// case .classic: return NSLocalizedString("Classic", comment: "")
} }
} }
} }