Skip to content

Commit

Permalink
Merge branch 'acidanthera:master' into yaming-network
Browse files Browse the repository at this point in the history
  • Loading branch information
wy414012 authored Jun 7, 2023
2 parents cbdd75e + 6b67099 commit 2dc2bb3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Lilu Changelog
==============
#### v1.6.6
- Fixed macOS 13+ installer detection regression in 1.6.5
- Allow loading on macOS 14 without `-lilubetaall`

#### v1.6.5
- Fixed macOS 13+ recovery and installer detection
Expand Down
1 change: 1 addition & 0 deletions Lilu/Headers/kern_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ enum KernelVersion {
BigSur = 20,
Monterey = 21,
Ventura = 22,
Sonoma = 23,
};

/**
Expand Down
2 changes: 1 addition & 1 deletion Lilu/PrivateHeaders/kern_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Configuration {
/**
* Maxmimum supported kernel version
*/
static constexpr KernelVersion maxKernel {KernelVersion::Ventura};
static constexpr KernelVersion maxKernel {KernelVersion::Sonoma};

/**
* Set once the arguments are parsed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To compile a plugin copy the debug version of Lilu.kext into its directory.
- Add `-liluuseroff` to disable Lilu user patcher (for e.g. dyld_shared_cache manipulations).
- Add `-liluslow` to enable legacy user patcher.
- Add `-lilulowmem` to disable kernel unpack (disables Lilu in recovery mode).
- Add `-lilubeta` to enable Lilu on unsupported OS versions (macOS 13 and below are enabled by default).
- Add `-lilubeta` to enable Lilu on unsupported OS versions (macOS 14 and below are enabled by default).
- Add `-lilubetaall` to enable Lilu and all loaded plugins on unsupported os versions (use _very_ carefully).
- Add `-liluforce` to enable Lilu regardless of the mode, OS, installer, or recovery.
- Add `liludelay=1000` to enable 1 second delay after each print for troubleshooting.
Expand Down

0 comments on commit 2dc2bb3

Please sign in to comment.