Info.plist 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>LSMinimumSystemVersion</key>
  6. <string>10.7.4</string>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>English</string>
  9. <key>CFBundleAllowMixedLocalizations</key>
  10. <true/>
  11. <key>CFBundleExecutable</key>
  12. <string>DEPLOY_LAUNCHER_NAME</string>
  13. <key>CFBundleIconFile</key>
  14. <string>DEPLOY_ICON_FILE</string>
  15. <key>CFBundleIdentifier</key>
  16. <string>DEPLOY_BUNDLE_IDENTIFIER</string>
  17. <key>CFBundleInfoDictionaryVersion</key>
  18. <string>6.0</string>
  19. <key>CFBundleName</key>
  20. <string>DEPLOY_BUNDLE_NAME</string>
  21. <key>CFBundlePackageType</key>
  22. <string>APPL</string>
  23. <key>CFBundleShortVersionString</key>
  24. <string>DEPLOY_BUNDLE_SHORT_VERSION</string>
  25. <key>CFBundleSignature</key>
  26. <string>????</string>
  27. <!-- See http://developer.apple.com/library/mac/#releasenotes/General/SubmittingToMacAppStore/_index.html for list of AppStore categories -->
  28. <key>LSApplicationCategoryType</key>
  29. <string>DEPLOY_BUNDLE_CATEGORY</string>
  30. <key>CFBundleVersion</key>
  31. <string>100</string>
  32. <key>NSHumanReadableCopyright</key>
  33. <string>DEPLOY_BUNDLE_COPYRIGHT</string>
  34. <key>JVMRuntime</key>
  35. <string>DEPLOY_JAVA_RUNTIME_NAME</string>
  36. <key>JVMMainClassName</key>
  37. <string>DEPLOY_LAUNCHER_CLASS</string>
  38. <key>JVMAppClasspath</key>
  39. <string>DEPLOY_APP_CLASSPATH</string>
  40. <key>JVMMainJarName</key>
  41. <string>DEPLOY_MAIN_JAR_NAME</string>
  42. <key>JVMPreferencesID</key>
  43. <string>DEPLOY_PREFERENCES_ID</string>
  44. <key>JVMOptions</key>
  45. <array>
  46. DEPLOY_JVM_OPTIONS
  47. </array>
  48. <key>JVMUserOptions</key>
  49. <dict>
  50. DEPLOY_JVM_USER_OPTIONS
  51. </dict>
  52. <key>NSHighResolutionCapable</key>
  53. <string>true</string>
  54. <!-- hide from dock -->
  55. <key>LSUIElement</key>
  56. <string>1</string>
  57. <!-- register .cryptomator bundle extension -->
  58. <key>CFBundleDocumentTypes</key>
  59. <array>
  60. <dict>
  61. <key>CFBundleTypeExtensions</key>
  62. <array>
  63. <string>cryptomator</string>
  64. </array>
  65. <key>CFBundleTypeIconFile</key>
  66. <string>Cryptomator.icns</string>
  67. <key>CFBundleTypeName</key>
  68. <string>Cryptomator Vault</string>
  69. <key>CFBundleTypeRole</key>
  70. <string>Editor</string>
  71. <key>LSItemContentTypes</key>
  72. <array>
  73. <string>org.cryptomator.folder</string>
  74. </array>
  75. <key>LSTypeIsPackage</key>
  76. <true/>
  77. </dict>
  78. </array>
  79. <key>UTExportedTypeDeclarations</key>
  80. <array>
  81. <dict>
  82. <key>UTTypeConformsTo</key>
  83. <array>
  84. <string>com.apple.package</string>
  85. </array>
  86. <key>UTTypeDescription</key>
  87. <string>Cryptomator Vault</string>
  88. <key>UTTypeIconFile</key>
  89. <string>Cryptomator.icns</string>
  90. <key>UTTypeIdentifier</key>
  91. <string>org.cryptomator.folder</string>
  92. <key>UTTypeTagSpecification</key>
  93. <dict>
  94. <key>public.filename-extension</key>
  95. <array>
  96. <string>cryptomator</string>
  97. </array>
  98. </dict>
  99. </dict>
  100. </array>
  101. </dict>
  102. </plist>