From c9673807d9aab53c81542979d660572161f7cbe0 Mon Sep 17 00:00:00 2001 From: pansangg <80703383+pansangg@users.noreply.github.com> Date: Thu, 19 Jun 2025 02:39:10 +0700 Subject: [PATCH 1/5] Update mod.rs --- src/chat/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chat/mod.rs b/src/chat/mod.rs index bc6fa56..bb397a2 100644 --- a/src/chat/mod.rs +++ b/src/chat/mod.rs @@ -41,6 +41,7 @@ lazy_static! { (Regex::new(r"\u{B9AC}\u{3E70}<(.*?)> (.*)").unwrap(), "#70fa7a".to_string()), // bRAC (Regex::new(r"\u{2550}\u{2550}\u{2550}<(.*?)> (.*)").unwrap(), "#fa7070".to_string()), // CRAB (Regex::new(r"\u{00B0}\u{0298}<(.*?)> (.*)").unwrap(), "#da70fa".to_string()), // Mefidroniy + (Regex::new(r"\u{2042}<(.*?)> (.*)").unwrap(), "#f5f543".to_string()), // Mefidroniy (Regex::new(r"<(.*?)> (.*)").unwrap(), "#70fadc".to_string()), // clRAC ]; From 5029b51cf61687c73d9ccb820dcbcab3a8436136 Mon Sep 17 00:00:00 2001 From: pansangg <80703383+pansangg@users.noreply.github.com> Date: Thu, 19 Jun 2025 02:41:33 +0700 Subject: [PATCH 2/5] Update user_agents.md --- docs/user_agents.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/user_agents.md b/docs/user_agents.md index 1b1f0b2..dfa3283 100644 --- a/docs/user_agents.md +++ b/docs/user_agents.md @@ -11,8 +11,9 @@ Here are listed the most common clients, and their name colors in the chat. | [bRAC](https://github.com/MeexReay/bRAC) | 리㹰<{name}> {text} | `\uB9AC\u3E70<(.*?)> (.*)` | green | [CRAB](https://gitea.bedohswe.eu.org/pixtaded/crab) | ═══<{name}> {text} | `\u2550\u2550\u2550<(.*?)> (.*)` | light red | [Mefidroniy](https://github.com/OctoBanon-Main/mefedroniy-client) | °ʘ<{name}> {text} | `\u00B0\u0298<(.*?)> (.*)` | light magenta +| [cRACk](https://github.com/pansangg/cRACk) | ⁂<{name}> {text} | `\u2042<(.*?)> (.*)` | bright yellow (gold) | clRAC | <{name}> {text} | `<(.*?)> (.*)` | cyan ## developer notes -in auth-mode, there is must to be `> ` after name (`{name}> {text}`) \ No newline at end of file +in auth-mode, there is must to be `> ` after name (`{name}> {text}`) From 32cf3839bfb22f50e13e1738a2fbd066d0c6681a Mon Sep 17 00:00:00 2001 From: pansangg <80703383+pansangg@users.noreply.github.com> Date: Thu, 19 Jun 2025 02:48:29 +0700 Subject: [PATCH 3/5] Update user_agents.md --- docs/user_agents.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user_agents.md b/docs/user_agents.md index dfa3283..a0c9910 100644 --- a/docs/user_agents.md +++ b/docs/user_agents.md @@ -11,7 +11,7 @@ Here are listed the most common clients, and their name colors in the chat. | [bRAC](https://github.com/MeexReay/bRAC) | 리㹰<{name}> {text} | `\uB9AC\u3E70<(.*?)> (.*)` | green | [CRAB](https://gitea.bedohswe.eu.org/pixtaded/crab) | ═══<{name}> {text} | `\u2550\u2550\u2550<(.*?)> (.*)` | light red | [Mefidroniy](https://github.com/OctoBanon-Main/mefedroniy-client) | °ʘ<{name}> {text} | `\u00B0\u0298<(.*?)> (.*)` | light magenta -| [cRACk](https://github.com/pansangg/cRACk) | ⁂<{name}> {text} | `\u2042<(.*?)> (.*)` | bright yellow (gold) +| [cRACk](https://github.com/pansangg/cRACk) | ⁂<{name}> {text} | `\u2042<(.*?)> (.*)` | gold | clRAC | <{name}> {text} | `<(.*?)> (.*)` | cyan ## developer notes From 9675dfe87f0b7bfe3c3b8886ea33ef5bdd585355 Mon Sep 17 00:00:00 2001 From: pansangg <80703383+pansangg@users.noreply.github.com> Date: Thu, 19 Jun 2025 02:48:50 +0700 Subject: [PATCH 4/5] Update mod.rs --- src/chat/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat/mod.rs b/src/chat/mod.rs index bb397a2..b2f69c8 100644 --- a/src/chat/mod.rs +++ b/src/chat/mod.rs @@ -41,7 +41,7 @@ lazy_static! { (Regex::new(r"\u{B9AC}\u{3E70}<(.*?)> (.*)").unwrap(), "#70fa7a".to_string()), // bRAC (Regex::new(r"\u{2550}\u{2550}\u{2550}<(.*?)> (.*)").unwrap(), "#fa7070".to_string()), // CRAB (Regex::new(r"\u{00B0}\u{0298}<(.*?)> (.*)").unwrap(), "#da70fa".to_string()), // Mefidroniy - (Regex::new(r"\u{2042}<(.*?)> (.*)").unwrap(), "#f5f543".to_string()), // Mefidroniy + (Regex::new(r"\u{2042}<(.*?)> (.*)").unwrap(), "#f5f543".to_string()), // cRACk (Regex::new(r"<(.*?)> (.*)").unwrap(), "#70fadc".to_string()), // clRAC ]; From aaee249f56901707cff5d6d6787175bb148f99f6 Mon Sep 17 00:00:00 2001 From: pansangg <80703383+pansangg@users.noreply.github.com> Date: Thu, 19 Jun 2025 02:50:14 +0700 Subject: [PATCH 5/5] Update user_agents.md