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
diff options
context:
space:
mode:
authorArto Kitula <arto.kitula@gmail.com>2019-06-21 20:30:17 +0300
committerArto Kitula <arto.kitula@gmail.com>2019-06-21 20:30:17 +0300
commite60a01483ff048ef07fe7c148a5b8f33ed86d15d (patch)
treed46077e40fc3df6c6a7e2a74b11128f47cd6f36b /release/darwin/blender.applescript
parentf9e4568550fff0ec28f4efe6f73f251e3e72afa8 (diff)
macOS DMG bundle, codesign and notarization script
Diffstat (limited to 'release/darwin/blender.applescript')
-rw-r--r--release/darwin/blender.applescript18
1 files changed, 18 insertions, 0 deletions
diff --git a/release/darwin/blender.applescript b/release/darwin/blender.applescript
new file mode 100644
index 00000000000..130dc2eb64c
--- /dev/null
+++ b/release/darwin/blender.applescript
@@ -0,0 +1,18 @@
+tell application "Finder"
+ tell disk "Blender"
+ open
+ set current view of container window to icon view
+ set toolbar visible of container window to false
+ set statusbar visible of container window to false
+ set the bounds of container window to {100, 100, 640, 472}
+ set theViewOptions to icon view options of container window
+ set arrangement of theViewOptions to not arranged
+ set icon size of theViewOptions to 128
+ set background picture of theViewOptions to file ".background:background.tif"
+ set position of item " " of container window to {400, 190}
+ set position of item "blender.app" of container window to {135, 190}
+ update without registering applications
+ delay 5
+ close
+ end tell
+end tell