v2.1.2
This commit is contained in:
parent
b4b6fd3cbd
commit
95af76d76f
12
README.md
12
README.md
|
@ -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)
|
||||
|
||||
## Changelog
|
||||
### v2.1.1 - 3.07.2018
|
||||
### v2.1.2 - 03.07.2018
|
||||
* Bug Fixes
|
||||
### v2.1.1 - 03.07.2018
|
||||
* Bug fixes
|
||||
### v2.1 - 3.07.2018
|
||||
### v2.1 - 03.07.2018
|
||||
* Bug fixes
|
||||
### v2.0 - 3.07.2018
|
||||
### v2.0 - 03.07.2018
|
||||
* Resolve download.dnscrypt.info first before executing `iptables`
|
||||
* Don't override dnscrypt-proxy.toml if exist
|
||||
* 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)
|
||||
### v1.0 - 2.27.2018
|
||||
### v1.0 - 02.27.2018
|
||||
* Initial release
|
||||
* dnscrypt-proxy v2.0.5
|
||||
|
||||
|
|
|
@ -109,9 +109,9 @@ install_dnscrypt_proxy(){
|
|||
NEW_CONFIG_FILE=$MODPATH/system/etc/dnscrypt-proxy/dnscrypt-proxy.toml
|
||||
CONFIG_PATH=$INSTALLER/config
|
||||
|
||||
if [ -f "$CONFIG_FILE" ]; then
|
||||
if [ -f "$OLD_CONFIG_FILE" ]; then
|
||||
ui_print "* Backing up config file"
|
||||
cp $CONFIG_FILE $TMPDIR
|
||||
cp $OLD_CONFIG_FILE $TMPDIR
|
||||
fi
|
||||
|
||||
unzip -o "$ZIP" 'config/*' 'binary/*' -d $INSTALLER 2>/dev/null
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
id=dnscrypt-proxy
|
||||
name=DNSCrypt-Proxy 2
|
||||
version=v2.1.1
|
||||
versionCode=7
|
||||
version=v2.1.2
|
||||
versionCode=8
|
||||
author=bluemeda
|
||||
description=A flexible DNS proxy, with support for modern encrypted DNS protocols such as DNSCrypt v2 and DNS-over-HTTP/2.
|
||||
minMagisk=1500
|
||||
|
|
Loading…
Reference in New Issue