Info.plist 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>NSPrincipalClass</key>
  6. <string>NSApplication</string>
  7. <key>CFBundleIconFile</key>
  8. <string>app_icon.icns</string>
  9. <key>CFBundlePackageType</key>
  10. <string>APPL</string>
  11. <key>CFBundleGetInfoString</key>
  12. <string>Ladybird</string>
  13. <key>CFBundleSignature</key>
  14. <string></string>
  15. <key>CFBundleExecutable</key>
  16. <string>Ladybird</string>
  17. <key>CFBundleIdentifier</key>
  18. <string>org.ladybird.Ladybird</string>
  19. <key>NSPrincipalClass</key>
  20. <string>NSApplication</string>
  21. <key>NSHighResolutionCapable</key>
  22. <string>True</string>
  23. <key>CFBundleDocumentTypes</key>
  24. <array>
  25. <dict>
  26. <key>CFBundleTypeName</key>
  27. <string>Web documents</string>
  28. <key>CFBundleTypeRole</key>
  29. <string>Viewer</string>
  30. <key>CFBundleTypeIconFile</key>
  31. <string>document.icns</string>
  32. <key>LSItemContentTypes</key>
  33. <array>
  34. <string>public.html</string>
  35. <string>public.xhtml</string>
  36. <string>public.svg-image</string>
  37. </array>
  38. </dict>
  39. <dict>
  40. <key>CFBundleTypeName</key>
  41. <string>Other documents</string>
  42. <key>CFBundleTypeRole</key>
  43. <string>Viewer</string>
  44. <key>CFBundleTypeIconFile</key>
  45. <string>document.icns</string>
  46. <key>CFBundleTypeExtensions</key>
  47. <array>
  48. <string>md</string>
  49. </array>
  50. </dict>
  51. </array>
  52. <key>CFBundleURLTypes</key>
  53. <array>
  54. <dict>
  55. <key>CFBundleURLName</key>
  56. <string>Web site URL</string>
  57. <key>CFBundleURLSchemes</key>
  58. <array>
  59. <string>http</string>
  60. <string>https</string>
  61. </array>
  62. </dict>
  63. <dict>
  64. <key>CFBundleURLName</key>
  65. <string>Local file URL</string>
  66. <key>CFBundleURLSchemes</key>
  67. <array>
  68. <string>file</string>
  69. </array>
  70. </dict>
  71. </array>
  72. </dict>
  73. </plist>