Feat: make tor proxy as default

This commit is contained in:
MeexReay 2025-06-20 01:19:47 +03:00
parent bbbcb93a7f
commit 9a191eec78
3 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ better RAC client
- RACv1.99.x and RACv2.0 compatible - RACv1.99.x and RACv2.0 compatible
- WRAC compatible ([docs](docs/wrac.md)) - WRAC compatible ([docs](docs/wrac.md))
- chat commands (type /help) - chat commands (type /help)
- uses tor proxy as default (wracs://meex.lol:11234)
- no ip and date visible for anyone (almost) - no ip and date visible for anyone (almost)
- coloring usernames by their clients (CRAB, clRAC, Mefidroniy, etc.) - coloring usernames by their clients (CRAB, clRAC, Mefidroniy, etc.)
- many command-line options (see --help) - many command-line options (see --help)

View File

@ -21,7 +21,7 @@ pub fn default_konata_size() -> usize {
100 100
} }
pub fn default_host() -> String { pub fn default_host() -> String {
"wracs://meex.lol".to_string() "wracs://meex.lol:11234".to_string()
} }
pub fn default_message_format() -> String { pub fn default_message_format() -> String {
MESSAGE_FORMAT.to_string() MESSAGE_FORMAT.to_string()

View File

@ -46,6 +46,7 @@ lazy_static! {
]; ];
pub static ref SERVER_LIST: Vec<String> = vec![ pub static ref SERVER_LIST: Vec<String> = vec![
"wracs://meex.lol:11234".to_string(),
"rac://meex.lol".to_string(), "rac://meex.lol".to_string(),
"wracs://meex.lol".to_string(), "wracs://meex.lol".to_string(),
"rac://91.192.22.20".to_string() "rac://91.192.22.20".to_string()