diff --git a/setup.py b/setup.py index 068a9d0..250bef7 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="wireguide", - version="0.0.4", + version="0.0.5", author="Mikael Nordin", author_email="mik@elnord.in", description="A WireGuard GUI for GNU/Linux", diff --git a/wireguide/wireguide b/wireguide/wireguide index 28ec539..34d14d6 100755 --- a/wireguide/wireguide +++ b/wireguide/wireguide @@ -24,7 +24,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan def __init__(self, *args, **kw): super().__init__(*args, **kw) - self.version = "0.0.4" + self.version = "0.0.5" # Get active conns from NetworkManager self.client = NM.Client.new(None) @@ -74,7 +74,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan along with this program. If not, see .""" #wx.MessageBox(about, "About WireGUIde" ,wx.OK | wx.ICON_INFORMATION) info = wx.adv.AboutDialogInfo() - logo = self.get_logo_path() + logo = get_logo_path() if logo: info.SetIcon(wx.Icon(logo, wx.BITMAP_TYPE_PNG)) info.SetName('WireGUIde')