Skip to content

Commit

Permalink
koekeishiya#589 support macOS Big Sur Build 20A5354i
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya authored and unrevre committed Aug 24, 2020
1 parent 2945761 commit 5ca405d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Fixed an issue that caused a window to not become unmanaged when a space with a single window changed to float [#586](https://github.com/koekeishiya/yabai/issues/586)
- Restore opacity back to full if *window_opacity* is disabled [#585](https://github.com/koekeishiya/yabai/issues/585)
- Prevent *window_opacity_duration* from being used on Catalina, because of an Apple bug [#277](https://github.com/koekeishiya/yabai/issues/277)
- Update scripting-addition to support macOS Big Sur 10.16 Build 20A5343i [#589](https://github.com/koekeishiya/yabai/issues/589)
- Update scripting-addition to support macOS Big Sur 11.0 Build 20A5354i [#589](https://github.com/koekeishiya/yabai/issues/589)
- Border windows should not have shadows [#617](https://github.com/koekeishiya/yabai/issues/617)
- *external_bar* should not have to be set before regular padding [#615](https://github.com/koekeishiya/yabai/issues/615)
- Adjust reported mouse location to use when synthesizing events for ffm autofocus [#637](https://github.com/koekeishiya/yabai/issues/637)
Expand Down
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.18"
#define OSAX_VERSION "1.0.19"

#define OSAX_PAYLOAD_SUCCESS 0
#define OSAX_PAYLOAD_NOT_FOUND 1
Expand Down
8 changes: 4 additions & 4 deletions src/osax/payload.m
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ uint64_t get_dock_spaces_offset(NSOperatingSystemVersion os_version) {

uint64_t get_dppm_offset(NSOperatingSystemVersion os_version) {
if (os_version.majorVersion == 11) {
return 0x8000;
return 0x7000;
} else if (os_version.minorVersion == 15) {
return 0x6000;
} else if (os_version.minorVersion == 14) {
Expand All @@ -216,7 +216,7 @@ uint64_t get_add_space_offset(NSOperatingSystemVersion os_version) {

uint64_t get_remove_space_offset(NSOperatingSystemVersion os_version) {
if (os_version.majorVersion == 11) {
return 0x2F9000;
return 0x2F0000;
} else if (os_version.minorVersion == 15) {
return 0x320000;
} else if (os_version.minorVersion == 14) {
Expand All @@ -229,7 +229,7 @@ uint64_t get_remove_space_offset(NSOperatingSystemVersion os_version) {

uint64_t get_move_space_offset(NSOperatingSystemVersion os_version) {
if (os_version.majorVersion == 11) {
return 0x2E9000;
return 0x2E0000;
} else if (os_version.minorVersion == 15) {
return 0x310000;
} else if (os_version.minorVersion == 14) {
Expand All @@ -248,7 +248,7 @@ uint64_t get_move_space_offset(NSOperatingSystemVersion os_version) {

uint64_t get_set_front_window_offset(NSOperatingSystemVersion os_version) {
if (os_version.majorVersion == 11) {
return 0x53000;
return 0x52000;
} else if (os_version.minorVersion == 15) {
return 0x53000;
} else if (os_version.minorVersion == 14) {
Expand Down

0 comments on commit 5ca405d

Please sign in to comment.