homebridge-bluos 1.1.3 → 1.1.4
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.4](https://github.com/tbaur/homebridge-bluos/compare/v1.1.3...v1.1.4) (2026-08-31)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* put the reboot switch on its own line ([#31](https://github.com/tbaur/homebridge-bluos/issues/31)) ([d721851](https://github.com/tbaur/homebridge-bluos/commit/d721851480d1d2e243b90ccfb1105087aed8aaa1))
|
|
9
|
+
|
|
3
10
|
## [1.1.3](https://github.com/tbaur/homebridge-bluos/compare/v1.1.2...v1.1.3) (2026-08-30)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
.bluos-badge { font-size: .7rem; text-transform: uppercase; letter-spacing: .03em; padding: .12rem .4rem; border-radius: .25rem; background: rgba(128, 128, 128, .2); }
|
|
21
21
|
.bluos-badge.warn { background: rgba(255, 193, 7, .28); }
|
|
22
22
|
.bluos-options { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-top: .6rem; }
|
|
23
|
+
.bluos-options-reboot { flex-basis: 100%; }
|
|
23
24
|
.bluos-check { display: inline-flex; align-items: center; gap: .4rem; margin: 0; }
|
|
24
25
|
.bluos-check input { margin: 0; }
|
|
25
26
|
.bluos-check label { margin: 0; }
|
|
@@ -396,12 +396,14 @@
|
|
|
396
396
|
(value) => { player.battery = value },
|
|
397
397
|
))
|
|
398
398
|
}
|
|
399
|
-
|
|
400
|
-
'Reboot switch (reboots this player, and any zone
|
|
399
|
+
const reboot = checkbox(
|
|
400
|
+
'Reboot switch (reboots this player, and any zone on the same device)',
|
|
401
401
|
player.reboot,
|
|
402
402
|
false,
|
|
403
403
|
(value) => { player.reboot = value },
|
|
404
|
-
)
|
|
404
|
+
)
|
|
405
|
+
reboot.className += ' bluos-options-reboot'
|
|
406
|
+
options.append(reboot)
|
|
405
407
|
card.append(options)
|
|
406
408
|
|
|
407
409
|
if (player.selected) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "homebridge-bluos",
|
|
3
3
|
"displayName": "Homebridge BluOS",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4",
|
|
5
5
|
"description": "Homebridge plugin for BluOS players — per-zone volume, mute, volume-preset and battery accessories over the LAN Custom Integration API. Verified on NAD and Bluesound hardware",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|