Info.plist 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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.13.0</string>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>English</string>
  9. <key>CFBundleAllowMixedLocalizations</key>
  10. <true/>
  11. <key>CFBundleExecutable</key>
  12. <string>Cryptomator</string>
  13. <key>CFBundleIconFile</key>
  14. <string>Cryptomator.icns</string>
  15. <key>CFBundleIdentifier</key>
  16. <string>org.cryptomator</string>
  17. <key>CFBundleInfoDictionaryVersion</key>
  18. <string>6.0</string>
  19. <key>CFBundleName</key>
  20. <string>Cryptomator</string>
  21. <key>CFBundlePackageType</key>
  22. <string>APPL</string>
  23. <key>CFBundleShortVersionString</key>
  24. <string>###BUNDLE_SHORT_VERSION_STRING###</string>
  25. <key>CFBundleSignature</key>
  26. <string>????</string>
  27. <key>LSApplicationCategoryType</key>
  28. <string>public.app-category.utilities</string>
  29. <key>CFBundleVersion</key>
  30. <string>###BUNDLE_VERSION###</string>
  31. <key>NSHumanReadableCopyright</key>
  32. <string>cryptomator.org</string>
  33. <key>NSHighResolutionCapable</key>
  34. <string>true</string>
  35. <key>NSUbiquitousContainers</key>
  36. <dict>
  37. <key>iCloud.com.setolabs.Cryptomator</key>
  38. <dict>
  39. <key>NSUbiquitousContainerIsDocumentScopePublic</key>
  40. <true/>
  41. <key>NSUbiquitousContainerName</key>
  42. <string>Cryptomator</string>
  43. <key>NSUbiquitousContainerSupportedFolderLevels</key>
  44. <string>Any</string>
  45. </dict>
  46. </dict>
  47. <!-- register .cryptomator extension -->
  48. <key>CFBundleDocumentTypes</key>
  49. <array>
  50. <dict>
  51. <key>LSItemContentTypes</key>
  52. <array>
  53. <string>org.cryptomator.vault-metadata</string>
  54. </array>
  55. <key>CFBundleTypeIconFile</key>
  56. <string>Cryptomator-Vault.icns</string>
  57. <key>CFBundleTypeName</key>
  58. <string>Cryptomator Vault Metadata</string>
  59. <key>LSHandlerRank</key>
  60. <string>Owner</string>
  61. <key>CFBundleTypeRole</key>
  62. <string>Editor</string>
  63. </dict>
  64. </array>
  65. <key>UTExportedTypeDeclarations</key>
  66. <array>
  67. <dict>
  68. <key>UTTypeIdentifier</key>
  69. <string>org.cryptomator.vault-metadata</string>
  70. <key>UTTypeConformsTo</key>
  71. <array>
  72. <string>public.utf8-plain-text</string>
  73. <string>public.json</string>
  74. </array>
  75. <key>UTTypeDescription</key>
  76. <string>Cryptomator Vault Metadata</string>
  77. <key>UTTypeIconFile</key>
  78. <string>Cryptomator-Vault.icns</string>
  79. <key>UTTypeTagSpecification</key>
  80. <dict>
  81. <key>public.filename-extension</key>
  82. <array>
  83. <string>cryptomator</string>
  84. </array>
  85. <key>public.mime-type</key>
  86. <array>
  87. <string>application/vnd.cryptomator.vault</string>
  88. </array>
  89. </dict>
  90. </dict>
  91. <dict>
  92. <key>UTTypeIdentifier</key>
  93. <string>org.cryptomator.encrypted-data</string>
  94. <key>UTTypeConformsTo</key>
  95. <array>
  96. <string>public.data</string>
  97. </array>
  98. <key>UTTypeDescription</key>
  99. <string>Cryptomator Encrypted Data</string>
  100. <key>UTTypeIconFile</key>
  101. <string>Cryptomator-Vault.icns</string>
  102. <key>UTTypeTagSpecification</key>
  103. <dict>
  104. <key>public.filename-extension</key>
  105. <array>
  106. <string>c9r</string>
  107. <string>c9s</string>
  108. </array>
  109. <key>public.mime-type</key>
  110. <array>
  111. <string>application/vnd.cryptomator.encrypted</string>
  112. </array>
  113. </dict>
  114. </dict>
  115. </array>
  116. <!-- allow utilization of integrated GPU, see https://developer.apple.com/library/mac/qa/qa1734/_index.html -->
  117. <key>NSSupportsAutomaticGraphicsSwitching</key>
  118. <true/>
  119. </dict>
  120. </plist>