diff --git a/changelog b/changelog index 1459aef..5c16318 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,6 @@ +0.2.0b4: replace alert() with logs + use HA icons +0.2.0b3: better mouse handling 0.2.0b2: remove alert() that can happen anytime 0.2.0b1: use package not parcel ... diff --git a/dist/hass-aarlo.js b/dist/hass-aarlo.js index 69c7f49..7d8af05 100644 --- a/dist/hass-aarlo.js +++ b/dist/hass-aarlo.js @@ -119,6 +119,7 @@ class AarloGlance extends LitElement { this._ready = false this._hass = null; this._config = null; + this._version = "0.2.0b4" // Internationalisation. this._i = null @@ -1172,7 +1173,6 @@ class AarloGlance extends LitElement { config.image_top = image_top.join("|") config.image_bottom = image_bottom - console.log("here!") } getCameraConfigOld( global, local ) { @@ -2251,7 +2251,7 @@ class AarloGlance extends LitElement { this.wsUpdateSnapshot() .then() .catch( (e) => { - alert( e ) + this._log( e ) }) } @@ -2297,7 +2297,7 @@ class AarloGlance extends LitElement { this.showStream() }) .catch( (e) => { - alert( e ) + this._log( e ) }) } else { this.showStream() @@ -2314,7 +2314,7 @@ class AarloGlance extends LitElement { this.wsStopStream() .then() .catch( (e) => { - alert( e ) + this._log( e ) }) }