v 0.0.7
This commit is contained in:
parent
f2351217f7
commit
d6654bdb7a
3 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ ingredients:
|
|||
- libnm0
|
||||
- gir1.2-nm-1.0
|
||||
script:
|
||||
- ./usr/bin/pip3 install WireGUIde
|
||||
- ./usr/bin/pip3 install WireGUIde==0.0.6
|
||||
- cp ../ke.mic.wireguide.png ./usr/share/icons/hicolor/256x256/
|
||||
- cp ../ke.mic.wireguide.png .
|
||||
- mkdir -p usr/share/metainfo/ ; cp ../wireguide.appdata.xml usr/share/metainfo/
|
||||
|
@ -33,5 +33,5 @@ script:
|
|||
- MimeType=text/x-python3;
|
||||
- EOF
|
||||
- cp usr/share/applications/ke.mic.wireguide.desktop .
|
||||
- usr/bin/pip3 freeze | grep "wireguide" | cut -d "=" -f 3 >> ../VERSION:0
|
||||
- usr/bin/pip3 freeze | grep "wireguide" | cut -d "=" -f 3 >> ../VERSION
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|||
|
||||
setuptools.setup(
|
||||
name="wireguide",
|
||||
version="0.0.6",
|
||||
version="0.0.7",
|
||||
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.SetIcon(wx.Icon(get_logo_path()))
|
||||
self.version = "0.0.6"
|
||||
self.version = "0.0.7"
|
||||
|
||||
# Get active conns from NetworkManager
|
||||
self.client = NM.Client.new(None)
|
||||
|
|
Loading…
Add table
Reference in a new issue