Skip to content

Commit

Permalink
Release 2019-05-18. Hotfix for HA 0.94
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-git committed May 18, 2019
1 parent 13a0b77 commit 489c634
Show file tree
Hide file tree
Showing 28 changed files with 11,319 additions and 3,353 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"no-param-reassign": ["error", { "props": false }],
"function-paren-newline": 0,
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["gulp/**", "webpack.config.js"]}],
"import/extensions": ["error", "always"]
"import/extensions": ["error", "ignorePackages"]
},
"plugins": [
"import"
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

#### 2019-05-18
* Hotfix for HA 0.94+

#### 2019-03-24
* Fix for `icon-color` for HA 0.88+
* Fox config panel for HA 0.90+
Expand Down
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
TODO: Add screenshots

## Notes
**CustomUI 2019-05-17 required for HA 0.94+**

**CustomUI 2018-12-17 required for HA 0.84.1+**

Expand All @@ -24,21 +25,15 @@ Please ask questions and post feature requests in the [forum](https://community.

## Changelog

#### 2019-05-18
* Hotfix for HA 0.94+

#### 2019-03-24
* Fix for `icon-color` for HA 0.88+
* Fox config panel for HA 0.90+

#### 2019-01-13
* Hotfix for `extra_badge` for HA 0.85+

#### 2018-12-17
* Hotfix for HA 0.84.1+

#### 2018-08-31
* Fix for icon_color not being applied on HA >0.77 (by Jérôme)
* This version requires HA 0.77+

#### 2018-08-06
* Fix CustomUI attributes not being hidden in more-info.

[Full Changelog](CHANGELOG.md)
10 changes: 5 additions & 5 deletions gulp/tasks/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ function build(minify, transpile) {
.pipe(gulp.dest('build/'));
}

gulp.task('build', ['build-minify', 'build-dbg', 'build-minify-es5', 'build-dbg-es5']);

gulp.task('build-minify', [], build.bind(null, true, false));
gulp.task('build-dbg', [], build.bind(null, false, false));
gulp.task('build-minify-es5', [], build.bind(null, true, true));
gulp.task('build-dbg-es5', [], build.bind(null, false, true));
gulp.task('build-minify', build.bind(null, true, false));
gulp.task('build-dbg', build.bind(null, false, false));
gulp.task('build-minify-es5', build.bind(null, true, true));
gulp.task('build-dbg-es5', build.bind(null, false, true));
gulp.task('build', gulp.series('build-minify', 'build-dbg', 'build-minify-es5', 'build-dbg-es5'));
2 changes: 1 addition & 1 deletion gulp/tasks/compress.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const gulp = require('gulp');
const zopfli = require('gulp-zopfli');
const zopfli = require('gulp-zopfli-green');

gulp.task('compress', () =>
gulp.src('state-card-custom-ui*.html')
Expand Down
2 changes: 1 addition & 1 deletion gulp/tasks/default.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const gulp = require('gulp');

gulp.task('default', ['build']);
gulp.task('default', gulp.series(['build']));
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
"del": "^3.0.0",
"eslint": "^4.13.0",
"eslint-config-airbnb-base": "^12.1.0",
"gulp": "^3.9.1",
"gulp": "^4",
"gulp-rename": "^1.2.2",
"gulp-zopfli": "^1.0.0",
"gulp-zopfli-green": "^3.0.0",
"lit-element": "^2.1.0",
"require-dir": "^0.3.2",
"typescript": "^3.2.2",
"webpack": "^4.8.3"
Expand Down
Loading

0 comments on commit 489c634

Please sign in to comment.