diff --git a/OpenCore-Patcher.command b/OpenCore-Patcher.command
index f3a1d1afe..ad809085a 100755
--- a/OpenCore-Patcher.command
+++ b/OpenCore-Patcher.command
@@ -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__':
diff --git a/OpenCore-Patcher.spec b/OpenCore-Patcher.spec
index 49695bf1c..74c2b549e 100644
--- a/OpenCore-Patcher.spec
+++ b/OpenCore-Patcher.spec
@@ -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"
})
\ No newline at end of file
diff --git a/data/model_array.py b/data/model_array.py
index 5bf704a02..f5337b9df 100644
--- a/data/model_array.py
+++ b/data/model_array.py
@@ -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",
diff --git a/docs/LICENSE.md b/docs/LICENSE.md
index 37698bc5b..ba8f85804 100644
--- a/docs/LICENSE.md
+++ b/docs/LICENSE.md
@@ -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.
diff --git a/docs/README.md b/docs/README.md
index 58081c19f..95ef77b01 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -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
---
\ No newline at end of file
diff --git a/merge_gui.py b/merge_gui.py
index 86f3605af..b8f8d8995 100644
--- a/merge_gui.py
+++ b/merge_gui.py
@@ -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
diff --git a/payloads/Kexts/Plists/AppleGraphicsDevicePolicy/AppleGraphicsDevicePolicy.plist b/payloads/Kexts/Plists/AppleGraphicsDevicePolicy/AppleGraphicsDevicePolicy.plist
index 32b71c35b..a39e173e6 100644
--- a/payloads/Kexts/Plists/AppleGraphicsDevicePolicy/AppleGraphicsDevicePolicy.plist
+++ b/payloads/Kexts/Plists/AppleGraphicsDevicePolicy/AppleGraphicsDevicePolicy.plist
@@ -9,7 +9,7 @@
CFBundleExecutable
AppleGraphicsDevicePolicy
CFBundleGetInfoString
- 6.2.9, Copyright 2008-2021 Apple Inc. All rights reserved.
+ 6.2.9, Copyright 2008-2022 Apple Inc. All rights reserved.
CFBundleIdentifier
com.apple.driver.AppleGraphicsDevicePolicy
CFBundleInfoDictionaryVersion
@@ -190,7 +190,7 @@
LSMinimumSystemVersion
11.3
NSHumanReadableCopyright
- 6.2.9, Copyright © 2008-2021 Apple Inc. All rights reserved.
+ 6.2.9, Copyright © 2008-2022 Apple Inc. All rights reserved.
OSBundleLibraries
com.apple.AppleGraphicsDeviceControl
diff --git a/payloads/Kexts/Plists/AppleMuxControl/AppleMuxControl.plist b/payloads/Kexts/Plists/AppleMuxControl/AppleMuxControl.plist
index d4168e40a..6ba466a4c 100644
--- a/payloads/Kexts/Plists/AppleMuxControl/AppleMuxControl.plist
+++ b/payloads/Kexts/Plists/AppleMuxControl/AppleMuxControl.plist
@@ -9,7 +9,7 @@
CFBundleExecutable
AppleMuxControl
CFBundleGetInfoString
- 6.2.9, Copyright 2008-2021 Apple Inc. All rights reserved.
+ 6.2.9, Copyright 2008-2022 Apple Inc. All rights reserved.
CFBundleIdentifier
com.apple.driver.AppleMuxControl
CFBundleInfoDictionaryVersion
@@ -390,7 +390,7 @@
LSMinimumSystemVersion
11.3
NSHumanReadableCopyright
- 6.2.9, Copyright © 2008-2021 Apple Inc. All rights reserved.
+ 6.2.9, Copyright © 2008-2022 Apple Inc. All rights reserved.
OSBundleLibraries
com.apple.AppleGraphicsDeviceControl
diff --git a/resources/build.py b/resources/build.py
index 60288f35f..ea95b5045 100644
--- a/resources/build.py
+++ b/resources/build.py
@@ -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
diff --git a/resources/cli_menu.py b/resources/cli_menu.py
index 156c5168a..4ba7ce0fe 100644
--- a/resources/cli_menu.py
+++ b/resources/cli_menu.py
@@ -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
diff --git a/resources/constants.py b/resources/constants.py
index a0405dd23..fd98e2b23 100644
--- a/resources/constants.py
+++ b/resources/constants.py
@@ -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
diff --git a/resources/device_probe.py b/resources/device_probe.py
index 452f5ed78..8a6a5330a 100644
--- a/resources/device_probe.py
+++ b/resources/device_probe.py
@@ -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
diff --git a/resources/install.py b/resources/install.py
index 85e4d2767..93540d90e 100644
--- a/resources/install.py
+++ b/resources/install.py
@@ -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
diff --git a/resources/ioreg.py b/resources/ioreg.py
index 732035c54..ebff9e037 100644
--- a/resources/ioreg.py
+++ b/resources/ioreg.py
@@ -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
diff --git a/resources/main.py b/resources/main.py
index 6bcce3169..2f1173944 100644
--- a/resources/main.py
+++ b/resources/main.py
@@ -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
diff --git a/resources/sys_patch.py b/resources/sys_patch.py
index 92c84e516..fb0364181 100644
--- a/resources/sys_patch.py
+++ b/resources/sys_patch.py
@@ -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
diff --git a/resources/utilities.py b/resources/utilities.py
index 4cabdfb91..8cf9e8568 100644
--- a/resources/utilities.py
+++ b/resources/utilities.py
@@ -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