This commit is contained in:
bluemeda 2018-03-07 09:14:34 +07:00
parent b4b6fd3cbd
commit 95af76d76f
3 changed files with 11 additions and 9 deletions

View File

@ -13,17 +13,19 @@ A flexible DNS proxy, with support for modern encrypted DNS protocols such as [D
- For more detailed configuration please refer to [official documentation](https://github.com/jedisct1/dnscrypt-proxy/wiki/Basic-dnscrypt-proxy.toml-editing) - For more detailed configuration please refer to [official documentation](https://github.com/jedisct1/dnscrypt-proxy/wiki/Basic-dnscrypt-proxy.toml-editing)
## Changelog ## Changelog
### v2.1.1 - 3.07.2018 ### v2.1.2 - 03.07.2018
* Bug Fixes
### v2.1.1 - 03.07.2018
* Bug fixes * Bug fixes
### v2.1 - 3.07.2018 ### v2.1 - 03.07.2018
* Bug fixes * Bug fixes
### v2.0 - 3.07.2018 ### v2.0 - 03.07.2018
* Resolve download.dnscrypt.info first before executing `iptables` * Resolve download.dnscrypt.info first before executing `iptables`
* Don't override dnscrypt-proxy.toml if exist * Don't override dnscrypt-proxy.toml if exist
* Update binary files to v2.0.6 * Update binary files to v2.0.6
### v1.1 - 2.27.2018 ### v1.1 - 02.27.2018
* Change listen port to 5353 (avoid conflict while tethering) * Change listen port to 5353 (avoid conflict while tethering)
### v1.0 - 2.27.2018 ### v1.0 - 02.27.2018
* Initial release * Initial release
* dnscrypt-proxy v2.0.5 * dnscrypt-proxy v2.0.5

View File

@ -109,9 +109,9 @@ install_dnscrypt_proxy(){
NEW_CONFIG_FILE=$MODPATH/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml NEW_CONFIG_FILE=$MODPATH/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml
CONFIG_PATH=$INSTALLER/config CONFIG_PATH=$INSTALLER/config
if [ -f "$CONFIG_FILE" ]; then if [ -f "$OLD_CONFIG_FILE" ]; then
ui_print "* Backing up config file" ui_print "* Backing up config file"
cp $CONFIG_FILE $TMPDIR cp $OLD_CONFIG_FILE $TMPDIR
fi fi
unzip -o "$ZIP" 'config/*' 'binary/*' -d $INSTALLER 2>/dev/null unzip -o "$ZIP" 'config/*' 'binary/*' -d $INSTALLER 2>/dev/null

View File

@ -1,7 +1,7 @@
id=dnscrypt-proxy id=dnscrypt-proxy
name=DNSCrypt-Proxy 2 name=DNSCrypt-Proxy 2
version=v2.1.1 version=v2.1.2
versionCode=7 versionCode=8
author=bluemeda author=bluemeda
description=A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTP/2. description=A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTP/2.
minMagisk=1500 minMagisk=1500