⬆️ Updating add-on motionEye to bbfc347

This commit is contained in:
Community Hass.io Add-ons Bot 2021-04-19 18:00:33 +00:00
parent 8822ec3e98
commit bf1778b524
5 changed files with 40 additions and 8 deletions

View file

@ -1148,10 +1148,10 @@ SOFTWARE.
[ledfx-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [ledfx-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[ledfx-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [ledfx-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[ledfx-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [ledfx-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-motioneye]: https://github.com/hassio-addons/addon-motioneye/tree/9760060 [addon-motioneye]: https://github.com/hassio-addons/addon-motioneye/tree/bbfc347
[addon-doc-motioneye]: https://github.com/hassio-addons/addon-motioneye/blob/9760060/README.md [addon-doc-motioneye]: https://github.com/hassio-addons/addon-motioneye/blob/bbfc347/README.md
[motioneye-issue]: https://github.com/hassio-addons/addon-motioneye/issues [motioneye-issue]: https://github.com/hassio-addons/addon-motioneye/issues
[motioneye-version-shield]: https://img.shields.io/badge/version-9760060-blue.svg [motioneye-version-shield]: https://img.shields.io/badge/version-bbfc347-blue.svg
[motioneye-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [motioneye-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[motioneye-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [motioneye-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[motioneye-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [motioneye-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg

View file

@ -1,4 +1,6 @@
# Changelog since v0.11.1 # Changelog since v0.11.1
- Add add-on translation support (#212)
- Make action_buttons configuration optional (#211)
- Apply updated repository structure & CI workflow (#210) - Apply updated repository structure & CI workflow (#210)
- Upgrades add-on base image to v9.2.0 (#209) - Upgrades add-on base image to v9.2.0 (#209)
- ⬆️ Bump actions/cache from v2.1.4 to v2.1.5 (#205) - ⬆️ Bump actions/cache from v2.1.4 to v2.1.5 (#205)

View file

@ -56,6 +56,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck [patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-9760060-blue.svg [release-shield]: https://img.shields.io/badge/version-bbfc347-blue.svg
[release]: https://github.com/hassio-addons/addon-motioneye/tree/9760060 [release]: https://github.com/hassio-addons/addon-motioneye/tree/bbfc347
[screenshot]: https://github.com/hassio-addons/addon-motioneye/raw/main/images/screenshot.png [screenshot]: https://github.com/hassio-addons/addon-motioneye/raw/main/images/screenshot.png

View file

@ -1,6 +1,6 @@
{ {
"name": "motionEye", "name": "motionEye",
"version": "9760060", "version": "bbfc347",
"slug": "motioneye", "slug": "motioneye",
"description": "Simple, elegant and feature-rich CCTV/NVR for your cameras", "description": "Simple, elegant and feature-rich CCTV/NVR for your cameras",
"url": "https://github.com/hassio-addons/addon-motioneye", "url": "https://github.com/hassio-addons/addon-motioneye",
@ -38,8 +38,7 @@
"motion_webcontrol": false, "motion_webcontrol": false,
"ssl": true, "ssl": true,
"certfile": "fullchain.pem", "certfile": "fullchain.pem",
"keyfile": "privkey.pem", "keyfile": "privkey.pem"
"action_buttons": []
}, },
"schema": { "schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?", "log_level": "list(trace|debug|info|notice|warning|error|fatal)?",

View file

@ -0,0 +1,31 @@
---
configuration:
log_level:
name: Log level
description: >
Controls the level of log details the add-on provides.
motion_webcontrol:
name: Motion webcontrol
description: >
Enables the motion webcontrol endpoint running on port 7999.
ssl:
name: SSL
description: >
Enables/Disables SSL (HTTPS) on the web interface of motionEye.
certfile:
name: Certificate file
description: >
The certificate file to use for SSL. Note that this file must
exists in the /ssl/ folder.
keyfile:
name: Private key file
description: >
The private key file to use for SSL. Note that this file must
exists in the /ssl/ folder.
action_buttons:
name: Action buttons
description: >
If configured, a script will be created to implement an motionEye
action button. See add-on documentation for usage details.
network:
80/tcp: Web interface (Not required for Ingress)