iobroker.chromecast
Advanced tools
Comparing version 1.0.4 to 1.0.5
@@ -5,3 +5,3 @@ { | ||
"title": "Chromecast Adapter", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"license": "MIT", | ||
@@ -8,0 +8,0 @@ "authors": ["Vegetto <iobroker@angelnu.com>"], |
{ | ||
"name": "iobroker.chromecast", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "ioBroker chromecast Adapter", | ||
@@ -5,0 +5,0 @@ "author": { |
@@ -65,2 +65,6 @@ ![Logo](admin/chromecast.png) | ||
--------- | ||
### 1.0.5 | ||
* (Vegetto) Fix widget - correct devId check for empty string | ||
### 1.0.4 | ||
@@ -67,0 +71,0 @@ * (Vegetto) Forgot the github before the npm publish |
/* | ||
ioBroker.chromecast Widget-Set | ||
version: "1.0.4" | ||
version: "1.0.5" | ||
@@ -71,3 +71,3 @@ Copyright 10.2015-2016 Vegetto<iobroker@angelnu.com> | ||
if (typeof devId === 'string' || devId instanceof String) | ||
if (typeof devId !== 'string' || !(devId instanceof String)) | ||
return undefined; | ||
@@ -146,3 +146,3 @@ | ||
vis.binds.chromecast = { | ||
version: "1.0.4", | ||
version: "1.0.5", | ||
showVersion: function () { | ||
@@ -149,0 +149,0 @@ if (vis.binds.chromecast.version) { |
Sorry, the diff of this file is not supported yet
104898
144