Compare commits

...

3 Commits

Author SHA1 Message Date
Bernd Storath 9ebf2c1d33 chore: disable latest tag for docker 2 days ago
Bernd Storath d0f85316a6 chore: delete changelog from docs 2 days ago
Bernd Storath ff9fd553c5
Fix: sync / rekey issue (#1789) 2 days ago
  1. 7
      .github/workflows/deploy.yml
  2. 16
      docs/content/changelog.json
  3. 7
      src/server/utils/WireGuard.ts

7
.github/workflows/deploy.yml

@ -6,6 +6,9 @@ on:
tags:
- "v*"
# This workflow does not support fixing old versions
# as this will break the latest and major tags
jobs:
docker:
name: Build & Deploy Docker
@ -31,6 +34,8 @@ jobs:
with:
images: |
ghcr.io/wg-easy/wg-easy
flavor: |
latest=false
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}
@ -87,8 +92,6 @@ jobs:
cd docs
git fetch origin gh-pages --depth=1 || true
# latest will point to old docs if old tag is pushed
# Extract version numbers
DOCS_VERSION=${GITHUB_REF#refs/tags/} # e.g. v1.2.3 or v1.2.3-beta
MINOR_VERSION=$(echo $DOCS_VERSION | cut -d. -f1,2) # e.g. v1.2

16
docs/content/changelog.json

@ -1,16 +0,0 @@
{
"1": "Initial version. Enjoy!",
"2": "You can now rename a client & update the address. Enjoy!",
"3": "Many improvements and small changes. Enjoy!",
"4": "Now with pretty charts for client's network speed. Enjoy!",
"5": "Many small improvements & feature requests. Enjoy!",
"6": "Many small performance improvements & bug fixes. Enjoy!",
"7": "Improved the look & performance of the upload/download chart.",
"8": "Updated to Node.js v18.",
"9": "Fixed issue running on devices with older kernels.",
"10": "Added sessionless HTTP API auth & automatic dark mode.",
"11": "Multilanguage Support & various bugfixes.",
"12": "UI_TRAFFIC_STATS, Import json configurations with no PreShared-Key, allow clients with no privateKey & more.",
"13": "New framework (h3), UI_CHART_TYPE, some bugfixes & more.",
"14": "Home Assistent support, PASSWORD_HASH (inc. Helper), translation updates bugfixes & more."
}

7
src/server/utils/WireGuard.ts

@ -203,6 +203,7 @@ class WireGuard {
async cronJob() {
const clients = await Database.clients.getAll();
let needsSave = false;
// Expires Feature
for (const client of clients) {
if (client.enabled !== true) continue;
@ -212,6 +213,7 @@ class WireGuard {
) {
WG_DEBUG(`Client ${client.id} expired.`);
await Database.clients.toggle(client.id, false);
needsSave = true;
}
}
// One Time Link Feature
@ -222,10 +224,13 @@ class WireGuard {
) {
WG_DEBUG(`OneTimeLink for Client ${client.id} expired.`);
await Database.oneTimeLinks.delete(client.id);
// otl does not need wireguard sync
}
}
await this.saveConfig();
if (needsSave) {
await this.saveConfig();
}
}
}

Loading…
Cancel
Save