diff --git a/README-ru.md b/README-ru.md index 6a78bfb..9369700 100644 --- a/README-ru.md +++ b/README-ru.md @@ -10,7 +10,7 @@ Приложение для Android, которое запускает локальный VPN-сервис для обхода DPI (Deep Packet Inspection) и цензуры. -Приложение локально запускает [ByeDPI](https://github.com/hufrea/byedpi) и перенаправляет весь TCP трафик через него. +Приложение локально запускает [ByeDPI](https://github.com/hufrea/byedpi) и перенаправляет весь трафик через него. ## Установка diff --git a/README.md b/README.md index 05b7ee5..703cf7a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Android application that runs a local VPN service to bypass DPI (Deep Packet Inspection) and censorship. -The application locally runs [ByeDPI](https://github.com/hufrea/byedpi) and redirects all TCP traffic through it. +The application locally runs [ByeDPI](https://github.com/hufrea/byedpi) and redirects all traffic through it. ## Installation diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6495890..21fdbed 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -13,8 +13,8 @@ android { applicationId = "io.github.dovecoteescapee.byedpi" minSdk = 21 targetSdk = 34 - versionCode = 5 - versionName = "1.0.1" + versionCode = 6 + versionName = "1.0.2-rc1" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } diff --git a/app/src/main/java/io/github/dovecoteescapee/byedpi/services/ByeDpiVpnService.kt b/app/src/main/java/io/github/dovecoteescapee/byedpi/services/ByeDpiVpnService.kt index bea931b..3985f96 100644 --- a/app/src/main/java/io/github/dovecoteescapee/byedpi/services/ByeDpiVpnService.kt +++ b/app/src/main/java/io/github/dovecoteescapee/byedpi/services/ByeDpiVpnService.kt @@ -191,7 +191,7 @@ class ByeDpiVpnService : LifecycleVpnService() { val sharedPreferences = getPreferences(this) val port = sharedPreferences.getString("byedpi_proxy_port", null)?.toInt() ?: 1080 - val dns = sharedPreferences.getString("dns_ip", null) ?: "9.9.9.9" + val dns = sharedPreferences.getString("dns_ip", null) ?: "1.1.1.1" val vpn = createBuilder(dns).establish() ?: throw IllegalStateException("VPN connection failed") diff --git a/app/src/main/res/xml/settings.xml b/app/src/main/res/xml/settings.xml index 7ea528f..d7051e4 100644 --- a/app/src/main/res/xml/settings.xml +++ b/app/src/main/res/xml/settings.xml @@ -41,7 +41,7 @@