Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-22Fix Blender DMG bundling for macOS failing on buildbotBrecht Van Lommel
The change from D6462 caused a permission prompt. Setting the user and group UID appears unnecessary to fix the issue, so leave just the mode.
2020-01-20Fix T72605: Blender works only in one user account on macOSJean First
User permissions in the disk image were wrong. Differential Revision: https://developer.blender.org/D6462
2019-12-04Fix macOS bundling error with latest release, increase DMG disk space a littleBrecht Van Lommel
Also adds more verbose output when notarization fails.
2019-09-03Buildbot: support building releases, make non-releases more consistentBrecht Van Lommel
* Auto detect rc and release version cycle in BKE_blender_version.h. * On Windows, generate zip and installer if a release is detected. * On macOS, always generate a dmg instead of zip. * Use standard package names without hash if a release is detected. * Buildbot package names now match platform names in releases. Ref T67056 Differential Revision: https://developer.blender.org/D5643
2019-07-15Fix T66986: errors with add-ons using ctypes in macOS releaseBrecht Van Lommel
Add extra entitlements to allow the kind of unsigned executable memory access that cytpes does.
2019-07-12macOS: allow bundle script to re-codesign a Blender.app that was already signedBrecht Van Lommel
2019-07-12macOS: remove hardcoded paths for code signing python/dylib/soArto Kitula
Differential Revision: https://developer.blender.org/D5234
2019-06-22macOS: tweaks for macOS bundle scriptBrecht Van Lommel
* Follow Blender code style a bit more closely * Fix mixed tabs and spaces * Remove old README now that it's part of the script * Make less tied to specific Blender version numbers
2019-06-22macOS: rename blender.app to Blender.appBrecht Van Lommel
Using a capitalized app name fits the platform guidelines. Since macOS file systems are case insensitive by default this should not break scripts that assume lowercase.
2019-06-21macOS DMG bundle, codesign and notarization scriptArto Kitula