mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-23 03:20:16 +10:00
macos_installer_handler.py: List n-3 apps
Thanks @jazzzny for idea and implementation
This commit is contained in:
@@ -566,6 +566,11 @@ class RemoteInstallerCatalog:
|
|||||||
newest_apps.pop(ia)
|
newest_apps.pop(ia)
|
||||||
break
|
break
|
||||||
|
|
||||||
|
# Remove EOL versions (n-3)
|
||||||
|
for ia in list(newest_apps):
|
||||||
|
if newest_apps[ia]["Version"].split('.')[0] < supported_versions[-3]:
|
||||||
|
newest_apps.pop(ia)
|
||||||
|
|
||||||
return newest_apps
|
return newest_apps
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user