Revise Versioning to 0.4.0

This commit is contained in:
Mykola Grymalyuk
2022-01-18 21:39:45 -07:00
parent b2e5037c2e
commit 461f9ddb9b
7 changed files with 20 additions and 23 deletions
+5 -5
View File
@@ -340,7 +340,7 @@ class wx_python_gui:
# Define Menu
# Header: Get help with OpenCore Legacy Patcher
# Subheader: Following resources are available:
# Button: Official Guide
# Button: Offical Guide
# Button: Offical Discord Server
self.frame.DestroyChildren()
@@ -362,8 +362,8 @@ class wx_python_gui:
self.subheader.Centre(wx.HORIZONTAL)
# Official Guide
self.guide = wx.Button(self.frame, label="Official Guide", size=(200,30))
# Offical Guide
self.guide = wx.Button(self.frame, label="Offical Guide", size=(200,30))
self.guide.SetPosition(
wx.Point(
self.subheader.GetPosition().x,
@@ -374,8 +374,8 @@ class wx_python_gui:
self.guide.Bind(wx.EVT_BUTTON, lambda event: webbrowser.open(self.constants.guide_link))
self.guide.Centre(wx.HORIZONTAL)
# Official Discord Server
self.discord = wx.Button(self.frame, label="Official Discord Server", size=(200,30))
# Offical Discord Server
self.discord = wx.Button(self.frame, label="Offical Discord Server", size=(200,30))
self.discord.SetPosition(
wx.Point(
self.guide.GetPosition().x,