1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

Release 3.11

This commit is contained in:
Jonathan Harris 2018-08-02 20:20:08 +01:00
parent e731cac0d7
commit 8c01c580a0
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ from sys import platform
appname = 'EDMarketConnector'
applongname = 'E:D Market Connector'
appcmdname = 'EDMC'
appversion = '3.1.0.0'
appversion = '3.1.1.0'
update_feed = 'https://marginal.org.uk/edmarketconnector.xml'
update_interval = 47*60*60

View File

@ -87,7 +87,7 @@ if sys.platform=='darwin':
'CFBundleShortVersionString': VERSION,
'CFBundleVersion': VERSION,
'LSMinimumSystemVersion': '10.10',
'NSHumanReadableCopyright': u'© 2015-2017 Jonathan Harris',
'NSHumanReadableCopyright': u'© 2015-2018 Jonathan Harris',
'SUEnableAutomaticChecks': True,
'SUShowReleaseNotes': True,
'SUAllowsAutomaticUpdates': False,
@ -138,14 +138,14 @@ setup(
windows = [ {'dest_base': APPNAME,
'script': APP,
'icon_resources': [(0, '%s.ico' % APPNAME)],
'copyright': u'© 2015-2017 Jonathan Harris',
'copyright': u'© 2015-2018 Jonathan Harris',
'name': APPNAME, # WinSparkle
'company_name': 'Marginal', # WinSparkle
'other_resources': [(24, 1, open(APPNAME+'.manifest').read())],
} ],
console = [ {'dest_base': APPCMDNAME,
'script': APPCMD,
'copyright': u'© 2015-2017 Jonathan Harris',
'copyright': u'© 2015-2018 Jonathan Harris',
'name': APPNAME,
'company_name': 'Marginal',
} ],