added licensing and attribution to the options section

This commit is contained in:
2025-08-18 21:15:09 -06:00
parent b179df140c
commit 6dd6703d1c
2 changed files with 678 additions and 0 deletions

View File

@@ -251,3 +251,7 @@ app.gui.options_feedbackFloodLimit.innerHTML = '<label for="flood-limit">Audio F
app.gui.options_feedbackTimeout = document.createElement("div");
app.gui.options.body.appendChild(app.gui.options_feedbackTimeout);
app.gui.options_feedbackTimeout.innerHTML = '<label for="flood-timeout">Audio Flood Timeout</label> <input id="flood-timeout" type="number" min=0 step=10 />';
app.gui.options_about = document.createElement("div");
app.gui.options.body.appendChild(app.gui.options_about);
app.gui.options_about.innerHTML = 'App licenced <a href="LICENSE.txt" target="_blank"><img src="images/gplv3-or-later.svg" height="30px" /></a><label>-</label> Cards from <a href="https://assistivecards.com" target="_blank"><img src="images/ac.svg" height="30px" alt="Assistive Cards" /></a>';