iobroker.squeezeboxrpc 1.3.7 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
package/io-package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "squeezeboxrpc",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.8",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.3.8": {
|
|
7
|
+
"en": "* fix object forward btn widget"
|
|
8
|
+
},
|
|
6
9
|
"1.3.7": {
|
|
7
10
|
"en": "* fix object creation of states in player modul"
|
|
8
11
|
},
|
|
@@ -26,36 +29,6 @@
|
|
|
26
29
|
},
|
|
27
30
|
"1.3.0": {
|
|
28
31
|
"en": "* fix problem wit setting own icon in player widget / * add infos about alarms to a player datapoint"
|
|
29
|
-
},
|
|
30
|
-
"1.2.1": {
|
|
31
|
-
"en": "* fix small issues in last version"
|
|
32
|
-
},
|
|
33
|
-
"1.2.0": {
|
|
34
|
-
"en": "* improve handling of imageproxy artwork"
|
|
35
|
-
},
|
|
36
|
-
"1.1.0": {
|
|
37
|
-
"en": "* make request of favorites configurable"
|
|
38
|
-
},
|
|
39
|
-
"1.0.1": {
|
|
40
|
-
"en": " * change setstate/createobject logic * fix role and type for Mode-state * update tests * update dependency versions * improve io-package.json"
|
|
41
|
-
},
|
|
42
|
-
"1.0.0": {
|
|
43
|
-
"en": "prepare for stable repository"
|
|
44
|
-
},
|
|
45
|
-
"0.8.32": {
|
|
46
|
-
"en": "the adapter function iobroker.deleteChannel didnt works as expected. it didnt delete the whole subtree of states. now i implement my own delete function"
|
|
47
|
-
},
|
|
48
|
-
"0.8.31": {
|
|
49
|
-
"en": "change behaviour of deleting favorites"
|
|
50
|
-
},
|
|
51
|
-
"0.8.30": {
|
|
52
|
-
"en": "change from the issue of the adapter checker"
|
|
53
|
-
},
|
|
54
|
-
"0.8.29": {
|
|
55
|
-
"en": "optimize handling of player state power and connected"
|
|
56
|
-
},
|
|
57
|
-
"0.8.28": {
|
|
58
|
-
"en": "add advanced signaling function with telnet and fix some more authorization issues with LMS"
|
|
59
32
|
}
|
|
60
33
|
},
|
|
61
34
|
"title": "SqueezeboxRPC: Controller for Logitech media Server over RPC-protokol",
|
package/package.json
CHANGED
|
@@ -673,7 +673,7 @@ vis.binds["squeezeboxrpc"] = {
|
|
|
673
673
|
var data = event.data.data;
|
|
674
674
|
var self = event.data.self;
|
|
675
675
|
var playername = vis.binds["squeezeboxrpc"].getPlayerName(data.widgetPlayer);
|
|
676
|
-
var stateid = data.ainstance.join('.')+".Players"+"."+playername+".
|
|
676
|
+
var stateid = data.ainstance.join('.')+".Players"+"."+playername+".btnForward";
|
|
677
677
|
var state = true
|
|
678
678
|
vis.setValue(stateid,state);
|
|
679
679
|
},
|