livebook/rel/app/macos/Info.plist
2023-01-16 21:09:47 +01:00

43 lines
1 KiB
Plaintext

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>Livebook</string>
<key>CFBundleIdentifier</key>
<string>dev.livebook.Livebook</string>
<key>CFBundleVersion</key>
<string>0.8.0</string>
<key>CFBundleIconFile</key>
<string>AppIcon</string>
<key>LSUIElement</key>
<true/>
<key>LSRequiresNativeExecution</key>
<true/>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Livebook</string>
<key>CFBundleURLSchemes</key>
<array>
<string>livebook</string>
</array>
</dict>
</array>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>LiveMarkdown</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>livemd</string>
</array>
</dict>
</array>
</dict>
</plist>