Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #39 from calexandru2018/testing
Browse files Browse the repository at this point in the history
New version release (v2)
  • Loading branch information
calexandru2018 authored Apr 14, 2020
2 parents d8a8125 + 729369b commit 94ee6de
Show file tree
Hide file tree
Showing 318 changed files with 3,426 additions and 2,815 deletions.
7 changes: 5 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
include protonvpn_linux_gui/resources/main.glade
include protonvpn_linux_gui/resources/*.png
include protonvpn_linux_gui/resources/flags/*.png
include protonvpn_linux_gui/resources/main.css
include protonvpn_linux_gui/resources/img/logo/*.png
include protonvpn_linux_gui/resources/img/utils/*.png
include protonvpn_linux_gui/resources/img/flags/large/*.jpg
include protonvpn_linux_gui/resources/img/flags/small/*.png
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ verify_ssl = true
requests = "*"
pycairo = "*"
pygobject = "*"
protonvpn-cli = "==2.2.2"
protonvpn-cli = "==2.2.2"
configparser = "==4.0.2"
20 changes: 13 additions & 7 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,22 +223,22 @@ If you would like to launch the GUI without having to type in your sudo password
# GUI Layout
<p align="center">
<img src="https://i.imgur.com/VnOMaeg.png" alt="Logo"></img>
<img src="https://i.imgur.com/7G9jGbn.png" alt="Dashboard"></img>
</p>
<p align="center">
<img src="https://i.imgur.com/BbwBiu6.png" alt="Logo"></img>
<img src="https://i.imgur.com/tdV0mYz.png" alt="General Settings"></img>
</p>
<p align="center">
<img src="https://i.imgur.com/103IBOc.png" alt="Logo"></img>
<img src="https://i.imgur.com/LMuCWQS.png" alt="Connection Settings"></img>
</p>
<p align="center">
<img src="https://i.imgur.com/zq93OdU.png" alt="Logo"></img>
<img src="https://i.imgur.com/d4gQGJ2.png" alt="Advanced Settings"></img>
</p>
<p align="center">
<img src="https://i.imgur.com/bhK8qqB.png" alt="Logo"></img>
<img src="https://i.imgur.com/XcRU3z7.png" alt="About"></img>
</p>
10 changes: 8 additions & 2 deletions protonvpn_linux_gui/constants.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import os
try:
from protonvpn_cli.constants import VERSION as cli_version
from protonvpn_cli.constants import VERSION as cli_version, USER
except:
cli_version = "Not installed"
VERSION = "1.8.3"

VERSION = "2.0.0"
GITHUB_URL_RELEASE = "https://github.com/calexandru2018/protonvpn-linux-gui/releases/latest"

# GUI configurations
GUI_CONFIG_DIR = os.path.join(os.path.expanduser("~{0}".format(USER)), ".pvpn-gui")
GUI_CONFIG_FILE = os.path.join(GUI_CONFIG_DIR, "pvpn-gui.cfg")

# Tray configuration naming
TRAY_CFG_SERVERLOAD = "display_serverload"
TRAY_CFG_SERVENAME = "display_server"
Expand Down
Loading

0 comments on commit 94ee6de

Please sign in to comment.