mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
04d180e11a | ||
|
6d3b127569 | ||
|
e72b25e415 | ||
|
37a511c24d | ||
|
ad7db36c92 | ||
|
11dc5920ef | ||
|
e6383916c7 | ||
|
1d9d928b26 |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -220,7 +220,7 @@ jobs:
|
||||
VERSION: $(cat ./artifacts/VERSION)
|
||||
uses: yuezk/github-actions-deploy-aur@update-pkgver
|
||||
with:
|
||||
pkgname: globalprotect-openconnect
|
||||
pkgname: globalprotect-openconnect-git
|
||||
pkgbuild: ./artifacts/aur/PKGBUILD
|
||||
assets: ./artifacts/aur/*.tar.gz
|
||||
update_pkgver: true
|
||||
|
@@ -32,8 +32,8 @@ GPClient::GPClient(QWidget *parent, IVpn *vpn)
|
||||
QObject *ov = dynamic_cast<QObject*>(vpn);
|
||||
connect(ov, SIGNAL(connected()), this, SLOT(onVPNConnected()));
|
||||
connect(ov, SIGNAL(disconnected()), this, SLOT(onVPNDisconnected()));
|
||||
connect(ov, SIGNAL(error(const &QString)), this, SLOT(onVPNError(const QString&)));
|
||||
connect(ov, SIGNAL(logAvailable(const &QString)), this, SLOT(onVPNLogAvailable(const QString&)));
|
||||
connect(ov, SIGNAL(error(QString)), this, SLOT(onVPNError(QString)));
|
||||
connect(ov, SIGNAL(logAvailable(QString)), this, SLOT(onVPNLogAvailable(QString)));
|
||||
|
||||
// Initiallize the context menu of system tray.
|
||||
initSystemTrayIcon();
|
||||
|
@@ -19,6 +19,7 @@ QNetworkReply* gpclient::helper::createRequest(QString url, QByteArray params)
|
||||
// Skip the ssl verifying
|
||||
QSslConfiguration conf = request.sslConfiguration();
|
||||
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
|
||||
conf.setSslOption(QSsl::SslOptionDisableLegacyRenegotiation, false);
|
||||
request.setSslConfiguration(conf);
|
||||
|
||||
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
||||
|
@@ -27,7 +27,7 @@ public:
|
||||
signals: // SIGNALS
|
||||
void connected();
|
||||
void disconnected();
|
||||
void error(const QString &errorMessage);
|
||||
void logAvailable(const QString &log);
|
||||
void error(QString errorMessage);
|
||||
void logAvailable(QString log);
|
||||
};
|
||||
#endif
|
||||
|
15
debian/changelog
vendored
15
debian/changelog
vendored
@@ -1,3 +1,18 @@
|
||||
globalprotect-openconnect (1.4.2-1) unstable; urgency=medium
|
||||
|
||||
* Updated VERSION, Bumped 1.4.1 –> 1.4.2
|
||||
* Clear SSL_OP_LEGACY_SERVER_CONNECT (#146)
|
||||
|
||||
-- Kevin Yue <k3vinyue@gmail.com> Fri, 06 May 2022 22:18:19 +0800
|
||||
|
||||
globalprotect-openconnect (1.4.1-1) unstable; urgency=medium
|
||||
|
||||
* Updated VERSION, Bumped 1.4.0 –> 1.4.1
|
||||
* print the gpservice logs
|
||||
* update AUR packaging
|
||||
|
||||
-- Kevin Yue <k3vinyue@gmail.com> Thu, 03 Mar 2022 21:58:59 +0800
|
||||
|
||||
globalprotect-openconnect (1.4.0-1) unstable; urgency=medium
|
||||
|
||||
* Updated VERSION, Bumped 1.3.4 –> 1.4.0
|
||||
|
@@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri May 6 14:18:19 UTC 2022 - k3vinyue@gmail.com - 1.4.2
|
||||
|
||||
- Update to 1.4.2
|
||||
* Updated VERSION, Bumped 1.4.1 –> 1.4.2
|
||||
* Clear SSL_OP_LEGACY_SERVER_CONNECT (#146)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 3 13:58:59 UTC 2022 - k3vinyue@gmail.com - 1.4.1
|
||||
|
||||
- Update to 1.4.1
|
||||
* Updated VERSION, Bumped 1.4.0 –> 1.4.1
|
||||
* print the gpservice logs
|
||||
* update AUR packaging
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 2 13:34:19 UTC 2022 - k3vinyue@gmail.com - 1.4.0
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
Name: globalprotect-openconnect
|
||||
Version: 1.4.0
|
||||
Version: 1.4.2
|
||||
Release: 1
|
||||
Summary: A GlobalProtect VPN client powered by OpenConnect
|
||||
Group: Productivity/Networking/PPP
|
||||
|
@@ -18,7 +18,7 @@ cp -r ./packaging/obs ./artifacts
|
||||
cp ./artifacts/*.tar.gz ./artifacts/obs/globalprotect-openconnect.tar.gz
|
||||
|
||||
# Prepare the AUR package
|
||||
cp ./packaging/aur/PKGBUILD ./artifacts/aur
|
||||
cp ./packaging/aur/PKGBUILD-git ./artifacts/aur/PKGBUILD
|
||||
cp ./artifacts/*.tar.gz ./artifacts/aur/globalprotect-openconnect.tar.gz
|
||||
|
||||
# Prepare the flatpak package
|
||||
|
Reference in New Issue
Block a user