[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">
<plist version="1.0">
<dict>
<key>modern</key>
<key>classic</key>
<array>
<dict>
<key>name</key>
@@ -10,6 +10,33 @@
<key>imageName</key>
<string>AppIcon</string>
</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>
<key>name</key>
<string>Sandy</string>
@@ -18,21 +45,33 @@
</dict>
<dict>
<key>name</key>
<string>Winter</string>
<string>Sky</string>
<key>imageName</key>
<string>Winter</string>
<string>Sky</string>
</dict>
<dict>
<key>name</key>
<string>Sunny</string>
<string>Starburst</string>
<key>imageName</key>
<string>Sunny</string>
<string>Starburst</string>
</dict>
<dict>
<key>name</key>
<string>Dark</string>
<string>Storm</string>
<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>
</array>
</dict>

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

View File

@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "Sunny.png",
"filename" : "Blue.png",
"idiom" : "universal",
"platform" : "ios",
"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
{
case classic
case modern
// case gradient
// case recessed
// case classic
var localizedName: String {
switch self
{
case .classic: return NSLocalizedString("Classic", comment: "")
case .modern: return NSLocalizedString("Modern", comment: "")
// case .gradient: return NSLocalizedString("Gradient", comment: "")
// case .recessed: return NSLocalizedString("Recessed", comment: "")
// case .classic: return NSLocalizedString("Classic", comment: "")
}
}
}