mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-24 12:00:15 +10:00
Resolve CI validation errors
This commit is contained in:
@@ -27,7 +27,7 @@
|
|||||||
- utilities.py:
|
- utilities.py:
|
||||||
- Fix indexing error on Device Paths (thx [@Ausdauersportler](https://github.com/Ausdauersportler))
|
- Fix indexing error on Device Paths (thx [@Ausdauersportler](https://github.com/Ausdauersportler))
|
||||||
- Increment Binaries:
|
- Increment Binaries:
|
||||||
- PatcherSupportPkg 1.1.5 - release
|
- PatcherSupportPkg 1.1.6 - release
|
||||||
|
|
||||||
## 0.6.7
|
## 0.6.7
|
||||||
- Resolve partition buttons overlapping in Install OpenCore UI
|
- Resolve partition buttons overlapping in Install OpenCore UI
|
||||||
|
|||||||
Binary file not shown.
@@ -1004,7 +1004,7 @@ class SystemPatchDictionary():
|
|||||||
},
|
},
|
||||||
"Install": {
|
"Install": {
|
||||||
"/System/Library/Frameworks": {
|
"/System/Library/Frameworks": {
|
||||||
"MetalPerformanceShaders.framework": "13.5 Beta 2",
|
"MetalPerformanceShaders.framework": "13.5",
|
||||||
},
|
},
|
||||||
"/System/Library/PrivateFrameworks": {
|
"/System/Library/PrivateFrameworks": {
|
||||||
"MTLCompiler.framework": "14.0",
|
"MTLCompiler.framework": "14.0",
|
||||||
@@ -1028,8 +1028,8 @@ class SystemPatchDictionary():
|
|||||||
},
|
},
|
||||||
"Install": {
|
"Install": {
|
||||||
"/System/Library/Extensions": {
|
"/System/Library/Extensions": {
|
||||||
"IOGPUFamily.kext": "13.5 Beta 2",
|
"IOGPUFamily.kext": "13.5",
|
||||||
"IOSurface.kext": "13.5 Beta 2",
|
"IOSurface.kext": "13.5",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -1053,7 +1053,7 @@ class SystemPatchDictionary():
|
|||||||
},
|
},
|
||||||
"Install": {
|
"Install": {
|
||||||
"/System/Library/Extensions": {
|
"/System/Library/Extensions": {
|
||||||
"IOAcceleratorFamily2.kext": "13.5 Beta 2",
|
"IOAcceleratorFamily2.kext": "13.5",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -1158,8 +1158,8 @@ class SystemPatchDictionary():
|
|||||||
"/System/Library/PrivateFrameworks": {
|
"/System/Library/PrivateFrameworks": {
|
||||||
"CoreWiFi.framework": "12.6.2",
|
"CoreWiFi.framework": "12.6.2",
|
||||||
"IO80211.framework": "12.6.2",
|
"IO80211.framework": "12.6.2",
|
||||||
**({ "CoreAnalytics.framework": "13.5 Beta 2"} if self.os_major >= os_data.os_data.sonoma else {}),
|
**({ "CoreAnalytics.framework": "13.5"} if self.os_major >= os_data.os_data.sonoma else {}),
|
||||||
**({ "WiFiAnalytics.framework": "13.5 Beta 2"} if self.os_major >= os_data.os_data.sonoma else {}),
|
**({ "WiFiAnalytics.framework": "13.5"} if self.os_major >= os_data.os_data.sonoma else {}),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -1179,23 +1179,23 @@ class SystemPatchDictionary():
|
|||||||
},
|
},
|
||||||
"Install": {
|
"Install": {
|
||||||
"/usr/libexec": {
|
"/usr/libexec": {
|
||||||
"airportd": "13.5 Beta 2",
|
"airportd": "13.5",
|
||||||
"wifianalyticsd": "13.5 Beta 2",
|
"wifianalyticsd": "13.5",
|
||||||
"wifip2pd": "13.5 Beta 2",
|
"wifip2pd": "13.5",
|
||||||
},
|
},
|
||||||
"/System/Library/CoreServices": {
|
"/System/Library/CoreServices": {
|
||||||
"WiFiAgent.app": "13.5 Beta 2",
|
"WiFiAgent.app": "13.5",
|
||||||
},
|
},
|
||||||
"/System/Library/Frameworks": {
|
"/System/Library/Frameworks": {
|
||||||
"CoreWLAN.framework": "13.5 Beta 2",
|
"CoreWLAN.framework": "13.5",
|
||||||
},
|
},
|
||||||
"/System/Library/PrivateFrameworks": {
|
"/System/Library/PrivateFrameworks": {
|
||||||
"CoreAnalytics.framework": "13.5 Beta 2",
|
"CoreAnalytics.framework": "13.5",
|
||||||
"CoreWiFi.framework": "13.5 Beta 2",
|
"CoreWiFi.framework": "13.5",
|
||||||
"IO80211.framework": "13.5 Beta 2",
|
"IO80211.framework": "13.5",
|
||||||
"WiFiAnalytics.framework": "13.5 Beta 2",
|
"WiFiAnalytics.framework": "13.5",
|
||||||
"WiFiPolicy.framework": "13.5 Beta 2",
|
"WiFiPolicy.framework": "13.5",
|
||||||
"WiFiPeerToPeer.framework": "13.5 Beta 2",
|
"WiFiPeerToPeer.framework": "13.5",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ class Constants:
|
|||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
# Patcher Versioning
|
# Patcher Versioning
|
||||||
self.patcher_version: str = "0.6.8" # OpenCore-Legacy-Patcher
|
self.patcher_version: str = "0.6.8" # OpenCore-Legacy-Patcher
|
||||||
self.patcher_support_pkg_version: str = "1.1.5" # PatcherSupportPkg
|
self.patcher_support_pkg_version: str = "1.1.6" # PatcherSupportPkg
|
||||||
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
|
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
|
||||||
self.patcher_name: str = "OpenCore Legacy Patcher"
|
self.patcher_name: str = "OpenCore Legacy Patcher"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user