From e52cc837343fe4516ba72ab1b87fca563e16d392 Mon Sep 17 00:00:00 2001 From: Sabio <124608899+SabioOfficial@users.noreply.github.com> Date: Wed, 26 Nov 2025 20:47:40 +0000 Subject: [PATCH 1/5] Change Sabio Tang's role in README Updated role of Sabio Tang from Developer to Co-Founder. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dc65a1..13bca8a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ | ![Oscar May](https://avatars.githubusercontent.com/u/67429870?v=4) | ![Sabio Tang](https://avatars.githubusercontent.com/u/124608899?v=4) | --- | --- | | [Oscar May](https://github.com/oscarmayreal) | [Sabio Tang](https://github.com/sabioofficial) -| Founder | Developer | +| Founder | Co-Founder | ### FaQ ## Are there any reused code? From c296dd744577fc574f0a6677c8022a346b6f98bf Mon Sep 17 00:00:00 2001 From: Sabio Date: Thu, 27 Nov 2025 19:18:00 +0000 Subject: [PATCH 2/5] =?UTF-8?q?Change=20|=20in=20page=20names=20to=20?= =?UTF-8?q?=E2=80=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/authui/createworkspace.html | 2 +- app/authui/index.html | 2 +- app/authui/reset-password.html | 2 +- app/authui/resetpassword.html | 2 +- app/authui/signin.html | 2 +- app/authui/signup.html | 2 +- app/authui/success.html | 2 +- app/client/index.html | 4 ++-- app/client/pages/channelpage.html | 2 +- app/client/pages/channelthreadpage.html | 2 +- app/client/pages/composepage.html | 2 +- app/client/pages/directpage.html | 2 +- app/index.html | 4 ++-- app/legal/index.html | 2 +- app/legal/terms-of-service/index.html | 9 ++------- 15 files changed, 18 insertions(+), 23 deletions(-) diff --git a/app/authui/createworkspace.html b/app/authui/createworkspace.html index 3437b1f..5c188b5 100644 --- a/app/authui/createworkspace.html +++ b/app/authui/createworkspace.html @@ -4,7 +4,7 @@ - Create A New Workspace + Clatter • New Workspace diff --git a/app/authui/index.html b/app/authui/index.html index 4c4378a..157510e 100644 --- a/app/authui/index.html +++ b/app/authui/index.html @@ -7,7 +7,7 @@ - Clatter | Authentication + Clatter • Authentication diff --git a/app/authui/reset-password.html b/app/authui/reset-password.html index c84d8fe..3848d8c 100644 --- a/app/authui/reset-password.html +++ b/app/authui/reset-password.html @@ -4,7 +4,7 @@ - Clatter | Reset Password + Clatter • Reset Password diff --git a/app/authui/resetpassword.html b/app/authui/resetpassword.html index 9a01e9e..c0dc16a 100644 --- a/app/authui/resetpassword.html +++ b/app/authui/resetpassword.html @@ -4,7 +4,7 @@ - Clatter | Reset Password + Clatter • Reset Password diff --git a/app/authui/signin.html b/app/authui/signin.html index fdc80d7..5e5fb96 100644 --- a/app/authui/signin.html +++ b/app/authui/signin.html @@ -4,7 +4,7 @@ - Clatter | Sign In + Clatter • Sign In diff --git a/app/authui/signup.html b/app/authui/signup.html index d0de2be..0fc8d03 100644 --- a/app/authui/signup.html +++ b/app/authui/signup.html @@ -4,7 +4,7 @@ - Clatter | Sign Up + Clatter • Sign Up diff --git a/app/authui/success.html b/app/authui/success.html index 3a85a8e..e89f09a 100644 --- a/app/authui/success.html +++ b/app/authui/success.html @@ -4,7 +4,7 @@ - Clatter | Success! + Clatter • Success diff --git a/app/client/index.html b/app/client/index.html index a3fd5a3..26c099c 100644 --- a/app/client/index.html +++ b/app/client/index.html @@ -358,9 +358,9 @@ }; if (window.location.origin == "https://beta.clatter.work" || window.location.origin == "https://clatterpreview.quntem.co.uk") { - document.title = "Clatter | Beta Client"; + document.title = "Clatter • Client (Beta)"; } else if (window.location.origin === "http://localhost:3000") { - document.title = "Clatter | Dev Client" + document.title = "Clatter • Client (Local)" } document.addEventListener('DOMContentLoaded', () => { diff --git a/app/client/pages/channelpage.html b/app/client/pages/channelpage.html index dd1206e..a957df0 100644 --- a/app/client/pages/channelpage.html +++ b/app/client/pages/channelpage.html @@ -243,7 +243,7 @@ .then((channel) => { $("#mainarea-header-title").html(channel.name); document.title = - "Clatter | " + fullorg.data.name + " - " + channel.name; + "Clatter • " + fullorg.data.name + " - " + channel.name; socket.emit( "clatter.channel.join", JSON.stringify({ diff --git a/app/client/pages/channelthreadpage.html b/app/client/pages/channelthreadpage.html index c51aad5..4182777 100644 --- a/app/client/pages/channelthreadpage.html +++ b/app/client/pages/channelthreadpage.html @@ -235,7 +235,7 @@ .then(res => res.json()) .then(channel => { $("#mainarea-header-sub").html(channel.name); - document.title = "Clatter | " + fullorg.data.name + " - " + channel.name + " - Thread"; + document.title = "Clatter • " + fullorg.data.name + " - " + channel.name + " - Thread"; socket.emit("clatter.channel.join", JSON.stringify({ room: currentchannelid })); }); diff --git a/app/client/pages/composepage.html b/app/client/pages/composepage.html index 9360b0f..869b9d5 100644 --- a/app/client/pages/composepage.html +++ b/app/client/pages/composepage.html @@ -10,7 +10,7 @@ From bc103ba19ba2e7b10607b4fe315e2062cf10f260 Mon Sep 17 00:00:00 2001 From: Sabio Date: Thu, 27 Nov 2025 19:24:32 +0000 Subject: [PATCH 4/5] Update sitemap.xml --- app/sitemap.xml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/app/sitemap.xml b/app/sitemap.xml index 295f48b..6e02933 100644 --- a/app/sitemap.xml +++ b/app/sitemap.xml @@ -3,85 +3,85 @@ http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"> https://clatter.work/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 1.00 https://clatter.work/client/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.90 https://clatter.work/authui/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.80 https://clatter.work/authui/signin/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.70 https://clatter.work/authui/signup/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.70 https://clatter.work/legal/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.60 https://clatter.work/legal/terms-of-service/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.50 https://beta.clatter.work/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 1.00 https://beta.clatter.work/client/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.90 https://beta.clatter.work/authui/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.80 https://beta.clatter.work/authui/signin/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.70 https://beta.clatter.work/authui/signup/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.70 https://beta.clatter.work/legal/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.60 https://beta.clatter.work/legal/terms-of-service/ - 2025-05-23T16:37:50+01:00 + 2025-11-27T19:23:32+00:00 0.50 \ No newline at end of file From d6cba69a83ec2da4323e36a8be84f23c6856d601 Mon Sep 17 00:00:00 2001 From: Sabio Date: Thu, 27 Nov 2025 20:07:44 +0000 Subject: [PATCH 5/5] display build version! --- app/index.html | 44 +++++++++++++++++++++++++++++++++++++++++--- app/styles.css | 9 +++++++++ 2 files changed, 50 insertions(+), 3 deletions(-) diff --git a/app/index.html b/app/index.html index 6942b24..abd91aa 100644 --- a/app/index.html +++ b/app/index.html @@ -13,7 +13,7 @@ - Clatter | Home + Clatter • Home @@ -126,7 +126,7 @@