Skip to content

Commit c3afb42

Browse files
committed
fix build
update OC to 1.0.6
1 parent 5adc949 commit c3afb42

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+99
-99
lines changed

.github/workflows/Build_Wxpython.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
name: Build wxPython
1212
runs-on: macos-15
13-
if: github.repository_owner == 'hackdoc'
13+
if: github.repository_owner == 'intsant'
1414
permissions:
1515
contents: write
1616
env:
@@ -30,7 +30,7 @@ jobs:
3030
rm -rf Univ*
3131
rm -rf *pay*.dmg
3232
/Library/Frameworks/Python.framework/Versions/3.11/bin/python3 -m pip install -r requirements.txt
33-
aria2c -x 16 "https://github.com/hackdoc/PatcherSupportPkg/releases/download/push-8f0fc7d8311f13b55a05287db5e873d1a19fb5a8/Universal-Binaries.dmg"
33+
aria2c -x 16 "https://github.com/intsant/PatcherSupportPkg/releases/download/push-8f0fc7d8311f13b55a05287db5e873d1a19fb5a8/Universal-Binaries.dmg"
3434
3535
- name: Force Universal2 charset for Python
3636
run: |

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
name: Validate
1414
runs-on: macos-15
15-
if: github.repository_owner == 'hackdoc'
15+
if: github.repository_owner == 'intsant'
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Setup Python 3.11
@@ -24,6 +24,6 @@ jobs:
2424
/Library/Frameworks/Python.framework/Versions/3.11/bin/python3 -m pip install -r requirements.txt
2525
/Library/Frameworks/Python.framework/Versions/3.11/bin/python3 -m pip install packaging
2626
rm -rf Univ*
27-
aria2c -x 16 "https://github.com/hackdoc/PatcherSupportPkg/releases/download/push-8f0fc7d8311f13b55a05287db5e873d1a19fb5a8/Universal-Binaries.dmg"
27+
aria2c -x 16 "https://github.com/intsant/PatcherSupportPkg/releases/download/push-8f0fc7d8311f13b55a05287db5e873d1a19fb5a8/Universal-Binaries.dmg"
2828
/Library/Frameworks/Python.framework/Versions/3.11/bin/python3 OCLP-R-GUI.command --validate
2929

Build-Project.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def main() -> None:
7878
if (args.run_as_individual_steps is False) or (args.run_as_individual_steps and args.prepare_application):
7979
# Prepare Privileged Helper Tool
8080
sign_notarize.SignAndNotarize(
81-
path=Path("./ci_tooling/privileged_helper_tool/com.hackdoc.oclp-r.privileged-helper"),
81+
path=Path("./ci_tooling/privileged_helper_tool/com.intsant.oclp-r.privileged-helper"),
8282
signing_identity=args.application_signing_identity,
8383
notarization_apple_id=args.notarization_apple_id,
8484
notarization_password=args.notarization_password,

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 Hackdoc
3+
Copyright (c) 2025 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

OCLP-R-GUI.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ coll = COLLECT(exe,
7171
app = BUNDLE(coll,
7272
name='OCLP-R.app',
7373
icon="payloads/Icon/AppIcons/OC-Patcher.icns",
74-
bundle_identifier="com.hackdoc.oclp-r",
74+
bundle_identifier="com.intsant.oclp-r",
7575
info_plist={
7676
"CFBundleName": "OCLP-R",
7777
"CFBundleVersion": constants.Constants().patcher_version,

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<h1>OCLP-R</h1>
44
</div>
55

6-
# FROM HACKDOC!!!!!
7-
My Account "@pyquick" "@hackdoc" was suspended. So I move there.
6+
# FROM INTSANT!!!!!
7+
My Account "@pyquick" "@intsant" was suspended. So I move there.
88
---
99
A Python-based project revolving around [Acidanthera's OpenCorePkg](https://github.com/acidanthera/OpenCorePkg) and [Lilu](https://github.com/acidanthera/Lilu) for both running and unlocking features in macOS on supported and unsupported Macs.
1010

@@ -54,7 +54,7 @@ To run the project from source, see here: [Build and run from source](./SOURCE.m
5454

5555
* [Acidanthera](https://github.com/Acidanthera)
5656
* OpenCorePkg, as well as many of the core kexts and tools
57-
* [Hackdoc](https://github.com/hackdoc)
57+
* [Intsant](https://github.com/intsant)
5858
* Main co-author
5959
* [vit9696](https://github.com/vit9696)
6060
* Endless amount of help troubleshooting, determining fixes and writing patches

SOURCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Once Python is installed, open Terminal and run the following:
2222
# Move into a directory to store the project
2323
cd ~/Developer
2424
# Clone project
25-
git clone https://github.com/hackdoc/OCLP-R.git
25+
git clone https://github.com/intsant/OCLP-R.git
2626
# Move into Project directory
2727
cd ./OCLP-R
2828
# Install Python dependencies used by the project

ci_tooling/build_modules/disk_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def _download_resources(self):
117117
subprocess_wrapper.run_and_verify(
118118
[
119119
"/usr/bin/curl", "-LO",
120-
f"https://github.com/hackdoc/PatcherSupportPkg/releases/download/{patcher_support_pkg_version}/{resource}"
120+
f"https://github.com/intsant/PatcherSupportPkg/releases/download/{patcher_support_pkg_version}/{resource}"
121121
],
122122
stdout=subprocess.PIPE, stderr=subprocess.PIPE
123123
)

ci_tooling/build_modules/package.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ def __init__(self) -> None:
2020
Initialize
2121
"""
2222
self._files = {
23-
"./dist/OCLP-R.app": "/Library/Application Support/Hackdoc/OCLP-R.app",
24-
"./ci_tooling/privileged_helper_tool/com.hackdoc.oclp-r.privileged-helper": "/Library/PrivilegedHelperTools/com.hackdoc.oclp-r.privileged-helper",
23+
"./dist/OCLP-R.app": "/Library/Application Support/Intsant/OCLP-R.app",
24+
"./ci_tooling/privileged_helper_tool/com.intsant.oclp-r.privileged-helper": "/Library/PrivilegedHelperTools/com.intsant.oclp-r.privileged-helper",
2525
}
2626
self._autopkg_files = {
27-
"./payloads/Launch Services/com.hackdoc.oclp-r.auto-patch.plist": "/Library/LaunchAgents/com.hackdoc.oclp-r.auto-patch.plist",
27+
"./payloads/Launch Services/com.intsant.oclp-r.auto-patch.plist": "/Library/LaunchAgents/com.intsant.oclp-r.auto-patch.plist",
2828
}
2929
self._autopkg_files.update(self._files)
3030

@@ -92,7 +92,7 @@ def generate(self) -> None:
9292

9393
assert macos_pkg_builder.Packages(
9494
pkg_output="./dist/OCLP-R-Uninstaller.pkg",
95-
pkg_bundle_id="com.hackdoc.oclp-r-uninstaller",
95+
pkg_bundle_id="com.intsant.oclp-r-uninstaller",
9696
pkg_version=constants.Constants().patcher_version,
9797
pkg_background="./ci_tooling/pkg_assets/PkgBackground-Uninstaller.png",
9898
pkg_preinstall_script=_tmp_uninstall.name,
@@ -112,7 +112,7 @@ def generate(self) -> None:
112112

113113
assert macos_pkg_builder.Packages(
114114
pkg_output="./dist/OCLP-R.pkg",
115-
pkg_bundle_id="com.hackdoc.oclp-r",
115+
pkg_bundle_id="com.intsant.oclp-r",
116116
pkg_version=constants.Constants().patcher_version,
117117
pkg_allow_relocation=False,
118118
pkg_as_distribution=True,
@@ -135,7 +135,7 @@ def generate(self) -> None:
135135

136136
assert macos_pkg_builder.Packages(
137137
pkg_output="./dist/AutoPkg-Assets.pkg",
138-
pkg_bundle_id="com.hackdoc.pkg.AutoPkg-Assets",
138+
pkg_bundle_id="com.intsant.pkg.AutoPkg-Assets",
139139
pkg_version=constants.Constants().patcher_version,
140140
pkg_allow_relocation=False,
141141
pkg_as_distribution=True,

ci_tooling/build_modules/package_scripts.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def generate_fix_settings_file_permission(self) -> str:
176176
_script = ""
177177

178178
_script += "function _fixSettingsFilePermission() {\n"
179-
_script += " local settingsPath=\"$pathToTargetVolume/Users/Shared/.com.hackdoc.oclp-r.plist\"\n\n"
179+
_script += " local settingsPath=\"$pathToTargetVolume/Users/Shared/.com.intsant.oclp-r.plist\"\n\n"
180180

181181
_script += " if [[ -e $settingsPath ]]; then\n"
182182
_script += " echo \"Fixing settings file permissions: $settingsPath\"\n"
@@ -233,7 +233,7 @@ def generate_clean_launch_service(self) -> str:
233233
_script = ""
234234

235235
_script += "function _cleanLaunchService() {\n"
236-
_script += " local domain=\"com.hackdoc.oclp-r\"\n\n"
236+
_script += " local domain=\"com.intsant.oclp-r\"\n\n"
237237

238238
_script += " # Iterate over launch agents and daemons\n"
239239
_script += " for launchServiceVariant in \"$pathToTargetVolume/Library/LaunchAgents\" \"$pathToTargetVolume/Library/LaunchDaemons\"; do\n"
@@ -316,13 +316,13 @@ def __init__(self):
316316

317317
self.files = [
318318
"Applications/OCLP-R.app",
319-
"Library/Application Support/Hackdoc/Update.plist",
320-
"Library/Application Support/Hackdoc/OCLP-R.app",
321-
"Library/PrivilegedHelperTools/com.hackdoc.oclp-r.privileged-helper"
319+
"Library/Application Support/Intsant/Update.plist",
320+
"Library/Application Support/Intsant/OCLP-R.app",
321+
"Library/PrivilegedHelperTools/com.intsant.oclp-r.privileged-helper"
322322
]
323323

324324
self.additional_auto_pkg_files = [
325-
"Library/LaunchAgents/com.hackdoc.oclp-r.auto-patch.plist"
325+
"Library/LaunchAgents/com.intsant.oclp-r.auto-patch.plist"
326326
]
327327

328328

@@ -428,8 +428,8 @@ def _generate_postinstall_script(self, is_autopkg: bool = False) -> str:
428428
_script += self._generate_label_bar()
429429
_script += "\n"
430430

431-
_script += "helperPath=\"Library/PrivilegedHelperTools/com.hackdoc.oclp-r.privileged-helper\"\n"
432-
_script += "mainAppPath=\"Library/Application Support/Hackdoc/OCLP-R.app\"\n"
431+
_script += "helperPath=\"Library/PrivilegedHelperTools/com.intsant.oclp-r.privileged-helper\"\n"
432+
_script += "mainAppPath=\"Library/Application Support/Intsant/OCLP-R.app\"\n"
433433
_script += "shimAppPath=\"Applications/OCLP-R.app\"\n"
434434
if is_autopkg:
435435
_script += "executablePath=\"$mainAppPath/Contents/MacOS/OCLP-R\"\n"

0 commit comments

Comments
 (0)