node-red-contrib-homekit-bridged 1.5.0-dev.12 → 1.5.0-dev.13

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.
@@ -20,6 +20,7 @@
20
20
  <select id="node-config-input-advertiser">
21
21
  <option value="bonjour-hap" selected="selected">BONJOUR</option>
22
22
  <option value="ciao">CIAO</option>
23
+ <option value="avahi">AVAHI</option>
23
24
  </select>
24
25
  </div>
25
26
  <div class="form-row">
@@ -105,7 +106,7 @@
105
106
  <li><strong>Accessory Category</strong>: What kind of category is this Accessory, default <em>OTHER</em></li>
106
107
  <li><strong>Pin Code</strong>: Specify the Pin for the pairing process.</li>
107
108
  <li><strong>Port</strong>: If you are behind a Firewall, you may want to specify a port. Cannot be 1880 as it is reserved for node-red. Otherwise, leave empty.</li>
108
- <li><strong>Advertiser</strong>: Which MDNS advertiser to use <em>ciao</em> (new, improved but not yet proved) or (good old) <em>bonjour</em>. Default <em>bonjour</em>.</li>
109
+ <li><strong>Advertiser</strong>: Which MDNS advertiser to use <em>ciao</em> (new, improved but not yet proved) or (good old) <em>bonjour</em> or experimental <em>avahi</em>. Default <em>bonjour</em>.</li>
109
110
  <li><strong>Allow Insecure Request</strong>: Should we allow insecure request? Default false.</li>
110
111
  <li><strong>Manufacturer, Model, Serial Number</strong>: Can be anything you want.</li>
111
112
  <li><strong>Firmware Revision</strong>: Should be a version number string in the form of <em>MAJOR.MINOR.REVISION</em> e.g. <em>1.2.0</em>. Other types of strings are ignored and won't be displayed.</li>
@@ -157,7 +158,7 @@
157
158
  value: 'bonjour-hap',
158
159
  required: false,
159
160
  validate: function (value) {
160
- if (value) return value === 'bonjour-hap' || value === 'ciao'
161
+ if (value) return value === 'bonjour-hap' || value === 'ciao' || value === 'avahi'
161
162
  else return true
162
163
  },
163
164
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-homekit-bridged",
3
- "version": "1.5.0-dev.12",
3
+ "version": "1.5.0-dev.13",
4
4
  "description": "Node-RED nodes to simulate Apple HomeKit devices.",
5
5
  "main": "build/nodes/nrchkb.js",
6
6
  "scripts": {