Skip to content

Commit

Permalink
#589 idiot.
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Jun 25, 2020
1 parent f8a01b9 commit b3545fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/osax/common.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef SA_COMMON_H
#define SA_COMMON_H

#define OSAX_VERSION "1.0.15"
#define OSAX_VERSION "1.0.16"

#define OSAX_PAYLOAD_SUCCESS 0
#define OSAX_PAYLOAD_NOT_FOUND 1
Expand Down
4 changes: 2 additions & 2 deletions src/osax/payload.m
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ static void init_instances()
{
// TODO(koekeishiya): Do proper version checks with minor and patch version..
NSOperatingSystemVersion os_version = [[NSProcessInfo processInfo] operatingSystemVersion];
if (os_version.minorVersion != 13 && os_version.minorVersion != 14 && os_version.minorVersion != 15) {
NSLog(@"[yabai-sa] spaces functionality is only supported on macOS High Sierra, Mojave and Catalina!");
if (os_version.minorVersion != 13 && os_version.minorVersion != 14 && os_version.minorVersion != 15 && os_version.minorVersion != 16) {
NSLog(@"[yabai-sa] spaces functionality is only supported on macOS High Sierra, Mojave, Catalina and Big Sur!");
return;
}

Expand Down

0 comments on commit b3545fa

Please sign in to comment.