mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
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)
|
VERSION: $(cat ./artifacts/VERSION)
|
||||||
uses: yuezk/github-actions-deploy-aur@update-pkgver
|
uses: yuezk/github-actions-deploy-aur@update-pkgver
|
||||||
with:
|
with:
|
||||||
pkgname: globalprotect-openconnect
|
pkgname: globalprotect-openconnect-git
|
||||||
pkgbuild: ./artifacts/aur/PKGBUILD
|
pkgbuild: ./artifacts/aur/PKGBUILD
|
||||||
assets: ./artifacts/aur/*.tar.gz
|
assets: ./artifacts/aur/*.tar.gz
|
||||||
update_pkgver: true
|
update_pkgver: true
|
||||||
|
@@ -32,8 +32,8 @@ GPClient::GPClient(QWidget *parent, IVpn *vpn)
|
|||||||
QObject *ov = dynamic_cast<QObject*>(vpn);
|
QObject *ov = dynamic_cast<QObject*>(vpn);
|
||||||
connect(ov, SIGNAL(connected()), this, SLOT(onVPNConnected()));
|
connect(ov, SIGNAL(connected()), this, SLOT(onVPNConnected()));
|
||||||
connect(ov, SIGNAL(disconnected()), this, SLOT(onVPNDisconnected()));
|
connect(ov, SIGNAL(disconnected()), this, SLOT(onVPNDisconnected()));
|
||||||
connect(ov, SIGNAL(error(const &QString)), this, SLOT(onVPNError(const QString&)));
|
connect(ov, SIGNAL(error(QString)), this, SLOT(onVPNError(QString)));
|
||||||
connect(ov, SIGNAL(logAvailable(const &QString)), this, SLOT(onVPNLogAvailable(const QString&)));
|
connect(ov, SIGNAL(logAvailable(QString)), this, SLOT(onVPNLogAvailable(QString)));
|
||||||
|
|
||||||
// Initiallize the context menu of system tray.
|
// Initiallize the context menu of system tray.
|
||||||
initSystemTrayIcon();
|
initSystemTrayIcon();
|
||||||
|
@@ -27,7 +27,7 @@ public:
|
|||||||
signals: // SIGNALS
|
signals: // SIGNALS
|
||||||
void connected();
|
void connected();
|
||||||
void disconnected();
|
void disconnected();
|
||||||
void error(const QString &errorMessage);
|
void error(QString errorMessage);
|
||||||
void logAvailable(const QString &log);
|
void logAvailable(QString log);
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
8
debian/changelog
vendored
8
debian/changelog
vendored
@@ -1,3 +1,11 @@
|
|||||||
|
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
|
globalprotect-openconnect (1.4.0-1) unstable; urgency=medium
|
||||||
|
|
||||||
* Updated VERSION, Bumped 1.3.4 –> 1.4.0
|
* Updated VERSION, Bumped 1.3.4 –> 1.4.0
|
||||||
|
@@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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
|
Wed Mar 2 13:34:19 UTC 2022 - k3vinyue@gmail.com - 1.4.0
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
Name: globalprotect-openconnect
|
Name: globalprotect-openconnect
|
||||||
Version: 1.4.0
|
Version: 1.4.1
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A GlobalProtect VPN client powered by OpenConnect
|
Summary: A GlobalProtect VPN client powered by OpenConnect
|
||||||
Group: Productivity/Networking/PPP
|
Group: Productivity/Networking/PPP
|
||||||
|
@@ -18,7 +18,7 @@ cp -r ./packaging/obs ./artifacts
|
|||||||
cp ./artifacts/*.tar.gz ./artifacts/obs/globalprotect-openconnect.tar.gz
|
cp ./artifacts/*.tar.gz ./artifacts/obs/globalprotect-openconnect.tar.gz
|
||||||
|
|
||||||
# Prepare the AUR package
|
# 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
|
cp ./artifacts/*.tar.gz ./artifacts/aur/globalprotect-openconnect.tar.gz
|
||||||
|
|
||||||
# Prepare the flatpak package
|
# Prepare the flatpak package
|
||||||
|
Reference in New Issue
Block a user