From b34c980ea52596445e5b1f896314e369051d8d0f Mon Sep 17 00:00:00 2001 From: bel Date: Tue, 14 Oct 2025 23:46:48 -0600 Subject: [PATCH] fade old text --- ' | 158 ++++++++++++++++++++++++++++++++++++++++++ src/public/index.html | 17 ++++- 2 files changed, 173 insertions(+), 2 deletions(-) create mode 100644 ' diff --git a/' b/' new file mode 100644 index 0000000..d0f9f77 --- /dev/null +++ b/' @@ -0,0 +1,158 @@ + + + + + + + + + + + +
+
+
+

+

+ +

+
+
+ + +
+ + +
+ + +
+
+
+
+
+ + diff --git a/src/public/index.html b/src/public/index.html index 10ec692..d0f9f77 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -13,7 +13,7 @@ var print = function(message) { var before = output.innerHTML.split("
"); - before.unshift(`${new Date().toLocaleTimeString()} | ${message}`); + before.unshift(`${new Date().toLocaleTimeString()} | ${message}`); if (before.length > 20) { before = before.slice(0, 20); } @@ -83,7 +83,7 @@ } window.speechSynthesis.speak(utterThis); - print("RESPONSE: " + data.Text); + print(data.Text); } ws.onerror = function(evt) { print("ERROR: " + evt.data); @@ -117,6 +117,19 @@ }; }); +