Skip to content
Snippets Groups Projects
Commit 07e69a74 authored by inso's avatar inso Committed by GitHub
Browse files

Merge pull request #695 from florck/dev

OSx bundle opening in GUI resolution
parents 3d86b296 7ecbc257
No related branches found
No related tags found
No related merge requests found
......@@ -33,9 +33,9 @@ if [ $TRAVIS_OS_NAME == "osx" ]
then
pyinstaller sakia.spec
cp -rv dist/sakia/* dist/sakia.app/Contents/MacOS
cp -v res/osx/Info.plist dist/sakia.app/Contents/
rm -rfv dist/sakia
elif [ $TRAVIS_OS_NAME == "linux" ]
then
pyinstaller sakia.spec
fi
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict><key>CFBundleIdentifier</key>
<string>sakia</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleName</key>
<string>sakia</string>
<key>CFBundleExecutable</key>
<string>MacOS/sakia.bin</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIconFile</key>
<string>sakia.ico</string>
<key>NSHighResolutionCapable</key>
<string>True</string>
<key>CFBundleDisplayName</key>
<string>sakia</string>
<key>CFBundleShortVersionString</key>
<string>0.0.0</string>
<key>LSBackgroundOnly</key>
<string>False</string>
<key>LSEnvironment</key>
<dict>
<key>LC_ALL</key>
<string>UTF-8</string>
</dict>
</dict>
</plist>
......@@ -97,10 +97,4 @@ if is_darwin:
app = BUNDLE(exe,
name='sakia.app',
icon='sakia.ico',
bundle_identifier=None,
info_plist={
'NSHighResolutionCapable': 'True',
'LSBackgroundOnly': 'False'
},)
bundle_identifier=None,) # take care, info.plist will be overridden.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment