Skip to content

Commit

Permalink
Merge pull request #213 from danielperna84/devel
Browse files Browse the repository at this point in the history
0.4.1
  • Loading branch information
danielperna84 committed Apr 23, 2021
2 parents 1a7775d + 08da01a commit cedc950
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.4.1 (2020-04-23)
- Ignore `input`-keyword used in blueprints (Issue #207) @danielperna84

Version 0.4.0 (2020-02-24)
- Fix file history width (Issue #192)
- Store HASS-panel visibility state (Issue #189)
Expand Down
2 changes: 1 addition & 1 deletion hass_configurator/configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
logging.Formatter('%(levelname)s:%(asctime)s:%(name)s:%(message)s'))
LOG.addHandler(SO)
RELEASEURL = "https://api.github.com/repos/danielperna84/hass-configurator/releases/latest"
VERSION = "0.4.0"
VERSION = "0.4.1"
BASEDIR = "."
DEV = False
LISTENPORT = None
Expand Down
2 changes: 1 addition & 1 deletion hass_configurator/dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -2961,7 +2961,7 @@ <h4 class="grey-text text-darken-3"><a class="black-text" href="https://github.c
function check_lint() {
if (document.getElementById('currentfile').value.match(".yaml$")) {
try {
var text = editor.getValue().replace(/!(include|secret|env_var)/g,".$1"); // hack because js-yaml does not like !include/!secret
var text = editor.getValue().replace(/!(include|secret|env_var|input)/g,".$1"); // hack because js-yaml does not like !include/!secret
jsyaml.safeLoad(text);
lint_status.text("check_circle");
lint_status.removeClass("cursor-pointer red-text grey-text");
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

NAME = "hass-configurator"
PACKAGE_NAME = "hass_configurator"
VERSION = "0.4.0"
VERSION = "0.4.1"

setup(name=NAME,
version=VERSION,
Expand Down

0 comments on commit cedc950

Please sign in to comment.