Skip to content

Commit

Permalink
Designate 0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
berrywhite96 committed Sep 30, 2022
1 parent 0cde4f5 commit 6ced623
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand All @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion shutter-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/shutter-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6ced623

Please sign in to comment.