MacOS X tweaks

- put version in the app bundle
- do not include version in the .app bundle name

Closes #19
This commit is contained in:
David Andrs 2021-08-10 06:48:56 -06:00 committed by Rebecca
parent e0cf0bef43
commit f08ac4cfe2

View file

@ -59,9 +59,10 @@ exe = EXE(
if sys.platform == 'darwin':
app = BUNDLE(
exe,
name=f'{appname}.app',
name=f'{constants.APPNAME}.app',
icon=join('beeref', 'assets', icon),
bundle_identifier=None,
bundle_identifier='org.beeref.app',
version=f'{constants.VERSION}',
info_plist={
'CFBundleDocumentTypes': [
{