Skip to content

Commit

Permalink
add version info to mac info_plist (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
davide-romanini committed Sep 29, 2019
1 parent 3316cab commit d93cb50
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion comictagger.spec
@@ -1,6 +1,7 @@
# -*- mode: python -*-

import platform
from comictaggerlib import ctversion

block_cipher = None

Expand Down Expand Up @@ -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)

0 comments on commit d93cb50

Please sign in to comment.