Info.plist 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" ?>
  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
  28. for list of AppStore categories -->
  29. <key>LSApplicationCategoryType</key>
  30. <string>DEPLOY_BUNDLE_CATEGORY</string>
  31. <key>CFBundleVersion</key>
  32. <string>100</string>
  33. <key>NSHumanReadableCopyright</key>
  34. <string>DEPLOY_BUNDLE_COPYRIGHT</string>
  35. <key>JVMRuntime</key>
  36. <string>DEPLOY_JAVA_RUNTIME_NAME</string>
  37. <key>JVMMainClassName</key>
  38. <string>DEPLOY_LAUNCHER_CLASS</string>
  39. <key>JVMAppClasspath</key>
  40. <string>DEPLOY_APP_CLASSPATH</string>
  41. <key>JVMMainJarName</key>
  42. <string>DEPLOY_MAIN_JAR_NAME</string>
  43. <key>JVMPreferencesID</key>
  44. <string>DEPLOY_PREFERENCES_ID</string>
  45. <key>JVMOptions</key>
  46. <array>
  47. DEPLOY_JVM_OPTIONS
  48. </array>
  49. <key>JVMUserOptions</key>
  50. <dict>
  51. DEPLOY_JVM_USER_OPTIONS
  52. </dict>
  53. <key>NSHighResolutionCapable</key>
  54. <string>true</string>
  55. <!-- register .cryptomator bundle extension -->
  56. <key>CFBundleDocumentTypes</key>
  57. <array>
  58. <dict>
  59. <key>CFBundleTypeRole</key>
  60. <string>Editor</string>
  61. <key>LSTypeIsPackage</key>
  62. <true/>
  63. <key>CFBundleTypeIconFile</key>
  64. <string>Cryptomator.icns</string>
  65. <key>CFBundleTypeExtensions</key>
  66. <array>
  67. <string>cryptomator</string>
  68. </array>
  69. <key>CFBundleTypeName</key>
  70. <string>org.cryptomator.folder</string>
  71. <key>LSHandlerRank</key>
  72. <string>Owner</string>
  73. </dict>
  74. </array>
  75. </dict>
  76. </plist>