From 2b6fc4faf618eed5b4fda74a0b89ae95c66ed098 Mon Sep 17 00:00:00 2001 From: Andrey1970 Date: Sat, 10 Jun 2023 12:49:06 +0300 Subject: [PATCH 1/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86a0edd..41b34fc 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ _Note_: Apple CPU identifier must be `0x0F01` for 8 core CPUs or higher and `0x0 #### Boot arguments - `-revoff` (or `-liluoff`) to disable - `-revdbg` (or `-liludbgall`) to enable verbose logging (in DEBUG builds) -- `-revbeta` (or `-lilubetaall`) to enable on macOS older than 10.8 or newer than 13 +- `-revbeta` (or `-lilubetaall`) to enable on macOS older than 10.8 or newer than 14 - `-revproc` to enable verbose process logging (in DEBUG builds) - `revpatch=value` to enable patching as comma separated options. Default value is `auto`. - `memtab` - enable memory tab in System Information on MacBookAir and MacBookPro10,x platforms From 1549a6612c44bb36c3179b62c19ae2986916320a Mon Sep 17 00:00:00 2001 From: Dhinak G <17605561+dhinakg@users.noreply.github.com> Date: Sun, 11 Jun 2023 12:59:15 -0400 Subject: [PATCH 2/6] Add note about remaining badges (#14) --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 41b34fc..890cdca 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,23 @@ _Note_: Apple CPU identifier must be `0x0F01` for 8 core CPUs or higher and `0x0 _Note_: `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revpatch`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpu`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpuname` and `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revblock` NVRAM variables work the same as the boot arguments, but have lower priority. +#### Removing badges + +If using RestrictEvents to block PCI and RAM configuration notifications, they will go away, but the alert in the Apple menu will stay. To get rid of this alert, run the following commands: + +``` +defaults delete com.apple.SlotNotificationsPref memoryBadgeCount +defaults delete com.apple.SlotNotificationsPref expansionBadgeCount +``` + + + #### Credits - [Apple](https://www.apple.com) for macOS - [vit9696](https://github.com/vit9696) for [Lilu.kext](https://github.com/vit9696/Lilu) and great help in implementing some features From 954bd4e21093bf059a15f8692e086586d5cb2dc6 Mon Sep 17 00:00:00 2001 From: Andrey1970AppleLife Date: Fri, 16 Jun 2023 00:07:35 +0300 Subject: [PATCH 3/6] Bump version --- RestrictEvents.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RestrictEvents.xcodeproj/project.pbxproj b/RestrictEvents.xcodeproj/project.pbxproj index 82cba8b..4dc2110 100644 --- a/RestrictEvents.xcodeproj/project.pbxproj +++ b/RestrictEvents.xcodeproj/project.pbxproj @@ -379,7 +379,7 @@ MODULE_NAME = as.vit9696.RestrictEvents; MODULE_START = "$(PRODUCT_NAME)_kern_start"; MODULE_STOP = "$(PRODUCT_NAME)_kern_stop"; - MODULE_VERSION = 1.1.2; + MODULE_VERSION = 1.1.3; OTHER_CFLAGS = ( "-mmmx", "-msse", @@ -428,7 +428,7 @@ MODULE_NAME = as.vit9696.RestrictEvents; MODULE_START = "$(PRODUCT_NAME)_kern_start"; MODULE_STOP = "$(PRODUCT_NAME)_kern_stop"; - MODULE_VERSION = 1.1.2; + MODULE_VERSION = 1.1.3; OTHER_CFLAGS = ( "-mmmx", "-msse", From 722681a0ec616c1c7a9d442448053a94a704841a Mon Sep 17 00:00:00 2001 From: PMheart <17109513+PMheart@users.noreply.github.com> Date: Sun, 9 Jul 2023 12:57:49 +0200 Subject: [PATCH 4/6] Revert "Add note about remaining badges (#14)" This reverts commit 1549a6612c44bb36c3179b62c19ae2986916320a. --- README.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/README.md b/README.md index 890cdca..41b34fc 100644 --- a/README.md +++ b/README.md @@ -43,23 +43,6 @@ _Note_: Apple CPU identifier must be `0x0F01` for 8 core CPUs or higher and `0x0 _Note_: `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revpatch`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpu`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpuname` and `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revblock` NVRAM variables work the same as the boot arguments, but have lower priority. -#### Removing badges - -If using RestrictEvents to block PCI and RAM configuration notifications, they will go away, but the alert in the Apple menu will stay. To get rid of this alert, run the following commands: - -``` -defaults delete com.apple.SlotNotificationsPref memoryBadgeCount -defaults delete com.apple.SlotNotificationsPref expansionBadgeCount -``` - - - #### Credits - [Apple](https://www.apple.com) for macOS - [vit9696](https://github.com/vit9696) for [Lilu.kext](https://github.com/vit9696/Lilu) and great help in implementing some features From 584df349752953ad46cd299eb2d674651fb8daf4 Mon Sep 17 00:00:00 2001 From: PMheart <17109513+PMheart@users.noreply.github.com> Date: Sun, 9 Jul 2023 18:42:47 +0200 Subject: [PATCH 5/6] Revert "Revert "Add note about remaining badges (#14)"" This reverts commit 722681a0ec616c1c7a9d442448053a94a704841a. --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 41b34fc..890cdca 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,23 @@ _Note_: Apple CPU identifier must be `0x0F01` for 8 core CPUs or higher and `0x0 _Note_: `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revpatch`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpu`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpuname` and `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revblock` NVRAM variables work the same as the boot arguments, but have lower priority. +#### Removing badges + +If using RestrictEvents to block PCI and RAM configuration notifications, they will go away, but the alert in the Apple menu will stay. To get rid of this alert, run the following commands: + +``` +defaults delete com.apple.SlotNotificationsPref memoryBadgeCount +defaults delete com.apple.SlotNotificationsPref expansionBadgeCount +``` + + + #### Credits - [Apple](https://www.apple.com) for macOS - [vit9696](https://github.com/vit9696) for [Lilu.kext](https://github.com/vit9696/Lilu) and great help in implementing some features From 9f45386b846c48de83a2df33837596713a43f384 Mon Sep 17 00:00:00 2001 From: PMheart <17109513+PMheart@users.noreply.github.com> Date: Sun, 9 Jul 2023 18:43:47 +0200 Subject: [PATCH 6/6] Update note on removing badges --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 890cdca..fa70943 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ _Note_: Apple CPU identifier must be `0x0F01` for 8 core CPUs or higher and `0x0 _Note_: `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revpatch`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpu`, `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revcpuname` and `4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102:revblock` NVRAM variables work the same as the boot arguments, but have lower priority. -#### Removing badges +#### Removing badges (This works until macOS 13) If using RestrictEvents to block PCI and RAM configuration notifications, they will go away, but the alert in the Apple menu will stay. To get rid of this alert, run the following commands: