diff --git a/README.md b/README.md index 6ce3b86..74aa64f 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,12 @@ # DNSR (DNS Router) -A tool that automatically routes traffic through VPN or any other network interface based on DNS responses. Designed to bypass DPI blocks and throttling while keeping other traffic direct. Works on both Linux PCs and **routers**. +> [!NOTE] +> **Major Update (4.0)**: +> - Now uses DNS-based routing instead of transparent proxy +> - Better performance and reliability, especially on routers +> - If you need SOCKS5 proxy support, use old [v3 release](https://github.com/Jipok/dpi-bypass-proxy/releases/tag/3.0.0) -![Network routing diagram placeholder] +A tool that automatically routes traffic through VPN or any other network interface based on DNS responses. Designed to bypass DPI blocks and throttling while keeping other traffic direct. Works on both Linux PCs and **routers**. ## Key Features diff --git a/main.go b/main.go index 5d723fd..04671a0 100644 --- a/main.go +++ b/main.go @@ -33,7 +33,7 @@ type Args struct { } func (Args) Version() string { - return "dnsr 2.0.0" + return "dnsr 4.0.0" } var args Args