Info.plist 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>CFBundleDevelopmentRegion</key>
  6. <string>English</string>
  7. <key>CFBundleDocumentTypes</key>
  8. <array>
  9. <!-- support older .dot extension -->
  10. <dict>
  11. <key>CFBundleTypeExtensions</key>
  12. <array>
  13. <string>dot</string>
  14. </array>
  15. <key>CFBundleTypeIconFile</key>
  16. <string>GraphDot.icns</string>
  17. <key>CFBundleTypeName</key>
  18. <string>GVDocumentTypeGraph</string>
  19. <key>CFBundleTypeRole</key>
  20. <string>Viewer</string>
  21. <key>NSDocumentClass</key>
  22. <string>GVDocument</string>
  23. </dict>
  24. <!-- support newer .gv extension -->
  25. <dict>
  26. <key>CFBundleTypeIconFile</key>
  27. <string>GraphGv.icns</string>
  28. <key>CFBundleTypeName</key>
  29. <string>GVDocumentTypeGraph</string>
  30. <key>CFBundleTypeRole</key>
  31. <string>Viewer</string>
  32. <key>LSItemContentTypes</key>
  33. <array>
  34. <string>com.att.graphviz.graph</string>
  35. </array>
  36. <key>NSDocumentClass</key>
  37. <string>GVDocument</string>
  38. </dict>
  39. </array>
  40. <key>CFBundleExecutable</key>
  41. <string>${EXECUTABLE_NAME}</string>
  42. <key>CFBundleIconFile</key>
  43. <string>Graphviz</string>
  44. <key>CFBundleIdentifier</key>
  45. <string>com.att.graphviz</string>
  46. <key>CFBundleInfoDictionaryVersion</key>
  47. <string>6.0</string>
  48. <key>CFBundleName</key>
  49. <string>${PRODUCT_NAME}</string>
  50. <key>CFBundlePackageType</key>
  51. <string>APPL</string>
  52. <key>CFBundleSignature</key>
  53. <string>GRVZ</string>
  54. <!-- use configure-generated version numbers -->
  55. <key>CFBundleShortVersionString</key>
  56. <string>12.2</string>
  57. <key>CFBundleVersion</key>
  58. <string>12.2.1</string>
  59. <key>CFBundleHelpBookFolder</key>
  60. <string>graphviz.help</string>
  61. <key>CFBundleHelpBookName</key>
  62. <string>Graphviz Help</string>
  63. <key>NSMainNibFile</key>
  64. <string>MainMenu</string>
  65. <key>NSPrincipalClass</key>
  66. <string>NSApplication</string>
  67. <key>UTExportedTypeDeclarations</key>
  68. <array>
  69. <dict>
  70. <key>UTTypeDescription</key>
  71. <string>GVDocumentTypeGraph</string>
  72. <key>UTTypeConformsTo</key>
  73. <array>
  74. <string>public.text</string>
  75. </array>
  76. <key>UTTypeIconFile</key>
  77. <string>GraphGv.icns</string>
  78. <key>UTTypeIdentifier</key>
  79. <string>com.att.graphviz.graph</string>
  80. <key>UTTypeTagSpecification</key>
  81. <dict>
  82. <key>public.filename-extension</key>
  83. <array>
  84. <string>gv</string>
  85. </array>
  86. <key>public.mime-type</key>
  87. <array>
  88. <string>text/vnd.graphviz</string>
  89. </array>
  90. </dict>
  91. </dict>
  92. </array>
  93. </dict>
  94. </plist>