From b146ba1d86067bb717de0ae50026792ea127e0e9 Mon Sep 17 00:00:00 2001 From: Anton Grouchtchak Date: Wed, 18 May 2022 17:14:05 -0400 Subject: [PATCH 1/7] Wait for Vue to finish loading before showing HTML This prevents flashing static HTML elements (icons, modals) on reload. --- src/www/index.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/www/index.html b/src/www/index.html index 4080c51a..c84bb1bc 100644 --- a/src/www/index.html +++ b/src/www/index.html @@ -10,12 +10,18 @@ + +
-
+
-

Made by Made by Emile Nijssen · Donate · GitHub

@@ -482,4 +488,4 @@ - \ No newline at end of file + From c663d02a365c66c881d55eed5d4661dbd0f1b195 Mon Sep 17 00:00:00 2001 From: Anton Grouchtchak Date: Wed, 18 May 2022 17:18:30 -0400 Subject: [PATCH 2/7] Fix typo Change `Created/Last seen at` to `Created/Last seen on`. --- src/www/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/www/index.html b/src/www/index.html index c84bb1bc..6e99ca2d 100644 --- a/src/www/index.html +++ b/src/www/index.html @@ -107,7 +107,7 @@
-
+
+ :title="'Last seen on ' + dateTime(new Date(client.latestHandshakeAt))"> · {{new Date(client.latestHandshakeAt) | timeago}}
From 0da7ee1c684b519d8ecbd86c47aaaf5b4d4e97fb Mon Sep 17 00:00:00 2001 From: Emile Nijssen Date: Sun, 12 Jun 2022 22:07:28 +0200 Subject: [PATCH 3/7] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ae66b35..a1168133 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ These options can be configured by setting environment variables using `-e KEY=" > If you change `WG_PORT`, make sure to also change the exposed port. -# Updating +## Updating To update to the latest version, simply run: @@ -103,4 +103,8 @@ docker rm wg-easy docker pull weejewel/wg-easy ``` -And then run the `docker run -d \ ...` command above again. \ No newline at end of file +And then run the `docker run -d \ ...` command above again. + +## Common Use Cases + +* [Using WireGuard-Easy with Pi-Hole](https://github.com/WeeJeWel/wg-easy/wiki/Using-WireGuard-Easy-with-Pi-Hole) From e7f4cc2d56fe83e629166795db432ea203e635fd Mon Sep 17 00:00:00 2001 From: Emile Nijssen Date: Sun, 12 Jun 2022 22:10:50 +0200 Subject: [PATCH 4/7] use relative paths --- src/www/js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/js/api.js b/src/www/js/api.js index accbb579..84885f17 100644 --- a/src/www/js/api.js +++ b/src/www/js/api.js @@ -6,7 +6,7 @@ class API { async call({ method, path, body }) { - const res = await fetch(`/api${path}`, { + const res = await fetch(`./api${path}`, { method, headers: { 'Content-Type': 'application/json', From a72029d7e5dd0e7ac26acdd93e6aee939c6b8a52 Mon Sep 17 00:00:00 2001 From: Emile Nijssen Date: Sun, 12 Jun 2022 22:48:30 +0200 Subject: [PATCH 5/7] improve chart --- src/www/index.html | 15 +++++---------- src/www/js/app.js | 45 ++++++++++++++++++++++++--------------------- 2 files changed, 29 insertions(+), 31 deletions(-) diff --git a/src/www/index.html b/src/www/index.html index 6e99ca2d..7e443de8 100644 --- a/src/www/index.html +++ b/src/www/index.html @@ -10,7 +10,7 @@ - +