From c1221fb6fcb99d45ff21787da6071677aeabe69f Mon Sep 17 00:00:00 2001 From: Athanasius Date: Wed, 1 Jul 2020 17:11:23 +0100 Subject: [PATCH] Change 'Release Notes' URL to use 'Release/A.B.C.D' tag form Closes #544 --- EDMarketConnector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EDMarketConnector.py b/EDMarketConnector.py index 34c8cb4b..5505b124 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -737,7 +737,7 @@ class AppWindow(object): row += 1 self.appversion_label = tk.Label(frame, text=appversion) self.appversion_label.grid(row=row, column=0, sticky=tk.E) - self.appversion = HyperlinkLabel(frame, compoun=tk.RIGHT, text=_('Release Notes'), url='https://github.com/EDCD/EDMarketConnector/releases/tag/rel-{VERSION}'.format(VERSION=appversion), underline=True) + self.appversion = HyperlinkLabel(frame, compoun=tk.RIGHT, text=_('Release Notes'), url='https://github.com/EDCD/EDMarketConnector/releases/tag/Release/{VERSION}'.format(VERSION=appversion), underline=True) self.appversion.grid(row=row, column=2, sticky=tk.W) row += 1 ############################################################