mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-14 04:38:20 +10:00
Sync PatcherSupportPkg
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
#!/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
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
## 0.2.0
|
||||
- Refactor device probe logic
|
||||
- Implement PatcherSupportPkg v0.0.8
|
||||
- Implement PatcherSupportPkg v0.0.10
|
||||
- Reduces binary sizes depending on OS
|
||||
- Deprecates Apple-Binaries-OCLP
|
||||
- Fix full screen and Airplay to Mac support for Intel HD4000 iGPUs in Monterey
|
||||
|
||||
@@ -42,7 +42,7 @@ class Constants:
|
||||
self.debugenhancer_version = "1.0.3"
|
||||
self.innie_version = "1.3.0"
|
||||
self.fw_kext = "1.0.0"
|
||||
self.patcher_support_pkg_version = "0.0.8" # PatcherSupportPkg
|
||||
self.patcher_support_pkg_version = "0.0.10" # PatcherSupportPkg
|
||||
|
||||
# Get resource path
|
||||
self.current_path = Path(__file__).parent.parent.resolve()
|
||||
|
||||
Reference in New Issue
Block a user