From bab7bd1c80bbd58880d6b277f6071fd52df9264e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 16:40:26 +0000 Subject: [PATCH 1/3] Initial plan From af29f7d92c49c8ed083c2fcd0fa0286fa1f49a8e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 16:43:58 +0000 Subject: [PATCH 2/3] Fix dev deployment paths: copy content directory and use relative imports Co-authored-by: MrAlders0n <55921894+MrAlders0n@users.noreply.github.com> --- .github/workflows/deploy.yml | 1 + index.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d7e372b..de98397 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -53,6 +53,7 @@ jobs: mkdir -p _site/dev cp -r dev-content/* _site/dev/ 2>/dev/null || true + cp -r dev-content/content _site/dev/ 2>/dev/null || true # Inject dev badge with date DEV_DATE=$(date -u +"%Y-%m-%d %H:%M UTC") diff --git a/index.html b/index.html index e367651..2324745 100644 --- a/index.html +++ b/index.html @@ -200,7 +200,7 @@

Session Pings

From 8a2dac2dfb341b0360c067c24d332c9362a869a4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 16:44:57 +0000 Subject: [PATCH 3/3] Fix absolute path in wardrive.js import statement Co-authored-by: MrAlders0n <55921894+MrAlders0n@users.noreply.github.com> --- content/wardrive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/wardrive.js b/content/wardrive.js index c130622..fe7b696 100644 --- a/content/wardrive.js +++ b/content/wardrive.js @@ -5,7 +5,7 @@ // - Manual "Send Ping" and Auto mode (interval selectable: 15/30/60s) // - Acquire wake lock during auto mode to keep screen awake -import { WebBleConnection } from "/content/mc/index.js"; // your BLE client +import { WebBleConnection } from "./mc/index.js"; // your BLE client // ---- Config ---- const CHANNEL_NAME = "#wardriving"; // change to "#wardrive" if needed