diff options
author | shinra-electric <50119606+shinra-electric@users.noreply.github.com> | 2023-11-14 21:20:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 21:20:33 +0100 |
commit | 6bce46621c9952bdc697c1977cb866b48cbfad58 (patch) | |
tree | 9c677429716c81485519ec6d25ff94e3e7fce4ff | |
parent | e6e58389164fe7cb6894dfd6e8ac1cc7d9ec7d11 (diff) |
Change minimum OS to macOS 12 in Info.plist (#5925)1.1.1081
This should prevent the app from opening on macOS 11 and lower, informing the user that their OS is unsupported.
-rw-r--r-- | distribution/macos/Info.plist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist index 6e068ba2..51c71eaa 100644 --- a/distribution/macos/Info.plist +++ b/distribution/macos/Info.plist @@ -43,7 +43,7 @@ <key>LSApplicationCategoryType</key> <string>public.app-category.games</string> <key>LSMinimumSystemVersion</key> - <string>11.0</string> + <string>12.0</string> <key>UTExportedTypeDeclarations</key> <array> <dict> @@ -155,4 +155,4 @@ <string>200000</string> </dict> </dict> -</plist>
\ No newline at end of file +</plist> |