Change minimum OS to macOS 12 in Info.plist ()

This should prevent the app from opening on macOS 11 and lower, informing the user that their OS is unsupported.
This commit is contained in:
shinra-electric 2023-11-14 21:20:33 +01:00 committed by GitHub
parent e6e5838916
commit 6bce46621c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -43,7 +43,7 @@
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>
<string>public.app-category.games</string> <string>public.app-category.games</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>
<string>11.0</string> <string>12.0</string>
<key>UTExportedTypeDeclarations</key> <key>UTExportedTypeDeclarations</key>
<array> <array>
<dict> <dict>
@ -155,4 +155,4 @@
<string>200000</string> <string>200000</string>
</dict> </dict>
</dict> </dict>
</plist> </plist>