From 6ced623ed387d32c57803d0c56cacc2c79421f5d Mon Sep 17 00:00:00 2001 From: Niklas Schumacher Date: Fri, 30 Sep 2022 20:19:03 +0200 Subject: [PATCH] Designate 0.2.0 release --- README.md | 4 ++-- package.json | 2 +- shutter-row.js | 2 +- src/shutter-row.js | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6156c38..a5c16bd 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ preset_buttons: #### Main configuration | Name | Type | Default | Description | |-------------------|-----------|--------------|------------------------------------------------------------------------------------------------| -| `type` | `string` | **Required** | "custom:shutter-row" to use shutter row | +| `type` | `string` | **Required** | `custom:shutter-row` to use shutter row | | `entity` | `string` | **Required** | Existing cover entity id | | `name` | `string` | Optional | Overwrites friendly name from entity | | `invert_position` | `boolean` | false | Inverts position value (0% => 100%, 30% => 70%), forces also `invert_position_label` to `true` | @@ -63,7 +63,7 @@ preset_buttons: #### Preset button | Name | Type | Default | Description | |-------------------|-----------|--------------|------------------------------------------------------------------------------------------------| -| `icon` | [`icon`](https://materialdesignicons.com/) | Optional | Icon e.g. mdi:window-shutter | +| `icon` | [`icon`](https://materialdesignicons.com/) | Optional | Icon e.g. `mdi:window-shutter` | | `name` | `string` | Optional | Label for button | | `tap_action` | [`action`](https://www.home-assistant.io/dashboards/actions/) | Optional | Action on tap | | `double_tap_action` | [`action`](https://www.home-assistant.io/dashboards/actions/) | Optional | Action on double tap | diff --git a/package.json b/package.json index 44e2d2c..ac1e781 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@berrywhite/lovelace-shutter-row", "private": true, - "version": "0.2.0 rc1", + "version": "0.2.0", "description": "Home Assistant Lovelace Shutter Row Card", "main": "shutter-row.js", "module": "shutter-row.js", diff --git a/shutter-row.js b/shutter-row.js index 78f1298..dafece5 100644 --- a/shutter-row.js +++ b/shutter-row.js @@ -248,7 +248,7 @@ styleInject(css_248z); let HASSIO_CARD_ID = "shutter-row"; let HASSIO_CARD_NAME = "Shutter row"; -let VERSION = "0.2.0 rc1"; +let VERSION = "0.2.0"; class ShutterRow extends s { diff --git a/src/shutter-row.js b/src/shutter-row.js index 20c833e..81568e6 100644 --- a/src/shutter-row.js +++ b/src/shutter-row.js @@ -16,7 +16,7 @@ import style from "./style.css"; let HASSIO_CARD_ID = "shutter-row"; let HASSIO_CARD_NAME = "Shutter row"; -let VERSION = "0.2.0 rc1" +let VERSION = "0.2.0" class ShutterRow extends LitElement {