├── .gitattributes ├── .gitignore ├── Files Apple kexts ├── AppleGVA.framework │ ├── AppleGVA │ └── Versions │ │ └── A │ │ └── AppleGVA ├── AppleGVACore.framework │ ├── AppleGVACore │ └── Versions │ │ └── A │ │ └── AppleGVACore ├── AppleIntelFramebufferCapri.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleIntelFramebufferCapri │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist ├── AppleIntelGraphicsShared.bundle │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── libIGIL-Metal.dylib │ │ ├── libISAProfilerDyn.dylib │ │ ├── libMTLIGCCompilerPlugin.dylib │ │ ├── libigc.dylib │ │ └── libigcHSW.dylib │ │ ├── PkgInfo │ │ ├── Resources │ │ ├── runtime-reduced.igil64.bc │ │ ├── runtime.igc64.split │ │ ├── runtime.igcHSW64.split │ │ ├── runtime.igil64.bc │ │ └── runtime.igil64.split │ │ ├── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeResources │ │ └── CodeSignature │ │ └── version.plist ├── AppleIntelHD4000Graphics.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleIntelHD4000Graphics │ │ ├── PkgInfo │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist ├── AppleIntelHD4000GraphicsGLDriver.bundle │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── AppleIntelHD4000GraphicsGLDriver │ │ ├── iCBE.dylib │ │ └── libigdmd.dylib │ │ ├── PkgInfo │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist ├── AppleIntelHD4000GraphicsMTLDriver.bundle │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── AppleIntelHD4000GraphicsMTLDriver │ │ ├── libMTLIntelCompilerPlugin.dylib │ │ └── libigdmd.dylib │ │ ├── PkgInfo │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist ├── AppleIntelHD4000GraphicsVADriver.bundle │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleIntelHD4000GraphicsVADriver │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist ├── AppleIntelIVBVA.bundle │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AppleIntelIVBVA │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist ├── FILES.md ├── OpenCL.framework │ └── Versions │ │ └── A │ │ └── Libraries │ │ └── libCLVMIGILPlugin.dylib └── WebKit.framework │ └── Versions │ └── A │ └── Resources │ └── com.apple.WebProcess.sb ├── README.md └── Source └── Contents ├── Info.plist ├── MacOS └── PatchHD4000 └── Resources ├── AppIcon.icns ├── AppIconOff.icns ├── AppSettings.plist ├── Credits.rtf ├── MainMenu.nib ├── designable.nib └── keyedobjects.nib ├── PatchHD4000.zip ├── hello.icns └── script /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Files Apple kexts/AppleGVA.framework/AppleGVA: -------------------------------------------------------------------------------- 1 | Versions/Current/AppleGVA -------------------------------------------------------------------------------- /Files Apple kexts/AppleGVA.framework/Versions/A/AppleGVA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleGVA.framework/Versions/A/AppleGVA -------------------------------------------------------------------------------- /Files Apple kexts/AppleGVACore.framework/AppleGVACore: -------------------------------------------------------------------------------- 1 | Versions/Current/AppleGVACore -------------------------------------------------------------------------------- /Files Apple kexts/AppleGVACore.framework/Versions/A/AppleGVACore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleGVACore.framework/Versions/A/AppleGVACore -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/MacOS/AppleIntelFramebufferCapri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/MacOS/AppleIntelFramebufferCapri -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelFramebufferCapri.kext/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libIGIL-Metal.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libIGIL-Metal.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libISAProfilerDyn.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libISAProfilerDyn.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libMTLIGCCompilerPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libMTLIGCCompilerPlugin.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libigc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libigc.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libigcHSW.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/MacOS/libigcHSW.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? 2 | -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime-reduced.igil64.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime-reduced.igil64.bc -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igc64.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igc64.split -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igcHSW64.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igcHSW64.split -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igil64.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igil64.bc -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igil64.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/Resources/runtime.igil64.split -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelGraphicsShared.bundle/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/MacOS/AppleIntelHD4000Graphics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/MacOS/AppleIntelHD4000Graphics -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | KEXT???? 2 | -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000Graphics.kext/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsGLDriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsGLDriver -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/iCBE.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/iCBE.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/libigdmd.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/libigdmd.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? 2 | -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsMTLDriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsMTLDriver -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/libMTLIntelCompilerPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/libMTLIntelCompilerPlugin.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/libigdmd.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/libigdmd.dylib -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | BNDL???? 2 | -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsVADriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsVADriver -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelHD4000GraphicsVADriver.bundle/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelIVBVA.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelIVBVA.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelIVBVA.bundle/Contents/MacOS/AppleIntelIVBVA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelIVBVA.bundle/Contents/MacOS/AppleIntelIVBVA -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelIVBVA.bundle/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelIVBVA.bundle/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Files Apple kexts/AppleIntelIVBVA.bundle/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/AppleIntelIVBVA.bundle/Contents/version.plist -------------------------------------------------------------------------------- /Files Apple kexts/FILES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/FILES.md -------------------------------------------------------------------------------- /Files Apple kexts/OpenCL.framework/Versions/A/Libraries/libCLVMIGILPlugin.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/OpenCL.framework/Versions/A/Libraries/libCLVMIGILPlugin.dylib -------------------------------------------------------------------------------- /Files Apple kexts/WebKit.framework/Versions/A/Resources/com.apple.WebProcess.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Files Apple kexts/WebKit.framework/Versions/A/Resources/com.apple.WebProcess.sb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/README.md -------------------------------------------------------------------------------- /Source/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Info.plist -------------------------------------------------------------------------------- /Source/Contents/MacOS/PatchHD4000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/MacOS/PatchHD4000 -------------------------------------------------------------------------------- /Source/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Source/Contents/Resources/AppIconOff.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/AppIconOff.icns -------------------------------------------------------------------------------- /Source/Contents/Resources/AppSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/AppSettings.plist -------------------------------------------------------------------------------- /Source/Contents/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/Credits.rtf -------------------------------------------------------------------------------- /Source/Contents/Resources/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /Source/Contents/Resources/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Source/Contents/Resources/PatchHD4000.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/PatchHD4000.zip -------------------------------------------------------------------------------- /Source/Contents/Resources/hello.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/hello.icns -------------------------------------------------------------------------------- /Source/Contents/Resources/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris1111/Patch-HD4000-Monterey/HEAD/Source/Contents/Resources/script --------------------------------------------------------------------------------