From 4cc8193ca447f9b2b64d36e27f1d67c7e3f69e2a Mon Sep 17 00:00:00 2001 From: acidvegas Date: Sat, 14 Feb 2026 18:03:05 -0500 Subject: [PATCH] Updated login links to point to GitHub, changed default server port to 7000, and added a note about WebSocket requirements. Enhanced styling for login note and footer for better user experience. --- superchat/include/script.js | 2 +- superchat/include/style.css | 31 +++++++++++++++++++++++++++++++ superchat/index.html | 14 +++++++++----- 3 files changed, 41 insertions(+), 6 deletions(-) diff --git a/superchat/include/script.js b/superchat/include/script.js index b707a11..d414b23 100644 --- a/superchat/include/script.js +++ b/superchat/include/script.js @@ -7,7 +7,7 @@ // --- State --- let nick = ''; let serverHost = ''; - let serverPort = 6697; + let serverPort = 7000; let useSSL = true; let autoJoinChannels = []; let ws = null; diff --git a/superchat/include/style.css b/superchat/include/style.css index 77f4b14..596b73b 100644 --- a/superchat/include/style.css +++ b/superchat/include/style.css @@ -149,6 +149,37 @@ body { cursor: pointer; } +#login-note { + color: #666; + font-size: 11px; + text-align: left; + width: 280px; + font-style: italic; + margin-top: -6px; +} + +#login-footer { + color: #aaa; + font-size: 11px; + text-align: center; + width: 280px; + margin-top: 10px; + line-height: 1.4; + background: rgba(0, 100, 150, 0.15); + border: 1px solid rgba(0, 150, 200, 0.2); + border-radius: 4px; + padding: 8px 10px; +} + +#login-footer a { + color: #00c8ff; + text-decoration: none; +} + +#login-footer a:hover { + text-decoration: underline; +} + #login-btn { background: #1a1a1a; color: #888; diff --git a/superchat/index.html b/superchat/index.html index 886b39b..0d515ea 100644 --- a/superchat/index.html +++ b/superchat/index.html @@ -10,17 +10,21 @@
- -
SuperChat IRC Gateway
+ +
SuperChat IRC Gateway
- +
+
Requires a WebSocket port (not 6667/6697)
- + +