Telegram.plist 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>CFBundleExecutable</key>
  6. <string>@output_name@</string>
  7. <key>CFBundleGetInfoString</key>
  8. <string>Telegram Desktop messaging app</string>
  9. <key>CFBundleIconFile</key>
  10. <string>Icon.icns</string>
  11. <key>CFBundleIconName</key>
  12. <string>Icon.icns</string>
  13. <key>CFBundleIdentifier</key>
  14. <string>@bundle_identifier_plist@</string>
  15. <key>CFBundleInfoDictionaryVersion</key>
  16. <string>6.0</string>
  17. <key>CFBundleName</key>
  18. <string>@output_name@</string>
  19. <key>CFBundlePackageType</key>
  20. <string>APPL</string>
  21. <key>CFBundleShortVersionString</key>
  22. <string>@desktop_app_version_string@</string>
  23. <key>CFBundleSignature</key>
  24. <string>????</string>
  25. <key>CFBundleSupportedPlatforms</key>
  26. <array>
  27. <string>MacOSX</string>
  28. </array>
  29. <key>CFBundleURLTypes</key>
  30. <array>
  31. <dict>
  32. <key>CFBundleTypeRole</key>
  33. <string>Viewer</string>
  34. <key>CFBundleURLIconFile</key>
  35. <string>Icon.icns</string>
  36. <key>CFBundleURLName</key>
  37. <string>@bundle_identifier_plist@</string>
  38. <key>CFBundleURLSchemes</key>
  39. <array>
  40. <string>tg</string>
  41. <string>tonsite</string>
  42. </array>
  43. </dict>
  44. </array>
  45. <key>CFBundleVersion</key>
  46. <string>@desktop_app_version_string@</string>
  47. <key>ITSAppUsesNonExemptEncryption</key>
  48. <false/>
  49. <key>LSApplicationCategoryType</key>
  50. <string>public.app-category.social-networking</string>
  51. <key>LSFileQuarantineEnabled</key>
  52. <true/>
  53. <key>LSMinimumSystemVersion</key>
  54. <string>@CMAKE_OSX_DEPLOYMENT_TARGET@</string>
  55. <key>NOTE</key>
  56. <string></string>
  57. <key>NSMicrophoneUsageDescription</key>
  58. <string>We need access to your microphone so that you can record voice messages and make calls.</string>
  59. <key>NSCameraUsageDescription</key>
  60. <string>We need access to your camera so that you can record video messages and make video calls.</string>
  61. <key>NSLocationUsageDescription</key>
  62. <string>We need access to your location so that you can send your current locations.</string>
  63. <key>NSPrincipalClass</key>
  64. <string>NSApplication</string>
  65. <key>NSSupportsAutomaticGraphicsSwitching</key>
  66. <true/>
  67. </dict>
  68. </plist>