From 0819465c559431251c7986bee2cf1b75f42861f2 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Sat, 29 Jul 2017 16:22:36 +0100 Subject: [PATCH] Release 2.35 --- config.py | 2 +- setup.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config.py b/config.py index 847f7278..8f830a3a 100644 --- a/config.py +++ b/config.py @@ -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 diff --git a/setup.py b/setup.py index bd872c2a..4d7e9dc3 100755 --- a/setup.py +++ b/setup.py @@ -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', } ],