diff --git a/loxone/loxone.html b/loxone/loxone.html index e7d97a4..f9b5737 100644 --- a/loxone/loxone.html +++ b/loxone/loxone.html @@ -293,14 +293,17 @@ $('#node-input-room, #node-input-category').on('change', fillControl); if (node.control) { - $controlSelect.val(node.control); - $controlSelect.trigger('change'); - //select proper room and categoriy for selected control + //select proper room and category for selected control var controlFromStructure = data.structure.controls[node.control]; $('#node-input-room').val(controlFromStructure.room); $('#node-input-category').val(controlFromStructure.cat); + fillControl(); + + $controlSelect.val(node.control); + $controlSelect.trigger('change'); + if (node.state) { $('#node-input-state').val(node.state); } @@ -412,12 +415,16 @@ var $controlSelect = $('#node-input-control'); if (node.control) { - $controlSelect.val(node.control); //select proper room and category for selected control var controlFromStructure = data.structure.controls[node.control]; $('#node-input-room').val(controlFromStructure.room); $('#node-input-category').val(controlFromStructure.cat); + + fillControl(); + + $controlSelect.val(node.control); + } @@ -447,7 +454,8 @@ The structure of your Miniserver will be loaded on connecting an is selectable on adding an in- or out-node.

- If you want, enable AES-256-CBC encryption and the commands get encrypted. Otherwise only hashing of the commands is done.
+ If you want, enable AES-256-CBC encryption and the commands get encrypted. Otherwise commands won't be encrypted.
+ The credentials are always hashed with the apiKey
The miniserver is not capable to do full SSL-Encryption of the connection.
For further details, see the API-documentation. @@ -482,7 +490,7 @@ @@ -528,6 +536,9 @@ topic: "dev/cfg/version", code: 200 } +
+
+ Currently no AES command encryption for Webservice-Calls