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

Adjust constant to load on Monterey - Sequoia #13

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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 AdvancedMap.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 15.0;
MACOSX_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -350,7 +350,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 15.0;
MACOSX_DEPLOYMENT_TARGET = 12.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
Expand All @@ -363,7 +363,7 @@
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4.0.0;
CURRENT_PROJECT_VERSION = 4.0.1;
DEAD_CODE_STRIPPING = YES;
DEPLOYMENT_POSTPROCESSING = YES;
GCC_ENABLE_KERNEL_DEVELOPMENT = NO;
Expand All @@ -382,7 +382,7 @@
"$(inherited)",
"$(PROJECT_DIR)/MacKernelSDK/Library/x86_64",
);
MARKETING_VERSION = 4.0.0;
MARKETING_VERSION = 4.0.1;
MODULE_NAME = com.notjosh.AdvancedMap;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
Expand Down Expand Up @@ -417,7 +417,7 @@
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4.0.0;
CURRENT_PROJECT_VERSION = 4.0.1;
DEAD_CODE_STRIPPING = YES;
DEPLOYMENT_POSTPROCESSING = YES;
GCC_ENABLE_KERNEL_DEVELOPMENT = NO;
Expand All @@ -435,7 +435,7 @@
"$(PROJECT_DIR)/MacKernelSDK/Library/x86_64",
);
LLVM_LTO = YES;
MARKETING_VERSION = 4.0.0;
MARKETING_VERSION = 4.0.1;
MODULE_NAME = com.notjosh.AdvancedMap;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
Expand Down
2 changes: 1 addition & 1 deletion AdvancedMap/kern_start.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ PluginConfiguration ADDPR(config) {
arrsize(bootargDebug),
bootargBeta,
arrsize(bootargBeta),
KernelVersion::Sequoia,
KernelVersion::Monterey,
KernelVersion::Sequoia,
[]() {
advancedMap.init();
Expand Down
13 changes: 1 addition & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Advanced maps were added in macOS 12 Monterey, and worked fine on Intel hardware in the early betas. Later betas blocked the support. I suspect Apple aren't fully testing it on Intel, so perhaps not all hardware is supported, but it works well for me.

It _seems_ like it requires a dGPU (see below for support). Please let me know if it works/doesn't work for you!

## Example Screenshots

### 3D Globe
Expand All @@ -20,19 +18,10 @@ It _seems_ like it requires a dGPU (see below for support). Please let me know i

![](https://i.imgur.com/NCIxf0D.png)

## Confirmed Supported GPUs

- AMD RX 570
- AMD RX 5500XT
- AMD RX 5700XT
- AMD RX 6600XT
- AMD RX 6700XT
- AMD RX 6950XT

### Configuration

- Add `-advmapoff` to disable AdvancedMap
- Add `-advmapbeta` to enable AdvancedMap on unsupported OS versions (15.x is supported by
- Add `-advmapbeta` to enable AdvancedMap on unsupported OS versions (12.x - 15.x are supported by
default)

### Downloads
Expand Down