This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27eee6c
commit b79f673
Showing
3 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
protonvpn-network-manager-openvpn (0.0.4) unstable; urgency=medium | ||
|
||
* Fix entry point in setup.py | ||
|
||
-- Alexandru Cheltuitor <[email protected]> Wed, 05 Jul 2023 12:00:00 +0100 | ||
|
||
protonvpn-network-manager-openvpn (0.0.3) unstable; urgency=medium | ||
|
||
* Fix proton loader ids | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
%define unmangled_name proton-vpn-network-manager-openvpn | ||
%define version 0.0.3 | ||
%define version 0.0.4 | ||
%define release 1 | ||
|
||
Prefix: %{_prefix} | ||
|
@@ -49,6 +49,9 @@ python3 setup.py install --single-version-externally-managed -O1 --root=$RPM_BUI | |
%defattr(-,root,root) | ||
|
||
%changelog | ||
* Wed Jul 05 2023 Alexandru Cheltuitor <[email protected]> 0.0.4 | ||
- Fix entry point in setup.py | ||
|
||
* Tue Dec 13 2022 Josep Llaneras <[email protected]> 0.0.3 | ||
- Fix proton loader ids | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
setup( | ||
name="proton-vpn-network-manager-openvpn", | ||
version="0.0.3", | ||
version="0.0.4", | ||
description="Proton Technologies VPN connector for linux", | ||
author="Proton Technologies", | ||
author_email="[email protected]", | ||
|
@@ -16,7 +16,7 @@ | |
"development": ["wheel", "pytest", "pytest-cov", "flake8", "pylint"] | ||
}, | ||
entry_points={ | ||
"proton_loader_nm_protocol": [ | ||
"proton_loader_linuxnetworkmanager": [ | ||
"openvpn-tcp = proton.vpn.backend.linux.networkmanager.protocol.openvpn:OpenVPNTCP", | ||
"openvpn-udp = proton.vpn.backend.linux.networkmanager.protocol.openvpn:OpenVPNUDP", | ||
] | ||
|