From ab440a3d7b94405f423776ec8786c643fb2f9136 Mon Sep 17 00:00:00 2001 From: city-unit <140349364+city-unit@users.noreply.github.com> Date: Wed, 30 Aug 2023 22:54:34 -0400 Subject: [PATCH 01/25] Uhh, mobile support --- public/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/public/style.css b/public/style.css index 9f750d875..f04607ffc 100644 --- a/public/style.css +++ b/public/style.css @@ -3584,4 +3584,20 @@ a { width: 100%; height: 100%; object-fit: cover; +} + +/* Jank mobile support for gallery and future draggables */ +@media screen and (max-width: 1000px) { + #gallery { + display: block; + width: 100vw; + height: 100vh; + z-index: 9999; + } + .draggable { + display: block; + width: 100vw; + height: 100vh; + z-index: 9999; + } } \ No newline at end of file From 37eb0746527412cb9b6d9d04c55adad6181bed7d Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sat, 2 Sep 2023 16:39:31 +0300 Subject: [PATCH 02/25] Fix maxlength on instruct stop sequence --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index e2a8437d6..259beab85 100644 --- a/public/index.html +++ b/public/index.html @@ -2357,7 +2357,7 @@ Stop Sequence
- +
From 242600a5a32d6ad25abbab9093c15120bb5c3ea0 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sat, 2 Sep 2023 17:28:03 +0300 Subject: [PATCH 03/25] Remove group chat no members warning --- public/scripts/group-chats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/group-chats.js b/public/scripts/group-chats.js index 86ad3eead..ee75a3571 100644 --- a/public/scripts/group-chats.js +++ b/public/scripts/group-chats.js @@ -558,7 +558,7 @@ async function generateGroupWrapper(by_auto_mode, type = null, params = {}) { } if (activatedMembers.length === 0) { - toastr.warning('All group members are disabled. Enable at least one to get a reply.'); + //toastr.warning('All group members are disabled. Enable at least one to get a reply.'); // Send user message as is const bias = getBiasStrings(userInput, type); From 2d933f835c60bd4f06656df1886cf18dc317e759 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sat, 2 Sep 2023 18:32:15 +0300 Subject: [PATCH 04/25] Move toasts to top center --- public/index.html | 1 + public/style.css | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/public/index.html b/public/index.html index 259beab85..084ca9365 100644 --- a/public/index.html +++ b/public/index.html @@ -4536,6 +4536,7 @@ toastr.options.extendedTimeOut = 10000; // How long the toast will display after a user hovers over it toastr.options.progressBar = true; // Visually indicate how long before a toast expires. toastr.options.closeButton = true; // enable a close button + toastr.options.positionClass = "toast-top-center"; // Where to position the toast container