mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 22:50:51 +10:00
macos_installer_handler.py: Add Seed type information
This commit is contained in:
@@ -201,14 +201,20 @@ fi
|
|||||||
return list_disks
|
return list_disks
|
||||||
|
|
||||||
|
|
||||||
class SeedType(enum.Enum):
|
class SeedType(enum.IntEnum):
|
||||||
"""
|
"""
|
||||||
Enum for catalog types
|
Enum for catalog types
|
||||||
|
|
||||||
|
Variants:
|
||||||
|
DeveloperSeed: Developer Beta (Part of the Apple Developer Program)
|
||||||
|
PublicSeed: Public Beta
|
||||||
|
CustomerSeed: AppleSeed Program (Generally mirrors DeveloperSeed)
|
||||||
|
PublicRelease: Public Release
|
||||||
"""
|
"""
|
||||||
DeveloperSeed = 0
|
DeveloperSeed: int = 0
|
||||||
PublicSeed = 1
|
PublicSeed: int = 1
|
||||||
CustomerSeed = 2
|
CustomerSeed: int = 2
|
||||||
PublicRelease = 3
|
PublicRelease: int = 3
|
||||||
|
|
||||||
|
|
||||||
class RemoteInstallerCatalog:
|
class RemoteInstallerCatalog:
|
||||||
|
|||||||
Reference in New Issue
Block a user