v0.0.5
This commit is contained in:
parent
b615855966
commit
0258ccb6f5
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(
|
||||
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",
|
||||
|
|
|
@ -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 <https://www.gnu.org/licenses/>."""
|
||||
#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')
|
||||
|
|
Loading…
Add table
Reference in a new issue