Skip to content

Commit

Permalink
nvidia_kepler.py: Fix XNU minor comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Sep 15, 2024
1 parent 366bb6b commit 2ce1f1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 2.1.0
- Fix MacBookPro13,3 listing 'Available patches' after having installed all applicable patches
- Fix Nvidia Tesla patches not installing on Monterey and older
- Fix Nvidia Tesla and Kepler patches not installing on Monterey (and older if applicable)

## 2.0.0
- Set `AssociatedBundleIdentifiers` property in launch services as an array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def native_os(self) -> bool:
return True

if self._xnu_major == os_data.monterey:
if self._xnu_minor > 0:
if self._xnu_minor < 0: # 12.0 Beta 8
return True
if self._os_build != "21A5522h": # 12.0 Beta 7
return True
Expand Down

0 comments on commit 2ce1f1c

Please sign in to comment.