Merge remote-tracking branch 'origin/tracking' into custom

This commit is contained in:
roytam1 2022-06-06 08:58:26 +08:00
commit 79792a91ee
11 changed files with 255 additions and 41 deletions

View file

@ -89,7 +89,7 @@ NS_IMETHODIMP nsNativeAppSupportCocoa::Start(bool *_retval)
// alert here. But the alert's message and buttons would require custom
// localization. So (for now at least) we just log an English message
// to the console before quitting.
if (major < 10 || minor < 6) {
if (major < 10 || (major == 10 && minor < 7)) {
NSLog(@"Minimum OS version requirement not met!");
return NS_OK;
}