Skip to content

Commit e0f275d

Browse files
committed
update 2025-> 2026
1 parent c749285 commit e0f275d

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
- Disabled server side for years, removing client side
4747
- `OpenCore-Patcher-GUI.app.zip` removed from release
4848
- Deprecated in 1.5.0, use `OpenCore-Patcher.pkg` for installation
49-
- Sync copyright label to 2025
49+
- Sync copyright label to
5050
- Resolve MetallibSupportPkg failing to be cached on units without Kernel Debug Kit requirements
5151
- Resolve Broadwell widget rendering on macOS Sequoia
5252
- Resolve non-Metal crashing on macOS Big Sur and Sequoia (15.4)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Intsant
3+
Copyright (c) Intsant
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020-2025 Dhinak G, Mykola Grymalyuk, and individual contributors.
1+
Copyright (c) 2020- Dhinak G, Mykola Grymalyuk, and individual contributors.
22

33
All rights reserved.
44

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ features:
2222
details: Unlock Sidecar, AirPlay to Mac, Night Shift, and Universal Control, even on natively supported models!
2323
- title: A helpful community
2424
details: Whether it's getting started or learning the specifics, you can always find answers with our amazing community of tinkerers, developers, and dreamers.
25-
footer: Copyright © Dortania 2020-2025
25+
footer: Copyright © Dortania 2020-
2626
---

oclp_r/support/kdk_handler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ def _get_latest_kdk(self, host_build: str = None, host_version: str = None) -> N
203203
if self.constants.github_proxy_link=="ghfast":
204204
kdk['url']="https://ghfast.top/"+kdk['url']
205205
self.kdk_url = kdk["url"]
206+
logging.info(f"KDK URL:{self.kdk_url}")
206207
self.kdk_url_build = kdk["build"]
207208
self.kdk_url_version = kdk["version"]
208209
self.kdk_url_expected_size = kdk["fileSize"]
@@ -225,7 +226,7 @@ def _get_latest_kdk(self, host_build: str = None, host_version: str = None) -> N
225226
count_kdks.sort(key=lambda x: x["build"], reverse=True)
226227
closest = None
227228
for kdk in count_kdks:
228-
if kdk["build"] <= host_build:
229+
if kdk["build"][2] <= host_build[2]:
229230
closest = kdk
230231
break
231232
if closest is None:

oclp_r/sys_patch/patchsets/detect.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,7 @@ def _validation_check_repatching_is_possible(self) -> bool:
220220
Determine if repatching is not allowed
221221
"""
222222
if self._constants.commit_info[0] in ["Running from source", "Built from source"] or self._constants.commit_info[2] is None or self._constants.commit_info[2] == "":
223-
#return False
224-
...
223+
return False
225224
oclp_patch_path = "/System/Library/CoreServices/oclp-r.plist"
226225
if not Path(oclp_patch_path).exists():
227226
return self._is_root_volume_dirty()

payloads/OCLP-R.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
<plist version="1.0">
44
<dict>
55
<key>OCLP-R</key>
6-
<string>v3.0.1</string>
6+
<string>v3.0.2</string>
77
<key>PatcherSupportPkg</key>
88
<string>v1.11.0</string>
99
<key>Time Patched</key>
10-
<string>January 31, 2026 @ 13:15:22</string>
10+
<string>February 05, 2026 @ 14:10:11</string>
1111
<key>Commit URL</key>
1212
<string></string>
1313
<key>Kernel Debug Kit Used</key>
1414
<string>/Library/Developer/KDKs/KDK_26.3_25D5087f.kdk</string>
1515
<key>Metal Library Used</key>
1616
<string>Not applicable</string>
1717
<key>OS Version</key>
18-
<string>25.3 (25D5112c)</string>
18+
<string>25.3 (25D122)</string>
1919
<key>Custom Signature</key>
2020
<true/>
2121
<key>Modern Wireless</key>

payloads/Tools/OCLP-R.app/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>NSHighResolutionCapable</key>
2222
<true/>
2323
<key>NSHumanReadableCopyright</key>
24-
<string>Copyright © 2020-2025 Hackdoc</string>
24+
<string>Copyright © 2020- Hackdoc</string>
2525
<key>LSUIElement</key>
2626
<true/>
2727
</dict>
-1.22 MB
Binary file not shown.

0 commit comments

Comments
 (0)