Skip to content

Commit

Permalink
added support for macOS 15.0 (Sequoia)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonelo committed Sep 18, 2024
1 parent 2bcf653 commit 9733d28
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
25 changes: 22 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,24 @@ What are the system requirements

What are the input requirements
-------------------------------
* `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).
* `Install macOS Sequoia.app` or
* `Install macOS Sonoma.app` or
* `Install macOS Ventura.app` or
* `Install macOS Monterey.app` or
* `Install macOS Big Sur.app` or
* `Install macOS Catalina.app` or
* `Install macOS Mojave.app` or
* `Install macOS High Sierra.app` or
* `Install macOS Sierra.app` or
* `Install OS X El Capitan.app` or
* `Install OS X Yosemite.app` or
* `Install OS X Mavericks.app` or
* `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) or
* 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`

> [!TIP]
> 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/).
* 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`
> 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/).

How to configure and install it
Expand Down Expand Up @@ -144,6 +158,11 @@ BuildVersion: 22A380
ProductName: macOS
ProductVersion: 14.0
BuildVersion: 23A344

/Applications/Install macOS Sequoia.app:
ProductName: macOS
ProductVersion: 15.0
BuildVersion: 24A335
```

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.
Expand Down
4 changes: 2 additions & 2 deletions osxapp_vers
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

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

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

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

0 comments on commit 9733d28

Please sign in to comment.