├── .gitignore ├── ALCPlugFix.zip ├── AppleALC-1.2.8 └── AppleALC.kext │ └── Contents │ ├── Info.plist │ └── MacOS │ └── AppleALC ├── Audio-SSDT ├── SSDT-ALC1220.aml ├── SSDT-ALC256.aml ├── SSDT-ALC280.aml ├── SSDT-ALC283.aml ├── SSDT-ALC298.aml ├── SSDT-ALC298a.aml ├── SSDT-ALC668.aml ├── SSDT-AppleALC.aml └── SSDT-CX20752.aml ├── Lilu-1.2.4 └── Lilu.kext │ └── Contents │ ├── Info.plist │ └── MacOS │ └── Lilu ├── README.md ├── RehabMan-CodecCommander-2017-0501 ├── Debug │ ├── CodecCommander.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── CodecCommander │ └── hda-verb └── Release │ ├── CodecCommander.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── CodecCommander │ └── hda-verb ├── codecgraph.zip ├── hda-tools ├── codec.txt ├── config_dump.sh ├── convert.sh ├── eapd_dump.sh ├── extract_hda.sh ├── gen_ahhcd.sh ├── node_dump.sh ├── print_version.sh └── widget_dump.sh ├── 万能集合包 ├── AppleHDADisabler.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── Disabler ├── VoodooHDA-2.8.0 │ ├── .DS_Store │ ├── AppleHDADisabler.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── Disabler │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooHDA │ ├── VoodooHDA.prefPane │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooHDA │ │ │ └── Resources │ │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── VoodooHDAPref.nib │ │ │ └── VoodooHDAPref.tiff │ └── getdump ├── VoodooHDA-2.8.4 │ ├── .DS_Store │ ├── VoodooHDA.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooHDA │ ├── VoodooHDA.prefPane │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooHDA │ │ │ └── Resources │ │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── VoodooHDAPref.nib │ │ │ └── VoodooHDAPref.tiff │ └── getdump ├── VoodooHDA-2.8.5.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooHDA │ │ └── _CodeSignature │ │ └── CodeResources ├── VoodooHDA-2.8.6.pkg ├── VoodooHDA-2.8.7.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VoodooHDA ├── VoodooHDA-2.8.7.pkg ├── VoodooHDA-2.8.8.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooHDA │ │ ├── PkgInfo │ │ └── Resources │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ └── version.plist ├── VoodooHDA-2.8.8.pkg ├── VoodooHDA-2.8.9.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooHDA │ │ ├── PkgInfo │ │ └── Resources │ │ ├── English.lproj │ │ └── InfoPlist.strings │ │ └── version.plist ├── VoodooHDA-2.9.0.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VoodooHDA └── VoodooHDA-2.9.1.kext │ └── Contents │ ├── Info.plist │ ├── MacOS │ └── VoodooHDA │ └── _CodeSignature │ └── CodeResources ├── 耳机外放切换.md └── 耳机杂音.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /ALCPlugFix.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/ALCPlugFix.zip -------------------------------------------------------------------------------- /AppleALC-1.2.8/AppleALC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/AppleALC-1.2.8/AppleALC.kext/Contents/Info.plist -------------------------------------------------------------------------------- /AppleALC-1.2.8/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/AppleALC-1.2.8/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC1220.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC1220.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC256.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC256.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC280.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC280.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC283.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC283.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC298.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC298.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC298a.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC298a.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-ALC668.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-ALC668.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-AppleALC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-AppleALC.aml -------------------------------------------------------------------------------- /Audio-SSDT/SSDT-CX20752.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Audio-SSDT/SSDT-CX20752.aml -------------------------------------------------------------------------------- /Lilu-1.2.4/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Lilu-1.2.4/Lilu.kext/Contents/Info.plist -------------------------------------------------------------------------------- /Lilu-1.2.4/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/Lilu-1.2.4/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/README.md -------------------------------------------------------------------------------- /RehabMan-CodecCommander-2017-0501/Debug/CodecCommander.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/RehabMan-CodecCommander-2017-0501/Debug/CodecCommander.kext/Contents/Info.plist -------------------------------------------------------------------------------- /RehabMan-CodecCommander-2017-0501/Debug/CodecCommander.kext/Contents/MacOS/CodecCommander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/RehabMan-CodecCommander-2017-0501/Debug/CodecCommander.kext/Contents/MacOS/CodecCommander -------------------------------------------------------------------------------- /RehabMan-CodecCommander-2017-0501/Debug/hda-verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/RehabMan-CodecCommander-2017-0501/Debug/hda-verb -------------------------------------------------------------------------------- /RehabMan-CodecCommander-2017-0501/Release/CodecCommander.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/RehabMan-CodecCommander-2017-0501/Release/CodecCommander.kext/Contents/Info.plist -------------------------------------------------------------------------------- /RehabMan-CodecCommander-2017-0501/Release/CodecCommander.kext/Contents/MacOS/CodecCommander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/RehabMan-CodecCommander-2017-0501/Release/CodecCommander.kext/Contents/MacOS/CodecCommander -------------------------------------------------------------------------------- /RehabMan-CodecCommander-2017-0501/Release/hda-verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/RehabMan-CodecCommander-2017-0501/Release/hda-verb -------------------------------------------------------------------------------- /codecgraph.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/codecgraph.zip -------------------------------------------------------------------------------- /hda-tools/codec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/codec.txt -------------------------------------------------------------------------------- /hda-tools/config_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/config_dump.sh -------------------------------------------------------------------------------- /hda-tools/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/convert.sh -------------------------------------------------------------------------------- /hda-tools/eapd_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/eapd_dump.sh -------------------------------------------------------------------------------- /hda-tools/extract_hda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/extract_hda.sh -------------------------------------------------------------------------------- /hda-tools/gen_ahhcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/gen_ahhcd.sh -------------------------------------------------------------------------------- /hda-tools/node_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/node_dump.sh -------------------------------------------------------------------------------- /hda-tools/print_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/print_version.sh -------------------------------------------------------------------------------- /hda-tools/widget_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/hda-tools/widget_dump.sh -------------------------------------------------------------------------------- /万能集合包/AppleHDADisabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/AppleHDADisabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/AppleHDADisabler.kext/Contents/MacOS/Disabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/AppleHDADisabler.kext/Contents/MacOS/Disabler -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/.DS_Store -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/AppleHDADisabler.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/AppleHDADisabler.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/AppleHDADisabler.kext/Contents/MacOS/Disabler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/AppleHDADisabler.kext/Contents/MacOS/Disabler -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Resources/English.lproj/VoodooHDAPref.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Resources/English.lproj/VoodooHDAPref.nib -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Resources/VoodooHDAPref.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/VoodooHDA.prefPane/Contents/Resources/VoodooHDAPref.tiff -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.0/getdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.0/getdump -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/.DS_Store -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Resources/English.lproj/VoodooHDAPref.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Resources/English.lproj/VoodooHDAPref.nib -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Resources/VoodooHDAPref.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/VoodooHDA.prefPane/Contents/Resources/VoodooHDAPref.tiff -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.4/getdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.4/getdump -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.5.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.5.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.5.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.5.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.5.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.5.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.6.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.6.pkg -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.7.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.7.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.7.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.7.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.7.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.7.pkg -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.8.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.8.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.8.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.8.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.8.kext/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | KEXT???? -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.8.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.8.kext/Contents/Resources/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.8.kext/Contents/Resources/version.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.8.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.8.pkg -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.9.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.9.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.9.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.9.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.9.kext/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | KEXT???? -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.9.kext/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.9.kext/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.8.9.kext/Contents/Resources/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.8.9.kext/Contents/Resources/version.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.9.0.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.9.0.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.9.0.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.9.0.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.9.1.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.9.1.kext/Contents/Info.plist -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.9.1.kext/Contents/MacOS/VoodooHDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.9.1.kext/Contents/MacOS/VoodooHDA -------------------------------------------------------------------------------- /万能集合包/VoodooHDA-2.9.1.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/万能集合包/VoodooHDA-2.9.1.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /耳机外放切换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/耳机外放切换.md -------------------------------------------------------------------------------- /耳机杂音.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athlonreg/AppleALC-ALCPlugFix/HEAD/耳机杂音.md --------------------------------------------------------------------------------