Skip to content

Commit 993413c

Browse files
committed
Add Beta5/6 kdk
1 parent 40d65c5 commit 993413c

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

oclp_r/support/kdk_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
KDK_INSTALL_PATH: str = "/Library/Developer/KDKs"
2626
KDK_INFO_PLIST: str = "KDKInfo.plist"
27-
KDK_API_LINK_ORG: str = "https://dortania.github.io/KdkSupportPkg/manifest.json"
27+
KDK_API_LINK_ORG: str = "https://pyquick.github.io/KdkSupportPkg/manifest.json"
2828
KDK_API_LINK_PROXY:str = "https://oclpapi.simplehac.cn/KdkSupportPkg/manifest.json"
2929
KDK_ASSET_LIST: list = None
3030

oclp_r/support/validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def _validate_sys_patch(self) -> None:
233233

234234
atexit.register(self._unmount_dmg)
235235

236-
for supported_os in [os_data.os_data.big_sur, os_data.os_data.monterey, os_data.os_data.ventura, os_data.os_data.sonoma, os_data.os_data.sequoia]:
236+
for supported_os in [os_data.os_data.big_sur, os_data.os_data.monterey, os_data.os_data.ventura, os_data.os_data.sonoma, os_data.os_data.sequoia, os_data.os_data.tahoe]:
237237
for i in range(0, 10):
238238
self._validate_root_patch_files(supported_os, i)
239239

oclp_r/wx_gui/gui_kdk_dl.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
utilities,
1818
network_handler,
1919
)
20-
KDK_API_LINK_ORIGIN:str = "https://dortania.github.io/KdkSupportPkg/manifest.json"
20+
KDK_API_LINK_ORIGIN:str = "https://pyquick.github.io/KdkSupportPkg/manifest.json"
2121
KDK_API_LINK_PROXY:str = "https://oclpapi.simplehac.cn/KdkSupportPkg/manifest.json"
2222
class KDKDownloadFrame(wx.Frame):
2323
def __init__(self, parent: wx.Frame, title: str, global_constants: constants.Constants,screen_location: tuple = None):
@@ -69,7 +69,6 @@ def _fetch_installers():
6969
kdk_data_build=[]
7070
maxnx=[]
7171
for i in range(len(self.kdk_data)):
72-
self.kdk_data[i].pop("kernel_versions")
7372
self.kdk_data[i]['seen']=((self.kdk_data[i]['seen']).split("T"))[0]
7473
if self.constants.github_proxy_link!="SimpleHac" and self.constants.github_proxy_link!="Default":
7574
self.kdk_data[i]['url']=self.kdk_data[i]['url'].replace("https://gitapi.simplehac.top/","")

oclp_r/wx_gui/gui_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ def _settings(self) -> dict:
871871
"variable": "github_proxy_link",
872872
"constants_variable": "github_proxy_link",
873873
"description": [
874-
"Default : https://dortania.github.io/",
874+
"Default : https://(pyquick/dortania).github.io/",
875875
"SimpleHac : https://gitapi.simplehac.top/",
876876
"gh-proxy : https://gh-proxy.com/",
877877
"ghfast : https://ghfast.top/",

0 commit comments

Comments
 (0)