1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <key>CFBundleDocumentTypes</key>
- <array>
- <!-- support older .dot extension -->
- <dict>
- <key>CFBundleTypeExtensions</key>
- <array>
- <string>dot</string>
- </array>
- <key>CFBundleTypeIconFile</key>
- <string>GraphDot.icns</string>
- <key>CFBundleTypeName</key>
- <string>GVDocumentTypeGraph</string>
- <key>CFBundleTypeRole</key>
- <string>Viewer</string>
- <key>NSDocumentClass</key>
- <string>GVDocument</string>
- </dict>
- <!-- support newer .gv extension -->
- <dict>
- <key>CFBundleTypeIconFile</key>
- <string>GraphGv.icns</string>
- <key>CFBundleTypeName</key>
- <string>GVDocumentTypeGraph</string>
- <key>CFBundleTypeRole</key>
- <string>Viewer</string>
- <key>LSItemContentTypes</key>
- <array>
- <string>com.att.graphviz.graph</string>
- </array>
- <key>NSDocumentClass</key>
- <string>GVDocument</string>
- </dict>
- </array>
- <key>CFBundleExecutable</key>
- <string>${EXECUTABLE_NAME}</string>
- <key>CFBundleIconFile</key>
- <string>Graphviz</string>
- <key>CFBundleIdentifier</key>
- <string>com.att.graphviz</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>${PRODUCT_NAME}</string>
- <key>CFBundlePackageType</key>
- <string>APPL</string>
- <key>CFBundleSignature</key>
- <string>GRVZ</string>
- <!-- use configure-generated version numbers -->
- <key>CFBundleShortVersionString</key>
- <string>12.2</string>
- <key>CFBundleVersion</key>
- <string>12.2.1</string>
- <key>CFBundleHelpBookFolder</key>
- <string>graphviz.help</string>
- <key>CFBundleHelpBookName</key>
- <string>Graphviz Help</string>
- <key>NSMainNibFile</key>
- <string>MainMenu</string>
- <key>NSPrincipalClass</key>
- <string>NSApplication</string>
-
- <key>UTExportedTypeDeclarations</key>
- <array>
- <dict>
- <key>UTTypeDescription</key>
- <string>GVDocumentTypeGraph</string>
- <key>UTTypeConformsTo</key>
- <array>
- <string>public.text</string>
- </array>
- <key>UTTypeIconFile</key>
- <string>GraphGv.icns</string>
- <key>UTTypeIdentifier</key>
- <string>com.att.graphviz.graph</string>
- <key>UTTypeTagSpecification</key>
- <dict>
- <key>public.filename-extension</key>
- <array>
- <string>gv</string>
- </array>
- <key>public.mime-type</key>
- <array>
- <string>text/vnd.graphviz</string>
- </array>
- </dict>
- </dict>
- </array>
- </dict>
- </plist>
|