Add raster panel icon family
|
|
@ -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
|
||||||
|
|
|
||||||
BIN
Android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
Android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 9.4 KiB |
|
Before Width: | Height: | Size: 613 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 630 B |
|
Before Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 903 B |
|
Before Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 3.5 KiB |
|
Before Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 4 KiB |
|
Before Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 5 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
|
Before Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 7.9 KiB |
|
|
@ -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": {
|
||||||
|
|
|
||||||
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-100.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 485 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-114.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-120.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-144.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-152.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-167.png
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-180.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-20.png
Normal file
|
After Width: | Height: | Size: 1,011 B |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-29.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-40.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-50.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-57.png
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-58.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-60.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-72.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-76.png
Normal file
|
After Width: | Height: | Size: 9.2 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-80.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/ios-panel-01-87.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 484 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/mac-panel-05-128.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/mac-panel-05-16.png
Normal file
|
After Width: | Height: | Size: 723 B |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/mac-panel-05-256.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/mac-panel-05-32.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/mac-panel-05-512.png
Normal file
|
After Width: | Height: | Size: 216 KiB |
BIN
Apple/UI/Assets.xcassets/AppIcon.appiconset/mac-panel-05-64.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
13
Apple/UI/Assets.xcassets/BurrowPanel01Preview.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"images": [
|
||||||
|
{
|
||||||
|
"filename": "preview.png",
|
||||||
|
"idiom": "universal",
|
||||||
|
"scale": "1x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info": {
|
||||||
|
"author": "xcode",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Apple/UI/Assets.xcassets/BurrowPanel01Preview.imageset/preview.png
vendored
Normal file
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 525 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 21 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 999 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
|
After Width: | Height: | Size: 9.6 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 12 KiB |
158
Apple/UI/Assets.xcassets/BurrowPanel02.appiconset/Contents.json
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
13
Apple/UI/Assets.xcassets/BurrowPanel02Preview.imageset/Contents.json
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"images": [
|
||||||
|
{
|
||||||
|
"filename": "preview.png",
|
||||||
|
"idiom": "universal",
|
||||||
|
"scale": "1x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info": {
|
||||||
|
"author": "xcode",
|
||||||
|
"version": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Apple/UI/Assets.xcassets/BurrowPanel02Preview.imageset/preview.png
vendored
Normal file
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 463 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 26 KiB |