From de63c48da2042a1d5cea2a6b0d04a6727cefc740 Mon Sep 17 00:00:00 2001
From: Leon Mika
Date: Wed, 16 Sep 2026 21:52:03 +1000
Subject: [PATCH] Added Queued Pastes
---
Makefile | 2 +-
site/index.html | 1 +
site/queued-pastes/index.html | 42 ++++++++++
site/queued-pastes/prefs.mjs | 27 +++++++
site/queued-pastes/prefs.test.mjs | 36 +++++++++
site/queued-pastes/queue.mjs | 44 +++++++++++
site/queued-pastes/queue.test.mjs | 100 ++++++++++++++++++++++++
site/queued-pastes/script.js | 125 ++++++++++++++++++++++++++++++
site/queued-pastes/style.css | 39 ++++++++++
9 files changed, 415 insertions(+), 1 deletion(-)
create mode 100644 site/queued-pastes/index.html
create mode 100644 site/queued-pastes/prefs.mjs
create mode 100644 site/queued-pastes/prefs.test.mjs
create mode 100644 site/queued-pastes/queue.mjs
create mode 100644 site/queued-pastes/queue.test.mjs
create mode 100644 site/queued-pastes/script.js
create mode 100644 site/queued-pastes/style.css
diff --git a/Makefile b/Makefile
index 84764fb..be7c676 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ build.wasm:
.Phony: build.site
build.site:
- cp -r site/* target/.
+ rsync -a --exclude '*.test.mjs' site/ target/
.Phony: dev
dev: build
diff --git a/site/index.html b/site/index.html
index 9b2fd6b..0c17283 100644
--- a/site/index.html
+++ b/site/index.html
@@ -35,6 +35,7 @@
Android Icon Resizer
Gradient Image
Image Inner Resize
+ Queued Pastes
+
+
+
+
+
+
+
+
+
diff --git a/site/queued-pastes/index.html b/site/queued-pastes/index.html
new file mode 100644
index 0000000..ca9b354
--- /dev/null
+++ b/site/queued-pastes/index.html
@@ -0,0 +1,42 @@
+
+
+