Merge branch 'main' into wxPython-demo

This commit is contained in:
Mykola Grymalyuk
2022-01-01 17:01:27 -07:00
17 changed files with 19 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
from resources import main
if __name__ == '__main__':

View File

@@ -40,5 +40,5 @@ app = BUNDLE(exe,
info_plist={
"CFBundleShortVersionString": constants.Constants().patcher_version,
"CFBundleExecutable": "MacOS/Launcher",
"NSHumanReadableCopyright": "Copyright 2020-2021 Dortania"
"NSHumanReadableCopyright": "Copyright 2020-2022 Dortania"
})

View File

@@ -1,5 +1,5 @@
# Lists all models and required patches
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
SupportedSMBIOS = [
# MacBook
"MacBook4,1",

View File

@@ -20,4 +20,4 @@ This patcher is made of multiple external applications from different people and
* [VMM Patch Set](https://github.com/dortania/OpenCore-Legacy-Patcher/blob/4a8f61a01da72b38a4b2250386cc4b497a31a839/payloads/Config/config.plist#L1222-L1281) - parrotgeek1
* Apple Binaries - Apple Inc.
Remaining files within OpenCore Legacy Patcher are copyrighted 2020-2021 Mykola Grymalyuk & Dhinak G. For integration into other projects, please request written permission.
Remaining files within OpenCore Legacy Patcher are copyrighted 2020-2022 Mykola Grymalyuk & Dhinak G. For integration into other projects, please request written permission.

View File

@@ -16,5 +16,5 @@ features:
details: Install updates the moment they come out just like on a supported Mac, and no more 12GB+ updates.
- title: Zero firmware patching
details: No need to patch APFS ROM support, all protocol upgrades are done in memory and never permanent.
footer: Copyright © Dortania 2020-2021
footer: Copyright © Dortania 2020-2022
---

View File

@@ -1,5 +1,5 @@
# Updates build version in OCLP-GUI during CI builds
# Copyright (C) 2021 Mykola Grymalyuk
# Copyright (C) 2021-2022 Mykola Grymalyuk
import plistlib
from pathlib import Path
from resources import constants

View File

@@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>AppleGraphicsDevicePolicy</string>
<key>CFBundleGetInfoString</key>
<string>6.2.9, Copyright 2008-2021 Apple Inc. All rights reserved.</string>
<string>6.2.9, Copyright 2008-2022 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleGraphicsDevicePolicy</string>
<key>CFBundleInfoDictionaryVersion</key>
@@ -190,7 +190,7 @@
<key>LSMinimumSystemVersion</key>
<string>11.3</string>
<key>NSHumanReadableCopyright</key>
<string>6.2.9, Copyright © 2008-2021 Apple Inc. All rights reserved.</string>
<string>6.2.9, Copyright © 2008-2022 Apple Inc. All rights reserved.</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.AppleGraphicsDeviceControl</key>

View File

@@ -9,7 +9,7 @@
<key>CFBundleExecutable</key>
<string>AppleMuxControl</string>
<key>CFBundleGetInfoString</key>
<string>6.2.9, Copyright 2008-2021 Apple Inc. All rights reserved.</string>
<string>6.2.9, Copyright 2008-2022 Apple Inc. All rights reserved.</string>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleMuxControl</string>
<key>CFBundleInfoDictionaryVersion</key>
@@ -390,7 +390,7 @@
<key>LSMinimumSystemVersion</key>
<string>11.3</string>
<key>NSHumanReadableCopyright</key>
<string>6.2.9, Copyright © 2008-2021 Apple Inc. All rights reserved.</string>
<string>6.2.9, Copyright © 2008-2022 Apple Inc. All rights reserved.</string>
<key>OSBundleLibraries</key>
<dict>
<key>com.apple.AppleGraphicsDeviceControl</key>

View File

@@ -1,5 +1,5 @@
# Commands for building the EFI and SMBIOS
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
from __future__ import print_function
import binascii

View File

@@ -1,5 +1,5 @@
# Handle misc CLI menu options
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
from __future__ import print_function
import sys

View File

@@ -1,6 +1,6 @@
# pylint: disable=multiple-statements
# Define Files
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
from __future__ import print_function

View File

@@ -1,5 +1,5 @@
# Hardware probing
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
from __future__ import annotations

View File

@@ -1,6 +1,6 @@
# Installation of OpenCore files to ESP
# Usage soley for TUI
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
import plistlib
import subprocess

View File

@@ -1,5 +1,5 @@
# Handle misc CLI menu options
# Copyright (C) 2020-2021, Dhinak G
# Copyright (C) 2020-2022, Dhinak G
from __future__ import annotations

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
from __future__ import print_function

View File

@@ -1,5 +1,5 @@
# Framework for mounting and patching macOS root volume
# Copyright (C) 2020-2021, Dhinak G, Mykola Grymalyuk
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymalyuk
# Missing Features:
# - Full System/Library Snapshotting (need to research how Apple achieves this)
# - Temporary Work-around: sudo bless --mount /System/Volumes/Update/mnt1 --bootefi --last-sealed-snapshot

View File

@@ -1,4 +1,4 @@
# Copyright (C) 2020-2021, Dhinak G
# Copyright (C) 2020-2022, Dhinak G, Mykola Grymaluk
from __future__ import print_function
import hashlib