Skip to content

Commit 9733d28

Browse files
committed
added support for macOS 15.0 (Sequoia)
1 parent 2bcf653 commit 9733d28

File tree

2 files changed

+24
-5
lines changed

2 files changed

+24
-5
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,24 @@ What are the system requirements
1515

1616
What are the input requirements
1717
-------------------------------
18-
* `Install macOS Sonoma.app`, `Install macOS Ventura.app`, `Install macOS Monterey.app`, `Install macOS Big Sur.app`, `Install macOS Catalina.app`, `Install macOS Mojave.app`, `Install macOS High Sierra.app`, `Install macOS Sierra.app`, `Install OS X El Capitan.app`, `Install OS X Yosemite.app`, `Install OS X Mavericks.app`, `Install OS X Mountain Lion.app`, or `Install Mac OS X Lion.app` from the Apple App Store (1st public version or any update release) or on a bootable macOS install media that has been created by Apple's `createinstallmedia`. See also [How to create a bootable installer for macOS?](https://support.apple.com/en-us/HT201372).
18+
* `Install macOS Sequoia.app` or
19+
* `Install macOS Sonoma.app` or
20+
* `Install macOS Ventura.app` or
21+
* `Install macOS Monterey.app` or
22+
* `Install macOS Big Sur.app` or
23+
* `Install macOS Catalina.app` or
24+
* `Install macOS Mojave.app` or
25+
* `Install macOS High Sierra.app` or
26+
* `Install macOS Sierra.app` or
27+
* `Install OS X El Capitan.app` or
28+
* `Install OS X Yosemite.app` or
29+
* `Install OS X Mavericks.app` or
30+
* `Install OS X Mountain Lion.app` or
31+
* `Install Mac OS X Lion.app` from the Apple App Store (1st public version or any update release) or on a bootable macOS install media that has been created by Apple's `createinstallmedia`. See also [How to create a bootable installer for macOS?](https://support.apple.com/en-us/HT201372) or
32+
* a mounted Mac OS X Install CD/DVD image such as `Mac OS X Install DVD`, `Mac OS X Install CD` or `Mac OS X Install Disk`
33+
1934
> [!TIP]
20-
> It also works on bootable macOS install media that has been created and patched by the [OpenCore Legacy Patcher](https://dortania.github.io/OpenCore-Legacy-Patcher/).
21-
* Alternatively, a mounted Mac OS X Install CD/DVD image such as `Mac OS X Install DVD`, `Mac OS X Install CD` or `Mac OS X Install Disk`
35+
> It also works with bootable macOS install media that has been created and patched by the [OpenCore Legacy Patcher](https://dortania.github.io/OpenCore-Legacy-Patcher/).
2236
2337

2438
How to configure and install it
@@ -144,6 +158,11 @@ BuildVersion: 22A380
144158
ProductName: macOS
145159
ProductVersion: 14.0
146160
BuildVersion: 23A344
161+
162+
/Applications/Install macOS Sequoia.app:
163+
ProductName: macOS
164+
ProductVersion: 15.0
165+
BuildVersion: 24A335
147166
```
148167

149168
If you specify program parameters, the script prints out product name, product version and build version for each Install OS X .app folder that you have specified.

osxapp_vers

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# osxapp_vers 1.14
3+
# osxapp_vers 1.15
44
# Get product name, product version and build version of [Mac] OS X
55
# from "Install*OS X*.app", "Install macOS *.app" or "Mac OS X install DVD"
66
#
@@ -43,7 +43,7 @@ function print_xml_info {
4343

4444
# Supported OS names for the "Install *OS X <name>.app", resp.
4545
# "Install macOS <name>.app", update list if applicable
46-
SUPPORTED_OS=('Sonoma' 'Ventura' 'Monterey' 'Big Sur' 'Catalina' 'Mojave' 'High Sierra' 'Sierra' 'El Capitan' 'Yosemite' 'Mavericks' 'Mountain Lion' 'Lion')
46+
SUPPORTED_OS=('Sequoia' 'Sonoma' 'Ventura' 'Monterey' 'Big Sur' 'Catalina' 'Mojave' 'High Sierra' 'Sierra' 'El Capitan' 'Yosemite' 'Mavericks' 'Mountain Lion' 'Lion')
4747

4848
# Do we want verbose output?
4949
if [ -z "$DEBUG" ]; then

0 commit comments

Comments
 (0)