Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions src/tiledapp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>

<key>CSResourcesFileMapped</key>
<true/>

<key>NSHumanReadableCopyright</key>
<string>Copyright 2008-2020 Thorbjørn Lindeijer</string>

<key>NSHighResolutionCapable</key>
<true/>

<key>CFBundleDocumentTypes</key>
<array>

<dict>
<key>CFBundleTypeName</key>
<string>Tiled Map</string>
Expand All @@ -21,9 +26,74 @@
<array>
<string>tmx</string>
</array>
<key>LSItemContentTypes</key>
<array>
<string>org.mapeditor.tiled.tmx</string>
</array>
</dict>

<dict>
<key>CFBundleTypeName</key>
<string>Tiled Tileset</string>
<key>CFBundleTypeIconFile</key>
<string>tmx-icon-mac</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>tsx</string>
</array>
<key>LSItemContentTypes</key>
<array>
<string>org.mapeditor.tiled.tsx</string>
</array>
</dict>

</array>

<key>UTExportedTypeDeclarations</key>
<array>

<dict>
<key>UTTypeIdentifier</key>
<string>org.mapeditor.tiled.tmx</string>
<key>UTTypeDescription</key>
<string>Tiled Map File</string>
<key>UTTypeConformsTo</key>
<array>
<string>public.xml</string>
</array>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>tmx</string>
</array>
</dict>
</dict>

<dict>
<key>UTTypeIdentifier</key>
<string>org.mapeditor.tiled.tsx</string>
<key>UTTypeDescription</key>
<string>Tiled Tileset File</string>
<key>UTTypeConformsTo</key>
<array>
<string>public.xml</string>
</array>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>tsx</string>
</array>
</dict>
</dict>

</array>

<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>

</dict>
</plist>
Loading