Allow Setapp to update your app on macOS 13+

With macOS 13+, Apple changes some security policies. For the Setapp procedures, it means that you must authorize Setapp to update your apps. To allow Setapp to update your app on macOS 13 (Ventura) and higher, please add the following code to your app's Info.plist file:

<key>NSUpdateSecurityPolicy</key>
  <dict>
    <key>AllowProcesses</key>
    <dict>
      <key>MEHY5QF425</key>
      <array>
        <string>com.setapp.DesktopClient.SetappAgent</string>
      </array>
    </dict>
  </dict>
1410

When you add this code, you announce to macOS that Setapp (com.setapp.DesktopClient.SetappAgent) is authorized to update your app.