MacOSXBundleInfo.plist.in 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>NSPrincipalClass</key>
  6. <string>NSApplication</string>
  7. <key>LSMinimumSystemVersion</key>
  8. <string>10.14.0</string>
  9. <key>LSUIElement</key>
  10. <true/>
  11. <key>CFBundleDevelopmentRegion</key>
  12. <string>English</string>
  13. <key>CFBundleExecutable</key>
  14. <string>@APPLICATION_NAME@</string>
  15. <key>CFBundleIconFile</key>
  16. <string>@APPLICATION_ICON_NAME@.icns</string>
  17. <key>CFBundleIdentifier</key>
  18. <string>@APPLICATION_REV_DOMAIN@</string>
  19. <key>CFBundleInfoDictionaryVersion</key>
  20. <string>6.0</string>
  21. <key>CFBundleLongVersionString</key>
  22. <string>@APPLICATION_NAME_XML_ESCAPED@ @MIRALL_VERSION_STRING@</string>
  23. <key>CFBundlePackageType</key>
  24. <string>APPL</string>
  25. <key>CFBundleSignature</key>
  26. <string>????</string>
  27. <key>CFBundleVersion</key>
  28. <string>@MIRALL_VERSION_FULL@</string>
  29. <key>CFBundleShortVersionString</key>
  30. <string>@MIRALL_VERSION_STRING@</string>
  31. <key>NSHumanReadableCopyright</key>
  32. <string>(C) 2014-2022 @APPLICATION_VENDOR@</string>
  33. <key>NSSupportsAutomaticGraphicsSwitching</key>
  34. <true/>
  35. <key>NSRequiresAquaSystemAppearance</key>
  36. <false/>
  37. <key>SUShowReleaseNotes</key>
  38. <false/>
  39. <key>SUPublicDSAKeyFile</key>
  40. <string>dsa_pub.pem</string>
  41. <key>SUPublicEDKey</key>
  42. <string>c3RcfDWDayvsYSZW8FhZN1UOJhvPVN30zleb4zOqbtU=</string>
  43. <key>UTExportedTypeDeclarations</key>
  44. <array>
  45. <dict>
  46. <key>UTTypeIdentifier</key>
  47. <string>@APPLICATION_REV_DOMAIN@.VIRTUALFILE</string>
  48. <key>UTTypeTagSpecification</key>
  49. <dict>
  50. <key>public.filename-extension</key>
  51. <string>@APPLICATION_VIRTUALFILE_SUFFIX@</string>
  52. <key>public.mime-type</key>
  53. <string>application/octet-stream</string>
  54. </dict>
  55. <key>UTTypeConformsTo</key>
  56. <array>
  57. <string>public.data</string>
  58. </array>
  59. </dict>
  60. </array>
  61. <key>CFBundleDocumentTypes</key>
  62. <array>
  63. <dict>
  64. <key>CFBundleTypeName</key>
  65. <string>@APPLICATION_EXECUTABLE@ Download Virtual File</string>
  66. <key>CFBundleTypeRole</key>
  67. <string>Editor</string>
  68. <key>LSHandlerRank</key>
  69. <string>Owner</string>
  70. <key>LSItemContentTypes</key>
  71. <array>
  72. <string>@APPLICATION_REV_DOMAIN@.VIRTUALFILE</string>
  73. </array>
  74. </dict>
  75. </array>
  76. <key>CFBundleURLTypes</key>
  77. <array>
  78. <dict>
  79. <key>CFBundleURLName</key>
  80. <string>@APPLICATION_NAME@ Edit Locally</string>
  81. <key>CFBundleURLSchemes</key>
  82. <array>
  83. <string>@APPLICATION_URI_HANDLER_SCHEME@</string>
  84. </array>
  85. </dict>
  86. </array>
  87. </dict>
  88. </plist>