Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update for 11.5 #6

Merged
merged 1 commit into from
Jul 28, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/osax/arm64/payload.m
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static uint64_t get_dock_spaces_addr(NSOperatingSystemVersion ver) {
return 0x1004264D0ULL;
}

if (ver.minorVersion == 4) {
if (ver.minorVersion == 4 || ver.minorVersion == 5) {
return 0x100426500ULL;
}
} else if (ver.majorVersion == 12) {
Expand Down Expand Up @@ -107,7 +107,7 @@ static uint64_t get_dppm_addr(NSOperatingSystemVersion ver) {
return 0x100426550ULL;
}

if (ver.minorVersion == 4) {
if (ver.minorVersion == 4 || ver.minorVersion == 5) {
return 0x100426580ULL;
}
} else if (ver.majorVersion == 12) {
Expand All @@ -123,7 +123,7 @@ static uint64_t get_add_space_addr(NSOperatingSystemVersion ver) {
return 0x100225DE0ULL;
}

if (ver.minorVersion == 4) {
if (ver.minorVersion == 4 || ver.minorVersion == 5) {
return 0x1002259D0ULL;
}
} else if (ver.majorVersion == 12) {
Expand All @@ -139,7 +139,7 @@ static uint64_t get_remove_space_addr(NSOperatingSystemVersion ver) {
return 0x1002D6A58ULL;
}

if (ver.minorVersion == 4) {
if (ver.minorVersion == 4 || ver.minorVersion == 5) {
return 0x1002D668CULL;
}
} else if (ver.majorVersion == 12) {
Expand All @@ -155,7 +155,7 @@ static uint64_t get_move_space_addr(NSOperatingSystemVersion ver) {
return 0x1002C8ED0ULL;
}

if (ver.minorVersion == 4) {
if (ver.minorVersion == 4 || ver.minorVersion == 5) {
return 0x1002C8B04ULL;
}
} else if (ver.majorVersion == 12) {
Expand All @@ -171,7 +171,7 @@ static uint64_t get_set_front_window_addr(NSOperatingSystemVersion ver) {
return 0x10004FBD8ULL;
}

if (ver.minorVersion == 4) {
if (ver.minorVersion == 4 || ver.minorVersion == 5) {
return 0x10004F5FCULL;
}
} else if (ver.majorVersion == 12) {
Expand Down