homebridge-somfy-rfxcom 2.0.2 → 2.0.3

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 ADDED
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ ## 2.0.3 — Verified by Homebridge
4
+
5
+ - [DOCS] Added the Homebridge "verified" badge to the README
6
+ - [FEAT] Added a PayPal funding link in `package.json` so the Homebridge UI tile shows a ❤️ Donate button
7
+
8
+ ## 2.0.2 — Config schema fix
9
+
10
+ - [FIX] Corrected `config.schema.json` validation so the Homebridge UI accepts saved configurations
11
+
12
+ ## 2.0.1 — Switch labels
13
+
14
+ - [CHANGE] HomeKit switch names now include the remote name (e.g. `Awning Up` instead of just `Up`) so multiple remotes are easier to tell apart
15
+
16
+ ## 2.0.0 — Rename to homebridge-somfy-rfxcom
17
+
18
+ - [CHANGE] Renamed package from `@nroughol/homebridge-rfxcom` to `homebridge-somfy-rfxcom` (unscoped) for Homebridge verification
19
+ - [CHANGE] Renamed platform identifier from `RFXCom` to `SomfyRFXCom` to avoid collision with the original `homebridge-rfxcom`
20
+ - [BREAKING] Existing users must update both their `npm install` target and the `"platform"` value in `config.json`
21
+ - [FEAT] Homebridge v2.0 / HAP-NodeJS v2 support
22
+ - [FEAT] Node 22 / 24 support; modern `onGet`/`onSet` characteristic API for reliable accessory restoration
23
+ - [DOCS] Rewrote the README around the Somfy RTS gate / blind / awning use case
package/README.md CHANGED
@@ -1,11 +1,20 @@
1
1
  # homebridge-somfy-rfxcom
2
2
 
3
+ [![verified-by-homebridge](https://img.shields.io/badge/homebridge-verified-blueviolet?color=%23491F59&style=for-the-badge&logoColor=%23FFFFFF&logo=homebridge)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
4
+
3
5
  Homebridge plugin for controlling [Somfy RTS](https://www.somfy.com/) blinds, awnings, and gates through HomeKit, via an [RFXtrx433(E)](http://www.rfxcom.com/RFXtrx433E-USB-43392MHz-Transceiver/en) USB transceiver.
4
6
 
5
7
  This fork was rewritten with motorized Somfy RTS gates in mind and is, in my experience, the most reliable option for that use case. It also works with RFY blinds and awnings.
6
8
 
7
9
  Originally based on [glefand/homebridge-rfxcom](https://github.com/glefand/homebridge-rfxcom) and [jhurliman/homebridge-rfxcom](https://github.com/jhurliman/homebridge-rfxcom).
8
10
 
11
+ ## What's new
12
+
13
+ ### 2.0.3
14
+
15
+ - Verified by Homebridge
16
+ - Added a donation link (PayPal) — shown as a ❤️ Donate button on the Homebridge UI tile
17
+
9
18
  ## Features
10
19
 
11
20
  - **Homebridge v2.0 support** — fully compatible with Homebridge 2.0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "homebridge-somfy-rfxcom",
3
3
  "displayName": "Somfy RFXcom",
4
- "version": "2.0.2",
4
+ "version": "2.0.3",
5
5
  "description": "Homebridge plugin for controlling Somfy RTS blinds, awnings, and gates via an RFXtrx433(E) transceiver.",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -43,5 +43,11 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "rfxcom": ">=2.1.0"
46
- }
46
+ },
47
+ "funding": [
48
+ {
49
+ "type": "paypal",
50
+ "url": "https://paypal.me/nroughol"
51
+ }
52
+ ]
47
53
  }