diff --git a/README.md b/README.md index 6e940e9bf..6e2ae30ee 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,19 @@ Terminal access to your Home Assistant instance via the web [:books: Terminal add-on documentation][addon-doc-terminal] +### ✓ [Tor][addon-tor] + +![Latest Version][tor-version-shield] +![Supports armhf Architecture][tor-armhf-shield] +![Supports aarch64 Architecture][tor-aarch64-shield] +![Supports amd64 Architecture][tor-amd64-shield] +![Supports i386 Architecture][tor-i386-shield] +![Docker Pulls][tor-pulls-shield] + +Protect your privacy and access Home Assistant via Tor. + +[:books: Tor add-on documentation][addon-doc-tor] + ## Releases Add-on releases are **NOT** based on [Semantic Versioning][semver], unlike @@ -229,6 +242,7 @@ on the correct GitHub repository matching the add-on. - [Open an issue for the add-on: SSH - Secure Shell][ssh-issue] - [Open an issue for the add-on: Shinobi Pro][shinobi-issue] - [Open an issue for the add-on: Terminal][terminal-issue] +- [Open an issue for the add-on: Tor][tor-issue] For a general repository issue or add-on ideas [open an issue here][issue] @@ -386,6 +400,15 @@ SOFTWARE. [terminal-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [terminal-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [terminal-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg +[addon-tor]: https://github.com/hassio-addons/addon-tor/tree/v1.2.0 +[addon-doc-tor]: https://github.com/hassio-addons/addon-tor/blob/v1.2.0/README.md +[tor-issue]: https://github.com/hassio-addons/addon-tor/issues +[tor-version-shield]: https://img.shields.io/badge/version-v1.2.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 +[tor-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[tor-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg [discord-shield]: https://img.shields.io/discord/330944238910963714.svg [discord]: https://discord.gg/c5DvZ4e diff --git a/tor/CHANGELOG.md b/tor/CHANGELOG.md new file mode 100644 index 000000000..eda870721 --- /dev/null +++ b/tor/CHANGELOG.md @@ -0,0 +1,12 @@ +[Full Changelog][v1.1.1-v1.2.0] + +### Added + +- Adds add-on icon + +### Changed + +- Upgrades add-on base image to v1.3.3 +- Optimizes add-on logo + +[v1.1.1-v1.2.0]: https://github.com/hassio-addons/addon-tor/compare/v1.1.1...v1.2.0 diff --git a/tor/config.json b/tor/config.json new file mode 100644 index 000000000..0bc268df5 --- /dev/null +++ b/tor/config.json @@ -0,0 +1,44 @@ +{ + "name": "Tor", + "version": "1.2.0", + "slug": "tor", + "description": "Protect your privacy and access Home Assistant via Tor.", + "url": "https://community.home-assistant.io/t/community-hass-io-add-on-tor/33822?u=frenck", + "startup": "services", + "boot": "auto", + "hassio_api": true, + "homeassistant_api": false, + "host_network": false, + "ports": { + "9050/tcp": 9050 + }, + "map": [ + "ssl:rw" + ], + "options": { + "log_level": "info", + "socks": false, + "hidden_services": true, + "stealth": false, + "client_names": [], + "ports": [ + "8123" + ] + }, + "schema": { + "log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)", + "socks": "bool", + "hidden_services": "bool", + "stealth": "bool", + "client_names": [ + "match(^[A-Za-z0-9+-_]{1,16}$)" + ], + "ports": [ + "match(^(?:6553[0-5]|655[0-2]\\d|65[0-4]\\d\\d|6[0-4]\\d{3}|[1-5]\\d{4}|[1-9]\\d{0,3})(?::(6553[0-5]|655[0-2]\\d|65[0-4]\\d\\d|6[0-4]\\d{3}|[1-5]\\d{4}|[1-9]\\d{0,3}))?$)" + ] + }, + "environment": { + "LOG_FORMAT": "{LEVEL}: {MESSAGE}" + }, + "image": "hassioaddons/tor-{arch}" +} \ No newline at end of file diff --git a/tor/icon.png b/tor/icon.png new file mode 100644 index 000000000..444f31bfd Binary files /dev/null and b/tor/icon.png differ diff --git a/tor/logo.png b/tor/logo.png new file mode 100644 index 000000000..148007ecd Binary files /dev/null and b/tor/logo.png differ