diff --git a/HOST_TEMPLATE.md b/HOST_TEMPLATE.md deleted file mode 100644 index 8eb720b..0000000 --- a/HOST_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ -| {address} | {description} | {software} | {status} | {protocol} | {auth} | \ No newline at end of file diff --git a/README_TEMPLATE.md b/README_TEMPLATE.md deleted file mode 100644 index daf7e0e..0000000 --- a/README_TEMPLATE.md +++ /dev/null @@ -1,48 +0,0 @@ -Here you can find RAC clients, servers and more - -You can help RAC Hub by [adding more information](https://github.com/MeexReay/RAC-Hub/pulls) - -# Clients - -| Title | Description | Author | Release | Status | Lang | RAC | WRAC | -| :---: | :---------: | :----: | :-----: | :----: | :--: | :-: | :--: | -{clients} - - - - -# Server software - -| Title | Description | Author | Release | Status | Lang | RAC | WRAC | -| :---: | :---------: | :----: | :-----: | :----: | :--: | :-: | :--: | -{servers} - - - - - -# Known servers - -| Address | Description | Software | Status | Protocol | Auth | -| :------------------: | :-----------------------------------: | :--------------------------------------: | :----: | :-------: | :------: | -{hosts} - -# Protocol documentation - -- [RACv1.0](RACv1.md)[^1] -- [RACv1.99.x](RACv1.99.md) -- [RACv2.0](RACv2.md) -- [WRACv2.0](WRAC.md) -- [Users additions](USERS_ADDITIONS.md) - -# See also - -- [Original RAC-Hub](https://github.com/The-Stratosphere-Solutions/RAC-Hub) -- [RAC-Hub github](https://github.com/MeexReay/RAC-Hub) -- [Archive](https://github.com/MeexReay/RAC-Hub/tree/main/Archive) - -
- -[]() []() - -{notes} \ No newline at end of file diff --git a/SOFTWARE_TEMPLATE.md b/SOFTWARE_TEMPLATE.md deleted file mode 100644 index 33702e3..0000000 --- a/SOFTWARE_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ -| {name} | {description} | {author} | {release} | {status} | {lang} | {rac_version} | {wrac_version} | \ No newline at end of file diff --git a/USERS_ADDITIONS.md b/USERS_ADDITIONS.md deleted file mode 100644 index b9d0ff5..0000000 --- a/USERS_ADDITIONS.md +++ /dev/null @@ -1,34 +0,0 @@ -# Users additions - -Over time, as various clients and servers for RAC were developed, users introduced their own protocol extensions. These additions were created independently of Mr. Sugoma and are designed to enhance the protocol's capabilities while maintaining compatibility with existing RAC versions. - -## Server info packet - -Client sends: - -- Byte `0x69` - -Server sends: - -- (nothing or closes socket if server doesn't support this feature) -- Protocol version: - - Byte `0x01` for RACv1 - - Byte `0x02` for RACv1.99 - - Byte `0x03` for RACv2 -- Server name - -## User agents - -User agents in RAC is the way how to get know from what client the message was sent. It works by just checking the message text throught regex. - -Here are listed the most common clients, and their common names colors in the chat. - -| Client | Format | Regex | Color | -| :----: | :----: | :----: | :----: | -| [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<(.*?)> (.*)` | gold -| [Snowdrop](https://github.com/Forbirdden/Snowdrop) | ඞ<{name}> {text} | `\u0D9E<(.*?)> (.*)` | light green -| clRAC | <{name}> {text} | `<(.*?)> (.*)` | cyan - diff --git a/mkreadme.py b/mkreadme.py deleted file mode 100644 index 7266ff9..0000000 --- a/mkreadme.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 - -# from typing import Optional -# from enum import Enum - -# class - -# def read_template(name): -# return open(name.upper()+"_TEMPLATE.md", "r", encoding="utf8").read() - -# SOFTWARE_TEMPLATE = read_template("software") -# HOST_TEMPLATE = read_template("host") -# README_TEMPLATE = read_template("readme") - - - -# def software( -# name: str | (str, str), -# description: str, -# author: str, -# release: Optional[(str, str)], -# status: str, -# lang: str, -# rac_version: Optional[str], -# wrac_version: Optional[str], -# note: Optional[str] -# ): -# pass