From 87e0770afe8a000cd67b9e0738fb4559d07d91b8 Mon Sep 17 00:00:00 2001 From: "Community Hass.io Add-ons Bot" Date: Sun, 7 Nov 2021 11:15:09 +0000 Subject: [PATCH] :arrow_up: Updating add-on motionEye to c867760 --- README.md | 6 ++-- motioneye/CHANGELOG.md | 1 + motioneye/README.md | 4 +-- motioneye/config.json | 63 ------------------------------------------ motioneye/config.yaml | 50 +++++++++++++++++++++++++++++++++ 5 files changed, 56 insertions(+), 68 deletions(-) delete mode 100644 motioneye/config.json create mode 100644 motioneye/config.yaml diff --git a/README.md b/README.md index 5ecf01f4c..551cda25e 100644 --- a/README.md +++ b/README.md @@ -1079,10 +1079,10 @@ SOFTWARE. [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-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-motioneye]: https://github.com/hassio-addons/addon-motioneye/tree/df06941 -[addon-doc-motioneye]: https://github.com/hassio-addons/addon-motioneye/blob/df06941/README.md +[addon-motioneye]: https://github.com/hassio-addons/addon-motioneye/tree/c867760 +[addon-doc-motioneye]: https://github.com/hassio-addons/addon-motioneye/blob/c867760/README.md [motioneye-issue]: https://github.com/hassio-addons/addon-motioneye/issues -[motioneye-version-shield]: https://img.shields.io/badge/version-df06941-blue.svg +[motioneye-version-shield]: https://img.shields.io/badge/version-c867760-blue.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-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg diff --git a/motioneye/CHANGELOG.md b/motioneye/CHANGELOG.md index 5adfc3119..adc07a6f3 100644 --- a/motioneye/CHANGELOG.md +++ b/motioneye/CHANGELOG.md @@ -1,4 +1,5 @@ # Changelog since v0.15.1 +- Migrate JSON config to YAML (#319) - Switch to centralized GitHub Action Workflows (#318) - ⬆️ Upgrades ffmpeg to 4.4.1-r0 (#317) - ⬇️ Downgrade pillow to 6.2.2 (#316) diff --git a/motioneye/README.md b/motioneye/README.md index d7e5f42c7..c6183f8fd 100644 --- a/motioneye/README.md +++ b/motioneye/README.md @@ -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]: https://www.patreon.com/frenck [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg -[release-shield]: https://img.shields.io/badge/version-df06941-blue.svg -[release]: https://github.com/hassio-addons/addon-motioneye/tree/df06941 +[release-shield]: https://img.shields.io/badge/version-c867760-blue.svg +[release]: https://github.com/hassio-addons/addon-motioneye/tree/c867760 [screenshot]: https://github.com/hassio-addons/addon-motioneye/raw/main/images/screenshot.png \ No newline at end of file diff --git a/motioneye/config.json b/motioneye/config.json deleted file mode 100644 index 49d6c7248..000000000 --- a/motioneye/config.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "motionEye", - "version": "df06941", - "slug": "motioneye", - "description": "Simple, elegant and feature-rich CCTV/NVR for your cameras", - "url": "https://github.com/hassio-addons/addon-motioneye", - "ingress": true, - "ingress_port": 0, - "ingress_stream": true, - "panel_icon": "mdi:cctv", - "homeassistant": "0.92.0b2", - "arch": [ - "aarch64", - "amd64", - "armhf", - "armv7", - "i386" - ], - "init": false, - "ports": { - "80/tcp": null - }, - "ports_description": { - "80/tcp": "Web interface (Not required for Ingress)" - }, - "discovery": [ - "motioneye" - ], - "host_network": true, - "apparmor": false, - "video": true, - "privileged": [ - "DAC_READ_SEARCH", - "SYS_ADMIN" - ], - "map": [ - "media:rw", - "share:rw", - "ssl" - ], - "options": { - "motion_webcontrol": false, - "ssl": true, - "certfile": "fullchain.pem", - "keyfile": "privkey.pem", - "action_buttons": [] - }, - "schema": { - "log_level": "list(trace|debug|info|notice|warning|error|fatal)?", - "motion_webcontrol": "bool", - "ssl": "bool", - "certfile": "str", - "keyfile": "str", - "action_buttons": [ - { - "type": "list(lock|unlock|light_on|light_off|alarm_on|alarm_off|up|right|down|left|zoom_in|zoom_out|preset1|preset2|preset3|preset4|preset5|preset6|preset7|preset8|preset9)?", - "camera": "int?", - "command": "str?" - } - ] - }, - "image": "ghcr.io/hassio-addons/motioneye/{arch}" -} \ No newline at end of file diff --git a/motioneye/config.yaml b/motioneye/config.yaml new file mode 100644 index 000000000..e0318b7c3 --- /dev/null +++ b/motioneye/config.yaml @@ -0,0 +1,50 @@ +apparmor: false +arch: +- aarch64 +- amd64 +- armhf +- armv7 +- i386 +description: Simple, elegant and feature-rich CCTV/NVR for your cameras +discovery: +- motioneye +homeassistant: 0.92.0b2 +host_network: true +image: ghcr.io/hassio-addons/motioneye/{arch} +ingress: true +ingress_port: 0 +ingress_stream: true +init: false +map: +- media:rw +- share:rw +- ssl +name: motionEye +options: + action_buttons: [] + certfile: fullchain.pem + keyfile: privkey.pem + motion_webcontrol: false + ssl: true +panel_icon: mdi:cctv +ports: + 80/tcp: null +ports_description: + 80/tcp: Web interface (Not required for Ingress) +privileged: +- DAC_READ_SEARCH +- SYS_ADMIN +schema: + action_buttons: + - camera: int? + command: str? + type: list(lock|unlock|light_on|light_off|alarm_on|alarm_off|up|right|down|left|zoom_in|zoom_out|preset1|preset2|preset3|preset4|preset5|preset6|preset7|preset8|preset9)? + certfile: str + keyfile: str + log_level: list(trace|debug|info|notice|warning|error|fatal)? + motion_webcontrol: bool + ssl: bool +slug: motioneye +url: https://github.com/hassio-addons/addon-motioneye +version: c867760 +video: true