mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-20 14:10:51 +10:00
Resolves Install USB Creation using incorrect installer
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
# OpenCore Legacy Patcher changelog
|
# OpenCore Legacy Patcher changelog
|
||||||
|
|
||||||
## 0.3.4
|
## 0.3.4
|
||||||
|
- Resolves Install USB Creation using incorrect installer
|
||||||
|
|
||||||
## 0.3.3
|
## 0.3.3
|
||||||
- Disable Asset Caching support with spoofless approach
|
- Disable Asset Caching support with spoofless approach
|
||||||
|
|||||||
@@ -1137,7 +1137,7 @@ B. Exit
|
|||||||
avalible_installers = installer.list_local_macOS_installers()
|
avalible_installers = installer.list_local_macOS_installers()
|
||||||
if avalible_installers:
|
if avalible_installers:
|
||||||
for app in avalible_installers:
|
for app in avalible_installers:
|
||||||
options.append([f"{avalible_installers[app]['Short Name']}: {avalible_installers[app]['Version']} ({avalible_installers[app]['Build']})", lambda: self.list_disks(avalible_installers[app]['Path'])])
|
options.append([f"{avalible_installers[app]['Short Name']}: {avalible_installers[app]['Version']} ({avalible_installers[app]['Build']})", lambda x=app: self.list_disks(avalible_installers[x]['Path'])])
|
||||||
for option in options:
|
for option in options:
|
||||||
menu.add_menu_option(option[0], function=option[1])
|
menu.add_menu_option(option[0], function=option[1])
|
||||||
response = menu.start()
|
response = menu.start()
|
||||||
|
|||||||
Reference in New Issue
Block a user