unsigned VST3 issue on MAC (unknown developer)
-
@Simon thanks, but as I said unfortunately my financial situation does not permit me to purchase any subscription with apple, nor will it in the foreseeable future, no matter how long the subscription is valid. I don't want to elaborate on this, it is devastating and embarrassing enough already, so I am hoping there are other solutions to be allowed to make software for the mac platform, without having more bills I can't pay.
-
@Morphoice You could try self-signing, I don't know any details about this so you'd need to google (or ask the GPT).
-
Open terminal, type in xattr -cr, and then drag and drop the vst file in.
xattr -cr plugin.vst
-
@aaronventure What does this do?
-
@Chazrox it removes the quarantine file attribute that triggers the gatekeeper which pops up the "unverified developer" warning. MacOS adds this attribute to all files it downloads that do not have a valid signature. If gatekeeper is enabled, it throws a warning.
-
@aaronventure is this fool proof?
-
@Chazrox depends on the fool, I guess. Some people cringe at the idea of opening a terminal, god forbid typing something in there.
You can probably whip up an app using Automator that asks for a file, then just runs xattr -cr on it. I'm sure ChatGPT can guide you through it easily. But then, you have to sign that app, too.
You could also then sell it, so there's a business idea.
Also, if you got the user to open the packages installer (right click -> open), then you should be able to run the script at the end of the installer that does the same thing.
-
@aaronventure I've just seen this in a youtube tutorial, so it seems to be the way to go indeed. Superb, thank you!
-
@aaronventure said in unsigned VST3 issue on MAC (unknown developer):
xattr -cr plugin.vst
don't forget to sudo :)
-
@Morphoice that depends on where the file is, right? but if you're gonna do it from the packages installer, then yeah you'll need elevated permissions.