Include OneShot_template.app
This commit is contained in:
parent
6b5eff715b
commit
640ecd46f9
|
|
@ -4,7 +4,8 @@
|
||||||
*.bak
|
*.bak
|
||||||
*.xxd
|
*.xxd
|
||||||
*.exe
|
*.exe
|
||||||
*.app
|
OneShot.app
|
||||||
|
_______.app
|
||||||
*.bmp
|
*.bmp
|
||||||
*.lproj
|
*.lproj
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?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>CFBundleName</key>
|
||||||
|
<string>OneShot</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>OneShot</string>
|
||||||
|
<key>CFBundleGetInfoString</key>
|
||||||
|
<string>You only have one shot.</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>queengooborg.oneshot-game.osx</string>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>oneshot.sh</string>
|
||||||
|
<key>CFBundleIconFile</key>
|
||||||
|
<string>icon.icns</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>macOS Port v.0.3.1 (OneShot Solstice Update)</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>0.3.1</string>
|
||||||
|
<key>LSApplicationCategoryType</key>
|
||||||
|
<string>public.app-category.games</string>
|
||||||
|
<key>LSMinimumSystemVersion</key>
|
||||||
|
<string>10.7</string>
|
||||||
|
<key>LSBackgroundOnly</key>
|
||||||
|
<string>0</string>
|
||||||
|
<key>NSHumanReadableCopyright</key>
|
||||||
|
<string>Copyright © 2017, OneShot team, all rights reserved. View CREDITS.txt for more. Ported for macOS by Vinyl Darkscratch.</string>
|
||||||
|
<key>NSHighResolutionCapable</key>
|
||||||
|
<string>False</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash
|
||||||
|
[[ $# -eq 1 && "$1" == -psn_* ]] && shift
|
||||||
|
cd "${0%/*}/../Resources"
|
||||||
|
DATA="$(cd "../../.." && echo "$PWD")"
|
||||||
|
export DYLD_FALLBACK_LIBRARY_PATH="$PWD:$DYLD_FALLBACK_LIBRARY_PATH"
|
||||||
|
exec ./steamshim --gameFolder="$DATA" "$@"
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
||||||
|
420530
|
||||||
Binary file not shown.
Loading…
Reference in New Issue