Added option for reading changelog in help menu

This commit is contained in:
2018-03-01 11:11:55 -06:00
parent 741843b827
commit 313c5736f6
2 changed files with 15 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ class mainWindow(wx.Frame):
help_ = wx.Menu()
self.about = help_.Append(wx.NewId(), _(u"About {0}").format(application.name,))
self.check_for_updates = help_.Append(wx.NewId(), _(u"Check for updates"))
self.changelog = help_.Append(wx.NewId(), _("What's new in this version?"))
self.website = help_.Append(wx.NewId(), _("Visit website"))
mb.Append(player, _(u"Player"))
mb.Append(help_, _(u"Help"))