diff --git a/README.md b/README.md index 45c0588..71082b9 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ DNS Server Providers * __[Pure DNS](https://puredns.cn/)__ - *Shutdown according to regulations* * __[AIXYZ DNS](https://aixyz.com/)__ - __*For academic purposes only.*__ * __[FUN DNS](http://fundns.cn)__ - *The Most Pure Domain Name Resolution Service* +* __[PdoMo-DNS](https://pdomo.me/)__ - *Intelligent Free Public DNS* Rule Providers ------------- @@ -73,7 +74,7 @@ Open Source Licenses Credits ------------ * __[Jetbrains](https://www.jetbrains.com/)__ - For providing free license for [IntelliJ IDEA](https://www.jetbrains.com/idea/) -* __[ZXDA Cloud](https://cloud.zxda.net/)__ - For donating free VPS +* __[SNC IDC](http://www.sncidc.com/)__ - For supporting us with love License ------------ diff --git a/app/src/main/assets/about_html/index.html b/app/src/main/assets/about_html/index.html index b54bf84..bf042c4 100644 --- a/app/src/main/assets/about_html/index.html +++ b/app/src/main/assets/about_html/index.html @@ -55,6 +55,9 @@
FUN DNS

+
+
PdoMo DNS
+

AIXYZ DNS is for academic purposes only!
Users must comply with local laws and regulations.
diff --git a/app/src/main/assets/about_html/index_zh.html b/app/src/main/assets/about_html/index_zh.html index b95365c..74a3d12 100644 --- a/app/src/main/assets/about_html/index_zh.html +++ b/app/src/main/assets/about_html/index_zh.html @@ -55,6 +55,9 @@
FUN DNS

+
+
PdoMo DNS
+

AIXYZ DNS 仅限用于学术目的!
使用者必须遵守当地法律法规。
diff --git a/app/src/main/assets/about_html/pdomo.jpg b/app/src/main/assets/about_html/pdomo.jpg new file mode 100644 index 0000000..8219ae2 Binary files /dev/null and b/app/src/main/assets/about_html/pdomo.jpg differ diff --git a/app/src/main/java/org/itxtech/daedalus/Daedalus.java b/app/src/main/java/org/itxtech/daedalus/Daedalus.java index c296385..990da7c 100644 --- a/app/src/main/java/org/itxtech/daedalus/Daedalus.java +++ b/app/src/main/java/org/itxtech/daedalus/Daedalus.java @@ -56,6 +56,8 @@ public class Daedalus extends Application { public static final List DNS_SERVERS = new ArrayList() {{ add(new DNSServer("119.23.248.241", R.string.server_fundns_south_china)); + add(new DNSServer("101.132.183.99", R.string.server_pdomo_primary)); + add(new DNSServer("193.112.15.186", R.string.server_pdomo_secondary)); add(new DNSServer("115.159.146.99", R.string.server_aixyz_east_china)); add(new DNSServer("123.206.21.48", R.string.server_aixyz_south_china)); }}; diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index e70c692..198c8be 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -84,7 +84,8 @@ AIXYZ DNS 华南 AIXYZ DNS 华东 FUN DNS 华南 - FUN DNS 华北 + PdoMo DNS 主服务器 + PdoMo DNS 辅服务器 首选 DNS 服务器 备用 DNS 服务器 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 280a8ca..1dfc4c0 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -84,7 +84,8 @@ AIXYZ DNS 中國華南 AIXYZ DNS 中國華東 FUN DNS 中國華南 - FUN DNS 中國華北 + PdoMo DNS 主伺服器 + PdoMo DNS 輔伺服器 主要 DNS 伺服器 次要 DNS 伺服器 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 0a6b33b..b57df3a 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -83,7 +83,8 @@ AIXYZ DNS South China AIXYZ DNS East China FUN DNS South China - FUN DNS North China + PdoMo DNS Primary + PdoMo DNS Secondary Primary DNS server Secondary DNS server diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e74c68c..931e585 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip +distributionUrl=https://services.gradle.org/distributions/gradle-4.5.1-bin.zip