Compare commits

...

1 Commits
1.2.1 ... 1.2.2

Author SHA1 Message Date
d93cb50896 add version info to mac info_plist (#146) 2019-09-29 22:11:42 +01:00

View File

@ -1,6 +1,7 @@
# -*- mode: python -*-
import platform
from comictaggerlib import ctversion
block_cipher = None
@ -47,6 +48,9 @@ app = BUNDLE(exe,
name='ComicTagger.app',
icon='mac/app.icns',
info_plist={
'NSHighResolutionCapable': 'True'
'NSHighResolutionCapable': 'True',
'CFBundleDisplayName': 'ComicTagger',
'CFBundleShortVersionString': ctversion.version,
'CFBundleVersion': ctversion.version
},
bundle_identifier=None)