diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-12-12 21:27:54 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-12-12 21:27:54 (GMT) |
commit | 6e32acbe6591f967453ef09efed9d08642bff9db (patch) | |
tree | 8dcc4705b488f08b4c58c4ec80b936d2a32416fd /Info.plist | |
parent | 44357696ed7f7f6b471f87e5f1a353c07e612247 (diff) |
Implemented support for opening files from the Mac OS X Finder, e.g. double-click, file type association
git-svn-id: http://svn.clifford.at/openscad/trunk@164 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'Info.plist')
-rw-r--r-- | Info.plist | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Info.plist b/Info.plist new file mode 100644 index 0000000..5dadad9 --- /dev/null +++ b/Info.plist @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> +<plist version="0.9"> +<dict> + <key>CFBundleIconFile</key> + <string>@ICON@</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleExecutable</key> + <string>OpenSCAD</string> + <key>CFBundleIdentifier</key> + <string>org.openscad.OpenSCAD</string> + <key>CFBundleDocumentTypes</key> + <array> + <dict> + <key>CFBundleTypeExtensions</key> + <array> + <string>scad</string> + </array> + <key>CFBundleTypeMIMETypes</key> + <array> + <string>text/plain</string> + </array> + <key>CFBundleTypeName</key> + <string>OpenSCAD Model</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + <key>LSIsAppleDefaultForType</key> + <true/> + </dict> + </array> +</dict> +</plist> |