From 47d0157d012e9e7694d0d0bc1f90ce8d580a1356 Mon Sep 17 00:00:00 2001 From: Erik van Sebille Date: Mon, 31 Mar 2025 13:49:44 +0200 Subject: [PATCH 1/3] Move driftermap code to /public To check if that fixes #135. If so, we may want to rename and move the files to a separate directory --- main.js => public/main.js | 0 public/marker.svg | 137 ++++++++++++++++++++++++++++++++++++++ public/marker_notx.svg | 113 +++++++++++++++++++++++++++++++ 3 files changed, 250 insertions(+) rename main.js => public/main.js (100%) create mode 100644 public/marker.svg create mode 100644 public/marker_notx.svg diff --git a/main.js b/public/main.js similarity index 100% rename from main.js rename to public/main.js diff --git a/public/marker.svg b/public/marker.svg new file mode 100644 index 00000000..6e33bfb3 --- /dev/null +++ b/public/marker.svg @@ -0,0 +1,137 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/public/marker_notx.svg b/public/marker_notx.svg new file mode 100644 index 00000000..b365181b --- /dev/null +++ b/public/marker_notx.svg @@ -0,0 +1,113 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + From 4af409b173141f72fd399a2f836cfebe6f59a181 Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Mon, 31 Mar 2025 13:57:56 +0200 Subject: [PATCH 2/3] Delete duplicated SVGs --- public/marker.svg | 137 ----------------------------------------- public/marker_notx.svg | 113 --------------------------------- 2 files changed, 250 deletions(-) delete mode 100644 public/marker.svg delete mode 100644 public/marker_notx.svg diff --git a/public/marker.svg b/public/marker.svg deleted file mode 100644 index 6e33bfb3..00000000 --- a/public/marker.svg +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/public/marker_notx.svg b/public/marker_notx.svg deleted file mode 100644 index b365181b..00000000 --- a/public/marker_notx.svg +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - From 1bd45dd0ac365dd6c8d51e03470cb5ce3f9b37ac Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Mon, 31 Mar 2025 14:14:47 +0200 Subject: [PATCH 3/3] Move main.js and update refs --- public/driftermap.html | 2 +- public/{ => drifters}/main.js | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename public/{ => drifters}/main.js (100%) diff --git a/public/driftermap.html b/public/driftermap.html index bdf1be29..9b263720 100644 --- a/public/driftermap.html +++ b/public/driftermap.html @@ -259,5 +259,5 @@ - + \ No newline at end of file diff --git a/public/main.js b/public/drifters/main.js similarity index 100% rename from public/main.js rename to public/drifters/main.js