Skip to content

Commit

Permalink
Amethyst 0.21.2 (#1652)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianyh authored Sep 20, 2024
1 parent c43f0ba commit 88a2cd7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Amethyst.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 110;
CURRENT_PROJECT_VERSION = 112;
DEAD_CODE_STRIPPING = YES;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
Expand All @@ -1030,7 +1030,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.21.0;
MARKETING_VERSION = 0.21.2;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++14";
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"DEBUG\"";
Expand All @@ -1052,7 +1052,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 110;
CURRENT_PROJECT_VERSION = 112;
DEAD_CODE_STRIPPING = YES;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 82P2XLB4UH;
Expand All @@ -1072,7 +1072,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.21.0;
MARKETING_VERSION = 0.21.2;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu17 gnu++14";
ONLY_ACTIVE_ARCH = NO;
Expand Down
4 changes: 2 additions & 2 deletions Amethyst/Model/Window.swift
Original file line number Diff line number Diff line change
Expand Up @@ -374,10 +374,10 @@ extension AXWindow: WindowType {

func move(toSpace spaceID: CGSSpaceID) {
let osVersion = ProcessInfo.processInfo.operatingSystemVersion
if ((osVersion.majorVersion >= 15) ||
if (osVersion.majorVersion >= 15) ||
(osVersion.majorVersion == 14 && osVersion.minorVersion >= 5) ||
(osVersion.majorVersion == 13 && osVersion.minorVersion >= 6) ||
(osVersion.majorVersion == 12 && osVersion.minorVersion >= 7)){
(osVersion.majorVersion == 12 && osVersion.minorVersion >= 7) {
/*
See:
- https://github.com/ianyh/Amethyst/issues/1643
Expand Down
2 changes: 1 addition & 1 deletion fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
### mac

```sh
fastlane mac
[bundle exec] fastlane mac
```


Expand Down

0 comments on commit 88a2cd7

Please sign in to comment.