🎉 Release of add-on Tor 2.0.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-03-23 20:03:20 +00:00
parent ff916c0829
commit f18716dfb8
4 changed files with 18 additions and 22 deletions

View file

@ -903,10 +903,10 @@ SOFTWARE.
[thelounge-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[thelounge-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[thelounge-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-tor]: https://github.com/hassio-addons/addon-tor/tree/v1.6.1
[addon-doc-tor]: https://github.com/hassio-addons/addon-tor/blob/v1.6.1/README.md
[addon-tor]: https://github.com/hassio-addons/addon-tor/tree/v2.0.0
[addon-doc-tor]: https://github.com/hassio-addons/addon-tor/blob/v2.0.0/README.md
[tor-issue]: https://github.com/hassio-addons/addon-tor/issues
[tor-version-shield]: https://img.shields.io/badge/version-v1.6.1-blue.svg
[tor-version-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg
[tor-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/tor-armhf.svg
[tor-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[tor-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1,17 +1,16 @@
[Full Changelog][changelog]
### Changed
### Changes
- Fixes spelling error in Dockerfile
- Removes BountySource links
- Removes Anchore.io links
- Updates maintenance year to 2019
- Refactor of GitLab CI
- Upgrades add-on base image to 2.3.1
- Configure Renovate (#8)
- Replaces add-on link with GitHub link
- :arrow_up: Upgrades add-on base image to 3.0.1
- :arrow_up: Upgrades tor to 0.3.4.11-r0
- :sparkles: Adds support for ARMv7
- :fire: Removes custom log format override
- :hammer: Makes log_level optional
- :books: Updates documentation for ARMv7
- :hammer: Rewrite add-on onto Bashio
[changelog]: https://github.com/hassio-addons/addon-tor/compare/v1.6.0...v1.6.1
[changelog]: https://github.com/hassio-addons/addon-tor/compare/v1.6.1...v2.0.0
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work: https://patreon.com/frenck

View file

@ -38,13 +38,13 @@ applications through your Hass.io installation.
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-tor/blob/v1.6.1/README.md
[docs]: https://github.com/hassio-addons/addon-tor/blob/v2.0.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-tor/33822?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[patreon-shield]: https://www.frenck.nl/images/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-v1.6.1-blue.svg
[release]: https://github.com/hassio-addons/addon-tor/tree/v1.6.1
[release-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg
[release]: https://github.com/hassio-addons/addon-tor/tree/v2.0.0
[tor-hidden-service]: https://www.torproject.org/docs/hidden-services.html.en

View file

@ -1,6 +1,6 @@
{
"name": "Tor",
"version": "1.6.1",
"version": "2.0.0",
"slug": "tor",
"description": "Protect your privacy and access Home Assistant via Tor.",
"url": "https://github.com/hassio-addons/addon-tor",
@ -9,6 +9,7 @@
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"boot": "auto",
@ -23,7 +24,6 @@
"ssl:rw"
],
"options": {
"log_level": "info",
"socks": false,
"hidden_services": true,
"stealth": false,
@ -33,7 +33,7 @@
]
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"socks": "bool",
"hidden_services": "bool",
"stealth": "bool",
@ -44,8 +44,5 @@
"match(^(.*:)?(?:[0-9]{1,4}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])?$)"
]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/tor-{arch}"
}