Skip to content

Commit

Permalink
Designate 0.3.2
Browse files Browse the repository at this point in the history
Added action configuration to preset buttons
  • Loading branch information
berrywhite96 committed Mar 12, 2023
1 parent 851bb4b commit bdecfef
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.3.1",
"version": "0.3.2",
"description": "Home Assistant Lovelace Shutter Row Card",
"main": "shutter-row.js",
"module": "shutter-row.js",
Expand Down
5 changes: 2 additions & 3 deletions shutter-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ var mdiStop = "M18,18H6V6H18V18Z";
const HASSIO_CARD_ID = "shutter-row";
const HASSIO_CARD_EDITOR_ID = HASSIO_CARD_ID + "-editor";
const HASSIO_CARD_NAME = "Shutter Row";
const VERSION = "0.3.1";
const VERSION = "0.3.2";

// SVG PATHS
const PATH_SHUTTER_100 =
Expand Down Expand Up @@ -323,8 +323,7 @@ const getRootSchema = (hass) => [
const PRESET_SCHEMA = [
{ name: "name", selector: { text: {} } },
{ name: "icon", selector: { icon: {} } },
UI_SCHEMA,
];
].concat(UI_SCHEMA);

/**
* Hold needed helper variables
Expand Down
2 changes: 1 addition & 1 deletion src/const.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export const HASSIO_CARD_ID = "shutter-row";
export const HASSIO_CARD_EDITOR_ID = HASSIO_CARD_ID + "-editor";
export const HASSIO_CARD_NAME = "Shutter Row";
export const VERSION = "0.3.1";
export const VERSION = "0.3.2";

// SVG PATHS
export const PATH_SHUTTER_100 =
Expand Down
3 changes: 1 addition & 2 deletions src/editor/editor_schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,4 @@ export const getRootSchema = (hass) => [
export const PRESET_SCHEMA = [
{ name: "name", selector: { text: {} } },
{ name: "icon", selector: { icon: {} } },
UI_SCHEMA,
];
].concat(UI_SCHEMA);

0 comments on commit bdecfef

Please sign in to comment.