diff --git a/.github/workflows/build-app.yml b/.github/workflows/build-app.yml index 05f471f89..192b98be5 100644 --- a/.github/workflows/build-app.yml +++ b/.github/workflows/build-app.yml @@ -18,7 +18,7 @@ jobs: # python3 -m pip install -U pip # pip3 install pyinstaller - - run: pyinstaller Opencore-Patcher.spec + - run: pyinstaller OpenCore-Patcher.spec - run: ./after_pyinstaller.sh - run: 'codesign -s "Developer ID Application: Mykola Grymalyuk (S74BDJXQMD)" -v --deep --timestamp --entitlements entitlements.plist -o runtime "dist/OpenCore-Patcher.app"' diff --git a/.gitignore b/.gitignore index 11b228a9e..755784d31 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ .DS_Store OCLP-GUI.command -/payloads/Apple-Binaries-OCLP-main +/payloads/Apple /payloads/__MACOSX /App /Build-Folder diff --git a/CHANGELOG.md b/CHANGELOG.md index 37f43bf5d..a17e7a662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -201,4 +201,4 @@ - Add El Capitan era wireless cards ## 0.0.1 -- Inital developer preview +- Initial developer preview diff --git a/OpenCore-Patcher.command b/OpenCore-Patcher.command index 5e683f7e4..eacb36b80 100755 --- a/OpenCore-Patcher.command +++ b/OpenCore-Patcher.command @@ -109,7 +109,7 @@ system_profiler SPHardwareDataType | grep 'Model Identifier' [f"Set SMBIOS Mode:\t\t\tCurrently {self.constants.serial_settings}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).change_serial], [f"DRM Preferences:\t\t\tCurrently {self.constants.drm_support}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).drm_setting], [f"Set Generic Bootstrap:\t\t{self.constants.boot_efi}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).bootstrap_setting], - [f"Set Accleration Patches:\t\t{self.constants.legacy_acceleration_patch}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).accel_setting], + [f"Set Acceleration Patches:\t\t{self.constants.legacy_acceleration_patch}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).accel_setting], [f"Assume Legacy GPU:\t\t\t{self.constants.assume_legacy}", CliMenu.MenuOptions(self.constants.custom_model or self.current_model, self.constants).force_accel_setting], ] diff --git a/Resources/Constants.py b/Resources/Constants.py index 966273e8a..be63f9c76 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -237,7 +237,7 @@ class Constants: @property def gui_path(self): return self.payload_path / Path("Icon/Resources.zip") - # Apple Paylods Paths + # Apple Payloads Paths @property def payload_apple_root_path_unzip(self): return self.payload_path / Path(f"Apple-Binaries-OCLP-{self.payload_version}") @property