Add raster panel icon family
Some checks failed
Build: Android / Android Rust Core Stub (push) Failing after 25s
Build Rust / Cargo Test (push) Successful in 4m2s
Build Site / Next.js Build (push) Failing after 4s
Lint Governance / BEP Metadata (push) Successful in 2s

This commit is contained in:
Conrad Kramer 2026-06-08 00:20:25 -07:00
parent c81712b781
commit 60cc48a4b7
278 changed files with 1992 additions and 621 deletions

View file

@ -1,7 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application <application
android:allowBackup="false" android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/BurrowTheme"> android:theme="@style/BurrowTheme">
<activity <activity

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View file

@ -10,6 +10,8 @@ INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphone*] = YES
INFOPLIST_KEY_UIStatusBarStyle[sdk=iphone*] = UIStatusBarStyleDefault INFOPLIST_KEY_UIStatusBarStyle[sdk=iphone*] = UIStatusBarStyleDefault
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad[sdk=iphone*] = UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad[sdk=iphone*] = UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone[sdk=iphone*] = UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone[sdk=iphone*] = UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
ASSETCATALOG_COMPILER_ALTERNATE_APPICON_NAMES[sdk=iphone*] = BurrowPanel02 BurrowPanel03 BurrowPanel04 BurrowPanel05 BurrowPanel06
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS[sdk=iphone*] = YES
TARGETED_DEVICE_FAMILY[sdk=iphone*] = 1,2 TARGETED_DEVICE_FAMILY[sdk=iphone*] = 1,2
EXCLUDED_SOURCE_FILE_NAMES = MainMenu.xib EXCLUDED_SOURCE_FILE_NAMES = MainMenu.xib

View file

@ -1,14 +1,46 @@
#if !os(macOS) #if !os(macOS)
import BurrowUI import BurrowUI
import SwiftUI import SwiftUI
#if os(iOS)
import UIKit
#endif
@MainActor @MainActor
@main @main
struct BurrowApp: App { struct BurrowApp: App {
var body: some Scene { var body: some Scene {
WindowGroup { WindowGroup {
#if os(iOS)
BurrowView(appIconManager: UIKitAppIconManager())
#else
BurrowView() BurrowView()
#endif
}
}
}
#if os(iOS)
@MainActor
private struct UIKitAppIconManager: AppIconManaging {
var supportsAlternateIcons: Bool {
UIApplication.shared.supportsAlternateIcons
}
var alternateIconName: String? {
UIApplication.shared.alternateIconName
}
func setAlternateIconName(_ iconName: String?) async throws {
try await withCheckedThrowingContinuation { (continuation: CheckedContinuation<Void, any Error>) in
UIApplication.shared.setAlternateIconName(iconName) { error in
if let error {
continuation.resume(throwing: error)
} else {
continuation.resume(returning: ())
}
}
} }
} }
} }
#endif #endif
#endif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 613 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 903 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

View file

@ -1,340 +1,214 @@
{ {
"images": [ "images": [
{ {
"filename" : "40.png", "filename": "ios-panel-01-40.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "2x", "scale": "2x",
"size": "20x20" "size": "20x20"
}, },
{ {
"filename" : "60.png", "filename": "ios-panel-01-60.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "3x", "scale": "3x",
"size": "20x20" "size": "20x20"
}, },
{ {
"filename" : "29.png", "filename": "ios-panel-01-29.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "1x", "scale": "1x",
"size": "29x29" "size": "29x29"
}, },
{ {
"filename" : "58.png", "filename": "ios-panel-01-58.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "2x", "scale": "2x",
"size": "29x29" "size": "29x29"
}, },
{ {
"filename" : "87.png", "filename": "ios-panel-01-87.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "3x", "scale": "3x",
"size": "29x29" "size": "29x29"
}, },
{ {
"filename" : "80.png", "filename": "ios-panel-01-80.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "2x", "scale": "2x",
"size": "40x40" "size": "40x40"
}, },
{ {
"filename" : "120.png", "filename": "ios-panel-01-120.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "3x", "scale": "3x",
"size": "40x40" "size": "40x40"
}, },
{ {
"filename" : "57.png", "filename": "ios-panel-01-57.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "1x", "scale": "1x",
"size": "57x57" "size": "57x57"
}, },
{ {
"filename" : "114.png", "filename": "ios-panel-01-114.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "2x", "scale": "2x",
"size": "57x57" "size": "57x57"
}, },
{ {
"filename" : "120.png", "filename": "ios-panel-01-120.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "2x", "scale": "2x",
"size": "60x60" "size": "60x60"
}, },
{ {
"filename" : "180.png", "filename": "ios-panel-01-180.png",
"idiom": "iphone", "idiom": "iphone",
"scale": "3x", "scale": "3x",
"size": "60x60" "size": "60x60"
}, },
{ {
"filename" : "20.png", "filename": "ios-panel-01-20.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "1x", "scale": "1x",
"size": "20x20" "size": "20x20"
}, },
{ {
"filename" : "40.png", "filename": "ios-panel-01-40.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "20x20" "size": "20x20"
}, },
{ {
"filename" : "29.png", "filename": "ios-panel-01-29.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "1x", "scale": "1x",
"size": "29x29" "size": "29x29"
}, },
{ {
"filename" : "58.png", "filename": "ios-panel-01-58.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "29x29" "size": "29x29"
}, },
{ {
"filename" : "40.png", "filename": "ios-panel-01-40.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "1x", "scale": "1x",
"size": "40x40" "size": "40x40"
}, },
{ {
"filename" : "80.png", "filename": "ios-panel-01-80.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "40x40" "size": "40x40"
}, },
{ {
"filename" : "50.png", "filename": "ios-panel-01-50.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "1x", "scale": "1x",
"size": "50x50" "size": "50x50"
}, },
{ {
"filename" : "100.png", "filename": "ios-panel-01-100.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "50x50" "size": "50x50"
}, },
{ {
"filename" : "72.png", "filename": "ios-panel-01-72.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "1x", "scale": "1x",
"size": "72x72" "size": "72x72"
}, },
{ {
"filename" : "144.png", "filename": "ios-panel-01-144.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "72x72" "size": "72x72"
}, },
{ {
"filename" : "76.png", "filename": "ios-panel-01-76.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "1x", "scale": "1x",
"size": "76x76" "size": "76x76"
}, },
{ {
"filename" : "152.png", "filename": "ios-panel-01-152.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "76x76" "size": "76x76"
}, },
{ {
"filename" : "167.png", "filename": "ios-panel-01-167.png",
"idiom": "ipad", "idiom": "ipad",
"scale": "2x", "scale": "2x",
"size": "83.5x83.5" "size": "83.5x83.5"
}, },
{ {
"filename" : "1024.png", "filename": "ios-panel-01-1024.png",
"idiom": "ios-marketing", "idiom": "ios-marketing",
"scale": "1x", "scale": "1x",
"size": "1024x1024" "size": "1024x1024"
}, },
{ {
"filename" : "16.png", "filename": "mac-panel-05-16.png",
"idiom": "mac", "idiom": "mac",
"scale": "1x", "scale": "1x",
"size": "16x16" "size": "16x16"
}, },
{ {
"filename" : "32.png", "filename": "mac-panel-05-32.png",
"idiom": "mac", "idiom": "mac",
"scale": "2x", "scale": "2x",
"size": "16x16" "size": "16x16"
}, },
{ {
"filename" : "32.png", "filename": "mac-panel-05-32.png",
"idiom": "mac", "idiom": "mac",
"scale": "1x", "scale": "1x",
"size": "32x32" "size": "32x32"
}, },
{ {
"filename" : "64.png", "filename": "mac-panel-05-64.png",
"idiom": "mac", "idiom": "mac",
"scale": "2x", "scale": "2x",
"size": "32x32" "size": "32x32"
}, },
{ {
"filename" : "128.png", "filename": "mac-panel-05-128.png",
"idiom": "mac", "idiom": "mac",
"scale": "1x", "scale": "1x",
"size": "128x128" "size": "128x128"
}, },
{ {
"filename" : "256.png", "filename": "mac-panel-05-256.png",
"idiom": "mac", "idiom": "mac",
"scale": "2x", "scale": "2x",
"size": "128x128" "size": "128x128"
}, },
{ {
"filename" : "256.png", "filename": "mac-panel-05-256.png",
"idiom": "mac", "idiom": "mac",
"scale": "1x", "scale": "1x",
"size": "256x256" "size": "256x256"
}, },
{ {
"filename" : "512.png", "filename": "mac-panel-05-512.png",
"idiom": "mac", "idiom": "mac",
"scale": "2x", "scale": "2x",
"size": "256x256" "size": "256x256"
}, },
{ {
"filename" : "512.png", "filename": "mac-panel-05-512.png",
"idiom": "mac", "idiom": "mac",
"scale": "1x", "scale": "1x",
"size": "512x512" "size": "512x512"
}, },
{ {
"filename" : "1024.png", "filename": "mac-panel-05-1024.png",
"idiom": "mac", "idiom": "mac",
"scale": "2x", "scale": "2x",
"size": "512x512" "size": "512x512"
},
{
"filename" : "48.png",
"idiom" : "watch",
"role" : "notificationCenter",
"scale" : "2x",
"size" : "24x24",
"subtype" : "38mm"
},
{
"filename" : "55.png",
"idiom" : "watch",
"role" : "notificationCenter",
"scale" : "2x",
"size" : "27.5x27.5",
"subtype" : "42mm"
},
{
"filename" : "58.png",
"idiom" : "watch",
"role" : "companionSettings",
"scale" : "2x",
"size" : "29x29"
},
{
"filename" : "87.png",
"idiom" : "watch",
"role" : "companionSettings",
"scale" : "3x",
"size" : "29x29"
},
{
"idiom" : "watch",
"role" : "notificationCenter",
"scale" : "2x",
"size" : "33x33",
"subtype" : "45mm"
},
{
"filename" : "80.png",
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "40x40",
"subtype" : "38mm"
},
{
"filename" : "88.png",
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "44x44",
"subtype" : "40mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "46x46",
"subtype" : "41mm"
},
{
"filename" : "100.png",
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "50x50",
"subtype" : "44mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "51x51",
"subtype" : "45mm"
},
{
"idiom" : "watch",
"role" : "appLauncher",
"scale" : "2x",
"size" : "54x54",
"subtype" : "49mm"
},
{
"filename" : "172.png",
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "86x86",
"subtype" : "38mm"
},
{
"filename" : "196.png",
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "98x98",
"subtype" : "42mm"
},
{
"filename" : "216.png",
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "108x108",
"subtype" : "44mm"
},
{
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "117x117",
"subtype" : "45mm"
},
{
"idiom" : "watch",
"role" : "quickLook",
"scale" : "2x",
"size" : "129x129",
"subtype" : "49mm"
},
{
"filename" : "1024.png",
"idiom" : "watch-marketing",
"scale" : "1x",
"size" : "1024x1024"
} }
], ],
"info": { "info": {

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 485 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,011 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 723 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

View file

@ -0,0 +1,13 @@
{
"images": [
{
"filename": "preview.png",
"idiom": "universal",
"scale": "1x"
}
],
"info": {
"author": "xcode",
"version": 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 525 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 999 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,158 @@
{
"images": [
{
"filename": "BurrowPanel02-40.png",
"idiom": "iphone",
"scale": "2x",
"size": "20x20"
},
{
"filename": "BurrowPanel02-60.png",
"idiom": "iphone",
"scale": "3x",
"size": "20x20"
},
{
"filename": "BurrowPanel02-29.png",
"idiom": "iphone",
"scale": "1x",
"size": "29x29"
},
{
"filename": "BurrowPanel02-58.png",
"idiom": "iphone",
"scale": "2x",
"size": "29x29"
},
{
"filename": "BurrowPanel02-87.png",
"idiom": "iphone",
"scale": "3x",
"size": "29x29"
},
{
"filename": "BurrowPanel02-80.png",
"idiom": "iphone",
"scale": "2x",
"size": "40x40"
},
{
"filename": "BurrowPanel02-120.png",
"idiom": "iphone",
"scale": "3x",
"size": "40x40"
},
{
"filename": "BurrowPanel02-57.png",
"idiom": "iphone",
"scale": "1x",
"size": "57x57"
},
{
"filename": "BurrowPanel02-114.png",
"idiom": "iphone",
"scale": "2x",
"size": "57x57"
},
{
"filename": "BurrowPanel02-120.png",
"idiom": "iphone",
"scale": "2x",
"size": "60x60"
},
{
"filename": "BurrowPanel02-180.png",
"idiom": "iphone",
"scale": "3x",
"size": "60x60"
},
{
"filename": "BurrowPanel02-20.png",
"idiom": "ipad",
"scale": "1x",
"size": "20x20"
},
{
"filename": "BurrowPanel02-40.png",
"idiom": "ipad",
"scale": "2x",
"size": "20x20"
},
{
"filename": "BurrowPanel02-29.png",
"idiom": "ipad",
"scale": "1x",
"size": "29x29"
},
{
"filename": "BurrowPanel02-58.png",
"idiom": "ipad",
"scale": "2x",
"size": "29x29"
},
{
"filename": "BurrowPanel02-40.png",
"idiom": "ipad",
"scale": "1x",
"size": "40x40"
},
{
"filename": "BurrowPanel02-80.png",
"idiom": "ipad",
"scale": "2x",
"size": "40x40"
},
{
"filename": "BurrowPanel02-50.png",
"idiom": "ipad",
"scale": "1x",
"size": "50x50"
},
{
"filename": "BurrowPanel02-100.png",
"idiom": "ipad",
"scale": "2x",
"size": "50x50"
},
{
"filename": "BurrowPanel02-72.png",
"idiom": "ipad",
"scale": "1x",
"size": "72x72"
},
{
"filename": "BurrowPanel02-144.png",
"idiom": "ipad",
"scale": "2x",
"size": "72x72"
},
{
"filename": "BurrowPanel02-76.png",
"idiom": "ipad",
"scale": "1x",
"size": "76x76"
},
{
"filename": "BurrowPanel02-152.png",
"idiom": "ipad",
"scale": "2x",
"size": "76x76"
},
{
"filename": "BurrowPanel02-167.png",
"idiom": "ipad",
"scale": "2x",
"size": "83.5x83.5"
},
{
"filename": "BurrowPanel02-1024.png",
"idiom": "ios-marketing",
"scale": "1x",
"size": "1024x1024"
}
],
"info": {
"author": "xcode",
"version": 1
}
}

View file

@ -0,0 +1,13 @@
{
"images": [
{
"filename": "preview.png",
"idiom": "universal",
"scale": "1x"
}
],
"info": {
"author": "xcode",
"version": 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Some files were not shown because too many files have changed in this diff Show more