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

Release 2.35

This commit is contained in:
Jonathan Harris 2017-07-29 16:22:36 +01:00
parent 2c47f96312
commit 0819465c55
2 changed files with 5 additions and 5 deletions

View File

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

View File

@ -85,8 +85,8 @@ if sys.platform=='darwin':
'CFBundleLocalizations': sorted(set([x[:-len('.lproj')] for x in os.listdir(join(SPARKLE, 'Resources')) if x.endswith('.lproj')]) | set([x[:-len('.strings')] for x in os.listdir('L10n') if x.endswith('.strings')])), # https://github.com/sparkle-project/Sparkle/issues/238
'CFBundleShortVersionString': VERSION,
'CFBundleVersion': VERSION,
'LSMinimumSystemVersion': '10.9',
'NSHumanReadableCopyright': u'© 2015 Jonathan Harris',
'LSMinimumSystemVersion': '10.10',
'NSHumanReadableCopyright': u'© 2015-2017 Jonathan Harris',
'SUEnableAutomaticChecks': True,
'SUShowReleaseNotes': True,
'SUAllowsAutomaticUpdates': False,
@ -129,14 +129,14 @@ setup(
windows = [ {'dest_base': APPNAME,
'script': APP,
'icon_resources': [(0, '%s.ico' % APPNAME)],
'copyright': u'© 2015 Jonathan Harris',
'copyright': u'© 2015-2017 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 Jonathan Harris',
'copyright': u'© 2015-2017 Jonathan Harris',
'name': APPNAME,
'company_name': 'Marginal',
} ],