-
-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Distribute signed binaries for MacOS #227
Comments
I just ran into this. The above steps did resolve my problem, but it would be beneficial if this wasn't required. |
@mccolljr Thanks for the confirmation. These steps are good enough for testing and development. When it comes to release, someone needs to pay Apple for a developer account and sign the binaries. That's either me or you. I don't have a mac, nor enough macos users, nor income generated from macos games sales (exactly $0) to justify paying them at this time. On the other hand, gamedevs who plan to release on macos/ios are already paying Apple so they can sign their own binaries. Once setup, it's only a few more minutes to build Terrain3D and sign it with that key. You can read the journey of Godot's signing here, which didn't happen until they had ~20k users, 5 years after its first release. |
That's fair. I wouldn't expect anyone to pay Apple's ridiculous price when they aren't making any money on the signed thing. Are you open to documentation enhancements to clarify the necessary steps for macos users to use the pre-built binaries? If so, I would be happy to contribute something as long as you can point me to where I should make changes. |
Yes, of course I'll take documentation updates. Please update the instructions above, even with screenshots if you like, right here. I can make a documentation page for it like I did with mobile/web. |
Sounds good. I will spend some time this weekend and write something up. |
Just FYI, you can just get rid of the download quarantine attribute, which is what is causing this issue. Just cd to the terrain_3d directory and run this command:
After doing this, you won't have any pop-ups about untrusted files. (If you're leery of running this command, I understand -- run
Important Look at this message further down the thread from @TokisanGames for the latest result. |
@jamonholmgren Thanks for the tip. That message means you don't have a binary library accessible for Godot to load, because you didn't download the binary release build, the files are in the wrong place, you didn't build the source yourself, or apple security is preventing access. I see you updated your note on the other thread. Please update your note and instructions here so we have the full set for working with Apple security with the distributed binaries. |
I received a note from a discord user: A quick search didn't yield anything, but I repeatedly got Took a moment, but running
did the trick on Sonoma 14.6.1 (23G93). https://discord.com/channels/691957978680786944/1130291534802202735/1285034889447739422 It seems these instructions are the simplest. macOS docs are now updated at this link. Let me know right here if you macos or ios users find specific notes that should be documented. |
Apple have gone out of their way to make it painful to run unsigned binaries downloaded from the internet.
Every time you install the add-on into a project, you have to
You then have to repeat this when running the release version of the project. And end users will need to follow these complex steps too.
Also, there appears to be a bug. Depending on exactly how many times you hit cancel during launch, Godot will corrupt all external references in the project, which breaks demo project. Took me a long time to work out why the demo project wasn't working for me.
The text was updated successfully, but these errors were encountered: