Version 0.1.0 Beta
This commit is contained in:
parent
aa1018c734
commit
37accb245e
4 changed files with 4 additions and 4 deletions
|
@ -27,7 +27,7 @@ You can install using pip:
|
||||||
sudo apt install python3-wxgtk4.0 network-manager
|
sudo apt install python3-wxgtk4.0 network-manager
|
||||||
pip install wireguide
|
pip install wireguide
|
||||||
```
|
```
|
||||||
or you can download appimage: [WireGUIde-0.0.8.glibc2.32-x86_64.AppImage](https://github.com/mickenordin/wireguide/releases/download/0.0.8/WireGUIde-0.0.8.glibc2.32-x86_64.AppImage)
|
or you can download appimage: [WireGUIde-0.1.0.glibc2.32-x86_64.AppImage](https://github.com/mickenordin/wireguide/releases/download/0.1.0/WireGUIde-0.1.0.glibc2.32-x86_64.AppImage)
|
||||||
|
|
||||||
## Packaging
|
## Packaging
|
||||||

|

|
||||||
|
|
|
@ -35,5 +35,5 @@ script:
|
||||||
- MimeType=text/x-python3;
|
- MimeType=text/x-python3;
|
||||||
- EOF
|
- EOF
|
||||||
- cp usr/share/applications/ke.mic.wireguide.desktop .
|
- cp usr/share/applications/ke.mic.wireguide.desktop .
|
||||||
- echo 0.0.8 > ../VERSION
|
- echo 0.1.0 > ../VERSION
|
||||||
|
|
||||||
|
|
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.8",
|
version="0.1.0",
|
||||||
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",
|
||||||
|
|
|
@ -26,7 +26,7 @@ class WireFrame(wx.Frame): # pylint: disable=too-many-ancestors,too-many-instan
|
||||||
icon = get_logo_path()
|
icon = get_logo_path()
|
||||||
if icon:
|
if icon:
|
||||||
self.SetIcon(wx.Icon(icon))
|
self.SetIcon(wx.Icon(icon))
|
||||||
self.version = "0.0.8"
|
self.version = "0.1.0"
|
||||||
|
|
||||||
# Get active conns from NetworkManager
|
# Get active conns from NetworkManager
|
||||||
self.client = NM.Client.new(None)
|
self.client = NM.Client.new(None)
|
||||||
|
|
Loading…
Add table
Reference in a new issue