diff options
author | Jimmy Tang <jtang@tchpc.tcd.ie> | 2012-09-23 10:33:37 +0100 |
---|---|---|
committer | Jimmy Tang <jtang@tchpc.tcd.ie> | 2012-09-23 10:33:37 +0100 |
commit | f61719e7d0fb81532670b4f1eab2899bf95c9c26 (patch) | |
tree | a47c1eee5075bce675035229742c37afb2eacbee /ui-macos/git-annex.app/Contents/Info.plist | |
parent | 8144daae1a82bccd4380a71763fcbace6d4b4c59 (diff) |
First attempt at creating a small .app launcher for OSX
The icons need to be resized and redone, the shell script in the MacOS
directory assumes that git-annex is in the runtime path.
Diffstat (limited to 'ui-macos/git-annex.app/Contents/Info.plist')
-rw-r--r-- | ui-macos/git-annex.app/Contents/Info.plist | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/ui-macos/git-annex.app/Contents/Info.plist b/ui-macos/git-annex.app/Contents/Info.plist new file mode 100644 index 000000000..c962a0eeb --- /dev/null +++ b/ui-macos/git-annex.app/Contents/Info.plist @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>git-annex</string> + <key>NSHumanReadableCopyright</key> + <string>Public Domain</string> + <key>CFBundleGetInfoString</key> + <string>0.0.1</string> + <key>CFBundleIconFile</key> + <string>git-annex</string> + <key>CFBundleIdentifier</key> + <string>com.branchable.git-annex</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>GIT-ANNEX</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>0.0.1</string> + <key>CFBundleSignature</key> + <string>git-annex</string> + <key>CFBundleVersion</key> + <string>0.0.1</string> + <key>NSAppleScriptEnabled</key> + <true/> + <key>CGDisableCoalescedUpdates</key> + <true/> + <key>LSMinimumSystemVersion</key> + <string>10.5</string> + <key>CFBundleDisplayName</key> + <string>Start git-annex webapp</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>i386</key> + <string>10.5.0</string> + <key>x86_64</key> + <string>10.6.0</string> + </dict> +</dict> +</plist> |