Skip to content

Latest commit

 

History

History
85 lines (69 loc) · 2.15 KB

resources.md

File metadata and controls

85 lines (69 loc) · 2.15 KB
layout navigation order title
default
true
3
Resources

The UFO team strives to make it as easy as possible to add UFO support to applications and toolkits. To that effect, we present a small collection of resources.


Macintosh Applications

These resources are useful for developing Macintosh OS X applications that support the UFO format.

UFO Document Icon

A standard UFO document icon. The file is provided in Apple Icon Image format.

[![UFO Icon]({{ site.baseurl }}/media/resources-macicon.png)]({{ site.baseurl }}/downloads/UFODocumentIcon.zip)

[Click to download]({{ site.baseurl }}/downloads/UFODocumentIcon.zip)

This document icon is MIT licensed.

UTI Declarations

A set of standard "Uniform Type Identifier":http://developer.apple.com/macosx/uniformtypeidentifiers.html declarations.

UTExportedTypeDeclarations

<array>
  <dict>
    <key>UTTypeConformsTo</key>
    <array>
      <string>com.apple.package</string>
    </array>
    <key>UTTypeDescription</key>
    <string>Unified Font Object</string>
    <key>UTTypeIconFile</key>
    <string>UFODocumentIcon.icns</string>
    <key>UTTypeIdentifier</key>
    <string>org.unifiedfontobject.ufo</string>
    <key>UTTypeReferenceURL</key>
    <string>http://unifiedfontobject.org</string>
    <key>UTTypeTagSpecification</key>
    <dict>
      <key>public.filename-extension</key>
      <array>
        <string>ufo</string>
      </array>
    </dict>
  </dict>
</array>

UTImportedTypeDeclarations

<array>
  <dict>
    <key>UTTypeConformsTo</key>
    <array>
      <string>com.apple.package</string>
    </array>
    <key>UTTypeDescription</key>
    <string>Unified Font Object</string>
    <key>UTTypeIconFile</key>
    <string>UFODocumentIcon.icns</string>
    <key>UTTypeIdentifier</key>
    <string>org.unifiedfontobject.ufo</string>
    <key>UTTypeReferenceURL</key>
    <string>http://unifiedfontobject.org</string>
    <key>UTTypeTagSpecification</key>
    <dict>
      <key>public.filename-extension</key>
      <array>
        <string>ufo</string>
      </array>
    </dict>
  </dict>
</array>