1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-05-30 23:29:30 +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' appname = 'EDMarketConnector'
applongname = 'E:D Market Connector' applongname = 'E:D Market Connector'
appcmdname = 'EDMC' appcmdname = 'EDMC'
appversion = '3.1.0.0' appversion = '3.1.1.0'
update_feed = 'https://marginal.org.uk/edmarketconnector.xml' update_feed = 'https://marginal.org.uk/edmarketconnector.xml'
update_interval = 47*60*60 update_interval = 47*60*60

View File

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