diff --git a/README.md b/README.md index 4994a7213..8cef90ae4 100644 --- a/README.md +++ b/README.md @@ -959,10 +959,10 @@ SOFTWARE. [nginxproxymanager-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [nginxproxymanager-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [nginxproxymanager-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-node-red]: https://github.com/hassio-addons/addon-node-red/tree/8f5287c -[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/8f5287c/README.md +[addon-node-red]: https://github.com/hassio-addons/addon-node-red/tree/5258920 +[addon-doc-node-red]: https://github.com/hassio-addons/addon-node-red/blob/5258920/README.md [node-red-issue]: https://github.com/hassio-addons/addon-node-red/issues -[node-red-version-shield]: https://img.shields.io/badge/version-8f5287c-blue.svg +[node-red-version-shield]: https://img.shields.io/badge/version-5258920-blue.svg [node-red-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [node-red-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [node-red-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg diff --git a/node-red/CHANGELOG.md b/node-red/CHANGELOG.md index 876c2add8..409f945f2 100644 --- a/node-red/CHANGELOG.md +++ b/node-red/CHANGELOG.md @@ -1,4 +1,28 @@ # Changelog since v8.2.1 +- Fix node-red deployment slug (#990) +- ⬆️ Upgrades Node-RED to v1.3.3 (#989) +- Add support for the theme collection (#970) + +* Add support for the theme collection + +* Remove dark_move from the documentation + +* Remove dark_mode from default config + +* Don't use editorTheme.page.css + +* Warns about dark_mode deprecation + +* Add option for default (vanilla) theme + +* Turn the theme option into a list type + +* Apply suggestions from code review + +Co-authored-by: Franck Nijhof +- Fix node-red CI slug (#988) +- Apply updated repository structure & CI workflow (#987) +- Upgrades add-on base image to v9.2.0 (#986) - Bump node-red-contrib-bigtimer from 2.7.3 to 2.7.5 in /node-red (#985) Bumps [node-red-contrib-bigtimer](https://tech.scargill.net/big-timer/) from 2.7.3 to 2.7.5. diff --git a/node-red/DOCS.md b/node-red/DOCS.md index 4667b0998..d2a146a6d 100644 --- a/node-red/DOCS.md +++ b/node-red/DOCS.md @@ -110,13 +110,16 @@ You might need it in the future! (e.g., When restoring a backup). Node-RED from being able to decrypt your existing credentials and they will be lost._ -### Option: `dark_mode` +### Option: `theme` -When set to `true`, the Midnight Node-RED theme by [Mauricio Bonani][bonanitech] -will be enabled. For more information and a glance at how it looks, -see the GitHub repository of this theme: +Sets one of the Node-RED themes. Currently available options: - +- `default` +- `dark` +- `midnight-red` +- `oled` +- `solarized-dark` +- `solarized-light` ### Option: `http_node` @@ -282,7 +285,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [alpine-packages]: https://pkgs.alpinelinux.org/packages -[bonanitech]: https://github.com/bonanitech [contributors]: https://github.com/hassio-addons/addon-node-red/graphs/contributors [discord-ha]: https://discord.gg/c5DvZ4e [discord]: https://discord.me/hassioaddons diff --git a/node-red/README.md b/node-red/README.md index 5c208c691..ef6e63af4 100644 --- a/node-red/README.md +++ b/node-red/README.md @@ -50,6 +50,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-production%20ready-brightgreen.svg -[release-shield]: https://img.shields.io/badge/version-8f5287c-blue.svg -[release]: https://github.com/hassio-addons/addon-node-red/tree/8f5287c +[release-shield]: https://img.shields.io/badge/version-5258920-blue.svg +[release]: https://github.com/hassio-addons/addon-node-red/tree/5258920 [screenshot]: https://github.com/hassio-addons/addon-node-red/raw/main/images/screenshot.png \ No newline at end of file diff --git a/node-red/config.json b/node-red/config.json index 2d1c42a91..d11dca084 100644 --- a/node-red/config.json +++ b/node-red/config.json @@ -1,6 +1,6 @@ { "name": "Node-RED", - "version": "8f5287c", + "version": "5258920", "slug": "nodered", "description": "Flow-based programming for the Internet of Things", "url": "https://github.com/hassio-addons/addon-node-red", @@ -44,7 +44,7 @@ ], "options": { "credential_secret": "", - "dark_mode": false, + "theme": "default", "http_node": { "username": "", "password": "" @@ -64,7 +64,8 @@ "schema": { "log_level": "list(trace|debug|info|notice|warning|error|fatal)?", "credential_secret": "password", - "dark_mode": "bool", + "dark_mode": "bool?", + "theme": "list(default|dark|midnight-red|oled|solarized-dark|solarized-light)?", "http_node": { "username": "str", "password": "password"