v0.0.3
This commit is contained in:
parent
89a87ad0ba
commit
35363d4bf5
2 changed files with 3 additions and 3 deletions
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="wireguide",
|
name="wireguide",
|
||||||
version="0.0.2",
|
version="0.0.3",
|
||||||
author="Mikael Nordin",
|
author="Mikael Nordin",
|
||||||
author_email="mik@elnord.in",
|
author_email="mik@elnord.in",
|
||||||
description="A WireGuard GUI for GNU/Linux",
|
description="A WireGuard GUI for GNU/Linux",
|
||||||
|
|
|
@ -24,7 +24,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan
|
||||||
def __init__(self, *args, **kw):
|
def __init__(self, *args, **kw):
|
||||||
super().__init__(*args, **kw)
|
super().__init__(*args, **kw)
|
||||||
|
|
||||||
self.version = 0.0.2
|
self.version = "0.0.3"
|
||||||
|
|
||||||
# Get active conns from NetworkManager
|
# Get active conns from NetworkManager
|
||||||
self.client = NM.Client.new(None)
|
self.client = NM.Client.new(None)
|
||||||
|
@ -76,7 +76,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan
|
||||||
info = wx.adv.AboutDialogInfo()
|
info = wx.adv.AboutDialogInfo()
|
||||||
info.SetIcon(wx.Icon('logo.png', wx.BITMAP_TYPE_PNG))
|
info.SetIcon(wx.Icon('logo.png', wx.BITMAP_TYPE_PNG))
|
||||||
info.SetName('WireGUIde')
|
info.SetName('WireGUIde')
|
||||||
info.SetVersion(str(self.version))
|
info.SetVersion(self.version)
|
||||||
info.SetDescription(about)
|
info.SetDescription(about)
|
||||||
info.SetCopyright('(C) 2020 Mikael Nordin')
|
info.SetCopyright('(C) 2020 Mikael Nordin')
|
||||||
info.SetWebSite('https://github.com/mickenordin')
|
info.SetWebSite('https://github.com/mickenordin')
|
||||||
|
|
Loading…
Add table
Reference in a new issue