diff --git a/changelog b/changelog index 38b8f8c..03d3120 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,4 @@ +0.1.4: used fixed version of dash 0.1.3: better name parsing added camera on/off support 0.1.2: added mpeg-dash support diff --git a/custom_cards.json b/custom_cards.json index 58ae02d..9afa9a8 100644 --- a/custom_cards.json +++ b/custom_cards.json @@ -2,7 +2,7 @@ "aarlo-glance": { "changelog": "https://github.com/twrecked/lovelace-hass-aarlo/blob/master/changelog", "remote_location": "https://raw.githubusercontent.com/twrecked/lovelace-hass-aarlo/master/dist/hass-aarlo.js", - "version": "0.1.3", + "version": "0.1.4", "visit_repo": "https://github.com/twrecked/lovelace-hass-aarlo" } } diff --git a/dist/hass-aarlo.js b/dist/hass-aarlo.js index 0635c6d..56f701f 100644 --- a/dist/hass-aarlo.js +++ b/dist/hass-aarlo.js @@ -738,6 +738,11 @@ class AarloGlance extends LitElement { }; }, true); this._dash.initialize(video, this._stream, true); + // this._dash.updateSettings({ + // 'debug': { + // 'logLevel': dashjs.Debug.LOG_LEVEL_DEBUG + // } + // }); } } else { // Start HLS to handle video streaming. @@ -1279,7 +1284,7 @@ const s = document.createElement("script"); s.src = 'https://cdn.jsdelivr.net/npm/hls.js@latest'; s.onload = function() { const s2 = document.createElement("script"); - s2.src = 'https://cdn.dashjs.org/latest/dash.all.min.js'; + s2.src = 'http://cdn.dashjs.org/v3.1.1/dash.all.min.js'; s2.onload = function() { customElements.define('aarlo-glance', AarloGlance); // const s3 = document.createElement("script");