installer.py: Fix loading newest IAs

This commit is contained in:
Mykola Grymalyuk
2022-05-16 12:08:42 -06:00
parent dc6ad32e2c
commit 77bf82d65a
2 changed files with 2 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
- Add GUI Prompt for booting mismatched OpenCore configs
- ex. Booting MacBookPro8,1 config on MacBookPro11,1
- Add Checksum verification to InstallAssistant.pkg download
- Fix showing latest 12.4 remote installers
- Add error handling to non-standard/malformed OpenCore Boot Path
- Non-Metal Enhancements:
- Add work-around to double clock bug introduced in macOS 12.4

View File

@@ -196,6 +196,7 @@ def only_list_newest_installers(available_apps):
remote_version.pop(0)
if int(remote_version[0]) > remote_version_minor:
remote_version_minor = int(remote_version[0])
remote_version_security = 0 # Reset as new minor version found
if len(remote_version) > 1:
if int(remote_version[1]) > remote_version_security:
remote_version_security = int(remote_version[1])