Skip to content

Commit 48ee073

Browse files
committed
update constants for macOS 27
1 parent a529a7a commit 48ee073

5 files changed

Lines changed: 9 additions & 3 deletions

File tree

ci_tooling/installer_backups/macOS_Installer_Backup.command

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class InstallerBackup:
4545
os_data.os_data.sonoma,
4646
os_data.os_data.sequoia,
4747
os_data.os_data.tahoe,
48+
os_data.os_data.golden_gate
4849
],
4950
first_run: bool = False
5051
) -> None:
@@ -61,6 +62,7 @@ class InstallerBackup:
6162
os_data.os_data.sonoma: Path(self._directory, "14 Sonoma"),
6263
os_data.os_data.sequoia: Path(self._directory, "15 Sequoia"),
6364
os_data.os_data.tahoe: Path(self._directory, "26 Tahoe"),
65+
os_data.os_data.golden_gate: Path(self._directory, "27 Golden Gate"),
6466
}
6567

6668
for os_version in self._supported_oses:

oclp_r/datasets/os_data.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ class os_data(enum.IntEnum):
3131
sonoma = 23
3232
sequoia = 24
3333
tahoe = 25
34-
macos_next= 26 # Unknown macOS
34+
golden_gate= 26
35+
macos_next= 27 # Unknown macOS
3536
max_os = 99
3637

3738

oclp_r/sucatalog/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class CatalogVersion(StrEnum):
2727
2828
Used for generating sucatalog URLs
2929
"""
30+
GOLDEN_GATE: str = "27"
3031
TAHOE: str = "26"
3132
SEQUOIA: str = "15"
3233
SONOMA: str = "14"

oclp_r/wx_gui/gui_KDK_download.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def _display_available_installers(self, event: wx.Event = None, show_full: bool
180180
id = wx.NewIdRef()
181181
self.list = wx.ListCtrl(self.frame_modal, id, style=wx.LC_REPORT | wx.LC_SINGLE_SEL | wx.LC_NO_HEADER | wx.BORDER_SUNKEN)
182182
self.list.SetSmallImages(bundles)
183-
self.list.InsertColumn(0, "name", width=160)
183+
self.list.InsertColumn(0, "name", width=200)
184184
self.list.InsertColumn(1, "version", width=50)
185185
self.list.InsertColumn(2, "build", width=75)
186186
self.list.InsertColumn(3, "size", width=85)
@@ -192,6 +192,7 @@ def _display_available_installers(self, event: wx.Event = None, show_full: bool
192192
locale.setlocale(locale.LC_TIME, '')
193193
logging.info(f"{self.trans['Available installers on Dortania']} ({'All entries' if show_full else 'Latest only'}):")
194194
xnu_name={
195+
"27":"Golden Gate",
195196
"26":"Tahoe",
196197
"15":"Sequoia",
197198
"14":"Sonoma",

oclp_r/wx_gui/gui_metallib_download.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ def _display_available_installers(self, event: wx.Event = None, show_full: bool
182182
locale.setlocale(locale.LC_TIME, '')
183183
logging.info(f"{self.trans['Available installers on Github']} ({self.trans['All entries'] if show_full else self.trans['Latest only']}):")
184184
xnu_name={
185-
"26":"Tahoe Beta",
185+
"27":"Golden Gate",
186+
"26":"Tahoe",
186187
"15":"Sequoia",
187188
"14":"Sonoma",
188189
"13":"Ventura",

0 commit comments

Comments
 (0)