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
@@ -183,6 +183,8 @@ https://github.com/elParaguayo/LMS-CLI-Documentation/blob/master/LMS-CLI.md
183
183
 
184
184
  ## Changelog
185
185
 
186
+ ### 1.3.8
187
+ * fix forward button widget
186
188
  ### 1.3.7
187
189
  * fix object creation of states in player modul
188
190
  ### 1.3.6
package/io-package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "squeezeboxrpc",
4
- "version": "1.3.7",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.squeezeboxrpc",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "ioBroker Logitech Squeezebox Adapter over JSON/RPC-Protocol",
5
5
  "author": {
6
6
  "name": "oweitman",
@@ -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+".btnRewind";
676
+ var stateid = data.ainstance.join('.')+".Players"+"."+playername+".btnForward";
677
677
  var state = true
678
678
  vis.setValue(stateid,state);
679
679
  },
@@ -221,4 +221,3 @@
221
221
  %>
222
222
  </div>
223
223
  </script>
224
-