From 684d87c6c6da21688ceb176841c3e5efb11f18a9 Mon Sep 17 00:00:00 2001 From: warp-core Date: Sat, 25 Oct 2025 16:32:51 +0100 Subject: [PATCH 1/2] Update plugins.html --- plugins.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.html b/plugins.html index 30f8eef..e9de2da 100644 --- a/plugins.html +++ b/plugins.html @@ -101,7 +101,7 @@

Plugin List

return [img]; } function createLicense(spdx = '') { - if (!spdx) { + if (!spdx || spdx === 'ALL-RIGHTS-RESERVED') { return ['All Rights Reserved by author(s)']; } const link = document.createElement('a'); From e7df0fb4992a63d752a15101f979d68c4ef60f6b Mon Sep 17 00:00:00 2001 From: warp-core Date: Sat, 25 Oct 2025 17:34:29 +0100 Subject: [PATCH 2/2] Update plugins.html Co-authored-by: M*C*O --- plugins.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.html b/plugins.html index e9de2da..4fa0939 100644 --- a/plugins.html +++ b/plugins.html @@ -102,7 +102,7 @@

Plugin List

} function createLicense(spdx = '') { if (!spdx || spdx === 'ALL-RIGHTS-RESERVED') { - return ['All Rights Reserved by author(s)']; + return ['All Rights Reserved']; } const link = document.createElement('a'); link.href = `https://spdx.org/licenses/${spdx}.html`;