Skip to content

Commit

Permalink
Update version headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Coopydood committed Jun 19, 2024
1 parent 48c1141 commit 2279bd1
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 19 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
global baseSystemNotifArmed

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0
apFilePath = ""
procFlow = 1
Expand Down
4 changes: 2 additions & 2 deletions scripts/autopilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
args = parser.parse_args()

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0

###############################
Expand Down
8 changes: 7 additions & 1 deletion scripts/drpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@

projectVer = "Powered by ULTMOS v"+version

if "Beta" in osVer: osVer = osVer.replace(" Beta","")
if osVer is not None:
if "Beta" in osVer: osVer = osVer.replace(" Beta","")

if osVer is not None and osVer == "Sierra" or osVer == "High Sierra" or osVer == "Mojave" or osVer == "Catalina" or osVer == "Big Sur" or osVer == "Monterey" or osVer == "Ventura" or osVer == "Sonoma" or osVer == "Sequoia":
osName = "macOS "+osVer
Expand All @@ -91,8 +92,13 @@
if osOpt != "macos-highsierra" and osOpt != "macos-mojave" and osOpt != "macos-catalina" and osOpt != "macos-bigsur" and osOpt != "macos-monterey" and osOpt != "macos-ventura" and osOpt != "macos-sonoma" and osOpt != "macos-sequoia" and osOpt != "macos-sierra" and osOpt != "macos-elcapitan" and osOpt != "macos-yosemite" and osOpt != "macos-mavericks" and osOpt != "macos-mountainlion" and osOpt != "macos-lion" and osOpt != "macos-snowleopard" and osOpt != "macos-leopard":
osOpt = "macos-unknown" # arm large image to use the unknown asset if valid macOS version can't be detected

if osName == "macOS Sequoia": osName = "macOS Sequoia Beta"

osName1 = osName




if show != "default":
smolImage = osOpt
osOpt = show
Expand Down
4 changes: 2 additions & 2 deletions scripts/extras.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
sys.path.insert(0, 'scripts')

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0

version = open("./.version")
Expand Down
4 changes: 2 additions & 2 deletions scripts/extras/backup-assist.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@


detectChoice = 1
latestOSName = "Ventura"
latestOSVer = "13"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0

class color:
Expand Down
4 changes: 2 additions & 2 deletions scripts/extras/boot-args.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
from cpydColours import color

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0
bypassMenus = 0

Expand Down
4 changes: 2 additions & 2 deletions scripts/extras/cpyd-tui.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from cpydColours import color

detectChoice = 1
latestOSName = "Ventura"
latestOSVer = "13"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0


Expand Down
4 changes: 2 additions & 2 deletions scripts/extras/dump-vbios.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from cpydColours import color

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0


Expand Down
4 changes: 2 additions & 2 deletions scripts/extras/gpu-check.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
args = parser.parse_args()

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0


Expand Down
4 changes: 2 additions & 2 deletions scripts/repo-update.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
from cpydColours import color

detectChoice = 1
latestOSName = "Sonoma"
latestOSVer = "14"
latestOSName = "Sequoia"
latestOSVer = "15"
runs = 0
noDelta = 0

Expand Down

0 comments on commit 2279bd1

Please sign in to comment.