From 3b233771ff7a7767b42d9b7064ed39e9903eac67 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Wed, 1 Jul 2020 18:14:17 +0100 Subject: [PATCH] setup.py: Use APPNAME, not APP, for product_name 'product_name' is used by WinSparkle to determine the Registry path it uses. APP is 'EDMarketConnector.py' not the 'EDMarketConnector' that APPNAME is. This having changed causes a new popup from WinSparkle on first run of post-3.46 asking about whether to enable auto update checks. 3.99.0.0 testers will gave to put up with it on first run. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 61250d99..74db8f4d 100755 --- a/setup.py +++ b/setup.py @@ -154,7 +154,7 @@ setup( 'script': APP, 'icon_resources': [(0, '%s.ico' % APPNAME)], 'company_name': 'EDCD', # WinSparkle - 'product_name': APP, # WinSparkle + 'product_name': APPNAME, # WinSparkle 'version': VERSION, 'copyright': COPYRIGHT, 'other_resources': [(24, 1, open(APPNAME+'.manifest').read())],