We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ad3542 commit 7b3a5f1Copy full SHA for 7b3a5f1
Changelog.md
@@ -1,5 +1,8 @@
1
CryptexFixup Changelog
2
======================
3
+#### v1.0.3
4
+- Added constants for macOS 15 support
5
+
6
#### v1.0.2
7
- Added constants for macOS 14 support
8
CryptexFixup/kern_start.cpp
@@ -111,7 +111,7 @@ static void pluginStart() {
111
SYSLOG(MODULE_SHORT, "failed to route cs validation pages");
112
});
113
}
114
-
115
// Kernel Space Patcher (APFS.kext)
116
if (getKernelVersion() >= KernelVersion::Ventura) {
117
if (checkKernelArgument("-crypt_allow_hash_validation")) {
@@ -148,6 +148,6 @@ PluginConfiguration ADDPR(config) {
148
bootargBeta,
149
arrsize(bootargBeta),
150
KernelVersion::BigSur,
151
- KernelVersion::Sonoma,
+ KernelVersion::Sequoia,
152
pluginStart
153
};
0 commit comments