summaryrefslogtreecommitdiffstats
path: root/platform/osx/export/codesign.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename OSX to macOS and iPhoneOS to iOS.bruvzg2022-07-211-1564/+0
|
* Make FileAccess and DirAccess classes reference counted.bruvzg2022-04-111-36/+31
|
* Fix some issues found by cppcheck.bruvzg2022-04-061-1/+1
|
* Convert uses of `DirAccess *` to `DirAccessRef` to prevent memleaksRémi Verschelde2022-03-111-2/+2
| | | | | | | | `DirAccess *` needs to be deleted manually, and this is often forgotten especially when doing early returns with `ERR_FAIL_COND`. `DirAccessRef` is deleted automatically when it goes out of scope. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* Editor: Cleanup some includes dependenciesRémi Verschelde2022-02-151-0/+2
| | | | | | | | | | | Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole.
* [OSX] Codesign exporter now uses CryptoCore RNG.Fabio Alessandrelli2022-02-141-3/+6
|
* [macOS export] Implements ad-hoc signing on Linux/Windows, adds extra ↵bruvzg2022-01-181-0/+1564
privacy settings, entitlements warnings and error checking.