/src/infplist.xml

https://bitbucket.org/ultra_iter/vim-qt · XML · 74 lines · 68 code · 5 blank · 1 comment · 0 complexity · cd7f1d7d5ebf49184dfcff3dcc8e5c50 MD5 · raw file

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- vim:set ts=2 sts=2 sw=2 tw=0: -->
  3. <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
  4. <plist version="0.9">
  5. <dict>
  6. <key>CFBundleIdentifier</key>
  7. <string>org.vim.Vim-APP_VER</string>
  8. <key>CFBundleInfoDictionaryVersion</key>
  9. <string>6.0</string>
  10. <key>CFBundleExecutable</key>
  11. <string>APP_EXE</string>
  12. <key>CFBundleName</key>
  13. <string>APP_NAME</string>
  14. <key>CFBundlePackageType</key>
  15. <string>APPL</string>
  16. <key>CFBundleVersion</key>
  17. <string>APP_VER</string>
  18. <key>CFBundleShortVersionString</key>
  19. <string>APP_VER</string>
  20. <key>CFBundleSignature</key>
  21. <string>VIM!</string>
  22. <key>CFBundleDevelopmentRegion</key>
  23. <string>English</string>
  24. <key>CSResourcesFileMapped</key>
  25. <true/>
  26. <key>CFBundleIconFile</key>
  27. <string>app.icns</string>
  28. <key>CFBundleDocumentTypes</key>
  29. <array>
  30. <dict>
  31. <key>CFBundleTypeExtensions</key>
  32. <array>
  33. <string>txt</string>
  34. <string>text</string>
  35. </array>
  36. <key>CFBundleTypeMIMETypes</key>
  37. <array>
  38. <string>text/plain</string>
  39. </array>
  40. <key>CFBundleTypeIconFile</key>
  41. <string>doc-txt.icns</string>
  42. <key>CFBundleTypeName</key>
  43. <string>Text File</string>
  44. <key>CFBundleTypeRole</key>
  45. <string>Editor</string>
  46. </dict>
  47. <dict>
  48. <key>CFBundleTypeExtensions</key>
  49. <array>
  50. <string>*</string>
  51. </array>
  52. <key>CFBundleTypeMIMETypes</key>
  53. <array>
  54. <string>text/*</string>
  55. </array>
  56. <key>CFBundleTypeIconFile</key>
  57. <string>doc.icns</string>
  58. <key>CFBundleTypeName</key>
  59. <string>File</string>
  60. <key>CFBundleTypeOSTypes</key>
  61. <array>
  62. <string>****</string>
  63. </array>
  64. <key>CFBundleTypeRole</key>
  65. <string>Editor</string>
  66. </dict>
  67. </array>
  68. </dict>
  69. </plist>