-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBundler.toml
30 lines (25 loc) · 1.78 KB
/
Bundler.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
format_version = 2
[projects.Kraken]
source = 'git(https://github.com/wabiverse/Kraken.git)'
revision = 'main'
[projects.Kraken.products.Kraken]
type = 'executable'
[projects.Kraken.builder]
name = 'Package.swift'
type = 'wholeProject'
api = 'revision(main)'
[apps.Kraken]
identifier = 'foundation.wabi.Kraken'
product = 'Kraken'
version = '1.1.0'
category = 'public.app-category.graphics-design'
icon = 'kraken.png'
[apps.Kraken.plist]
commit = '$(COMMIT_HASH)'
CFBundleShortVersionString = '$(VERSION)'
CFBundleURLTypes = [ { type = 'dict', value = { CFBundleTypeRole = 'Viewer', CFBundleURLName = 'Kraken', CFBundleURLSchemes = [ 'kraken' ] } } ]
CFBundleDocumentTypes = [
{ type = 'dict', value = { CFBundleTypeExtensions = [ 'usd', 'usda', 'usdc', 'usdz' ], CFBundleTypeIconFile = 'AppIcon.icns', CFBundleTypeName = 'Universal Scene Description File', CFBundleTypeRole = 'Editor', LSIsAppleDefaultForType = true, LSItemContentTypes = [ 'com.pixar.universal-scene-description', 'com.pixar.universal-scene-description-mobile', 'com.pixar.usd.ascii', 'com.pixar.usd.crate' ], CFBundleTypeIconSystemGenerated = true } },
{ type = 'dict', value = { CFBundleTypeExtensions = [ 'galah' ], CFBundleTypeIconFile = 'AppIcon.icns', CFBundleTypeName = 'Galah File', CFBundleTypeRole = 'Editor', LSIsAppleDefaultForType = true, LSItemContentTypes = [ 'dev.stackotter.galah' ], CFBundleTypeIconSystemGenerated = true } }
]
UTExportedTypeDeclarations = [ { type = 'dict', value = { UTTypeConformsTo = [ 'public.data', 'public.source-code' ], UTTypeIdentifier = 'dev.stackotter.galah', UTTypeDescription = 'Galah File', UTTypeIcons = { type = 'dict', value = { UTTypeIconName = 'Galah File', UTTypeIconText = 'galah' } }, UTTypeTagSpecification = { type = 'dict', value = { 'public.filename-extension' = [ 'galah' ] } } } } ]