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.
This commit is contained in:
parent
8144daae1a
commit
f61719e7d0
3 changed files with 48 additions and 0 deletions
45
ui-macos/git-annex.app/Contents/Info.plist
Normal file
45
ui-macos/git-annex.app/Contents/Info.plist
Normal file
|
@ -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>
|
3
ui-macos/git-annex.app/Contents/MacOS/git-annex
Executable file
3
ui-macos/git-annex.app/Contents/MacOS/git-annex
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
git annex webapp
|
BIN
ui-macos/git-annex.app/Contents/Resources/git-annex.icns
Normal file
BIN
ui-macos/git-annex.app/Contents/Resources/git-annex.icns
Normal file
Binary file not shown.
Loading…
Reference in a new issue