This commit is contained in:
Héctor Molinero Fernández 2018-08-06 21:25:19 +02:00
commit b4d392881d
4 changed files with 6 additions and 6 deletions

View file

@ -45,8 +45,8 @@ I provide nightly builds of the hosts file and other formats, including installe
## Installation
```sh
curl -o /tmp/hblock 'https://raw.githubusercontent.com/hectorm/hblock/v1.6.6/hblock' \
&& echo 'c5dbbe8a02f049d20d3c963ff720f8479e91825c6ab5fcb96f5a9f0d3aa39f7e /tmp/hblock' | shasum -c \
curl -o /tmp/hblock 'https://raw.githubusercontent.com/hectorm/hblock/v1.6.7/hblock' \
&& echo '904ab4a2b58b8d5512136d7400f3a0c875d58be1e26933a70e3f9bc229b1094d /tmp/hblock' | shasum -c \
&& sudo mv /tmp/hblock /usr/local/bin/hblock \
&& sudo chown root:root /usr/local/bin/hblock \
&& sudo chmod 755 /usr/local/bin/hblock

4
hblock
View file

@ -1,6 +1,6 @@
#!/bin/sh
# Version: 1.6.6
# Version: 1.6.7
# Author: Héctor Molinero Fernández <hector@molinero.xyz>
# Repository: https://github.com/hectorm/hblock
# License: MIT, https://opensource.org/licenses/MIT
@ -153,7 +153,7 @@ showHelp() {
# Show version number and quit
showVersion() {
printStdout '%s\n' '1.6.6'
printStdout '%s\n' '1.6.7'
exit 0
}

View file

@ -1,6 +1,6 @@
{
"name": "hblock",
"version": "1.6.6",
"version": "1.6.7",
"description": "Improve your security and privacy by blocking ads, tracking and malware domains",
"keywords": [
"ad-block",

View file

@ -2,7 +2,7 @@
The following commands will schedule a daily update of the hosts file. See [this article](https://wiki.archlinux.org/index.php/Systemd/Timers) for more information about Systemd timers.
```sh
curl -o '/tmp/hblock.#1' 'https://raw.githubusercontent.com/hectorm/hblock/v1.6.6/resources/systemd/hblock.{service,timer}' \
curl -o '/tmp/hblock.#1' 'https://raw.githubusercontent.com/hectorm/hblock/v1.6.7/resources/systemd/hblock.{service,timer}' \
&& echo '16d547d11d1eff1cd7109ef8436a899f2e868992b8d9de757e65d4ab94f64fe7 /tmp/hblock.service' | shasum -c \
&& echo '79ecc28c13b2489400bd5ddc0ee61ddaf6c3225acb1d54b5cb4026f822ae60e8 /tmp/hblock.timer' | shasum -c \
&& sudo mv /tmp/hblock.{service,timer} /etc/systemd/system/ \