This repository has been archived by the owner on Jan 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
145 additions
and
72 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
name: Swift 5 compatibility update. | ||
name: Extension Registration Fix. | ||
description: | ||
- Xcode 10.2.1 compatibility update. | ||
- Fixes previously broken Plug-In registration. | ||
- See Docs/Troubleshooting.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Step #1. Reveal Extensions registered in System and identify yours one: | ||
|
||
```bash | ||
pluginkit -m | ||
|
||
# Same as above but more verbose | ||
pluginkit -mv | ||
|
||
# Same as above but only Audio Unit UIs | ||
pluginkit -mvp com.apple.AudioUnit-UI | ||
|
||
# Same as above but only Audio Units | ||
pluginkit -mvp com.apple.AudioUnit | ||
``` | ||
|
||
Step #2. Reveal Audio Units registered in System and identify yours one: | ||
|
||
```bash | ||
# All Audio Units | ||
auval -a | ||
|
||
# Only Audio Unit Effects | ||
auval -s aufx | ||
|
||
# Only certain Audio Unit | ||
auval -v aufx attr wlUA | ||
``` | ||
|
||
Step #3. Validate Audio Unit: | ||
|
||
```bash | ||
auval -v aufx attr wlUA | ||
``` | ||
|
||
To explicitely unregister/redister Extension in System: | ||
|
||
```bash | ||
pluginkit -vr /tmp/Attenuator.dst/Applications/Attenuator.app/Contents/PlugIns/AttenuatorAU.appex | ||
pluginkit -va /tmp/Attenuator.dst/Applications/Attenuator.app/Contents/PlugIns/AttenuatorAU.appex | ||
``` | ||
|
||
Apple API: | ||
|
||
- /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioToolbox.framework/Versions/A/Headers/AUAudioUnitImplementation.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.