mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-13 20:28:21 +10:00
AirPlay to Mac support on Skylake - Coffeelake Macs
This commit is contained in:
19
Build-App.command
Executable file
19
Build-App.command
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
printf "OpenCore-Patcher.app Builder"
|
||||
printf "\nNot supported by end users, please use prebuilt binaries"
|
||||
printf "\neither on Github Release or Nightly Builds from Github Actions:"
|
||||
printf "\n\nOffical Release: \n- https://github.com/dortania/OpenCore-Legacy-Patcher/releases"
|
||||
printf "\n\nNightly Builds: \n- https://nightly.link/dortania/OpenCore-Legacy-Patcher/workflows/build-app/main/OpenCore-Patcher.app.zip\n\n"
|
||||
read -n 1 -s -r -p "Press any key to continue: "
|
||||
if which python3 > /dev/null 2>&1;
|
||||
then
|
||||
printf "\nPython found, continuing"
|
||||
printf "\nUpdating Requests and pyinstaller\n"
|
||||
pip3 install --upgrade pyinstaller requests
|
||||
printf "\nBuilding app"
|
||||
pyinstaller OpenCore-Patcher.spec
|
||||
./after_pyinstaller.sh
|
||||
open ./dist/
|
||||
else
|
||||
printf "\nPython is missing! Cannot build OpenCore-Patcher.app\n"
|
||||
fi
|
||||
@@ -13,6 +13,8 @@
|
||||
- Increment Binaries
|
||||
- Lilu 1.5.4 rolling (f69a972 - 06-20-2021)
|
||||
- RestrictEvents 1.0.3 rolling (3773ce2 - 06-20-2021)
|
||||
- SidecarFixup 1.0.2 rolling (2c29166 - 06-21-2021)
|
||||
- Allow AirPlay to Mac support on Skylake - Coffeelake Macs
|
||||
|
||||
## 0.1.9
|
||||
- Fix incorrect AMFI and SIP detection
|
||||
|
||||
@@ -462,9 +462,16 @@ SidecarPatch = [
|
||||
"MacBookPro11,4",
|
||||
"MacBookPro11,5",
|
||||
"MacBookPro12,1",
|
||||
"MacBookPro13,1",
|
||||
"MacBookPro13,2",
|
||||
"MacBookPro13,3",
|
||||
"MacBookPro14,1",
|
||||
"MacBookPro14,2",
|
||||
"MacBookPro14,3",
|
||||
"Macmini6,1",
|
||||
"Macmini6,2",
|
||||
"Macmini7,1",
|
||||
"Macmini8,1",
|
||||
"iMac13,1",
|
||||
"iMac13,2",
|
||||
"iMac13,3",
|
||||
@@ -474,6 +481,8 @@ SidecarPatch = [
|
||||
"iMac15,1",
|
||||
"iMac16,1",
|
||||
"iMac16,2",
|
||||
"iMac17,1",
|
||||
"iMac18,1",
|
||||
"MacPro5,1",
|
||||
"MacPro6,1",
|
||||
"Dortania1,1",
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user