Skip to content
This repository was archived by the owner on Oct 18, 2025. It is now read-only.

Commit dc6c793

Browse files
committed
Bump upstream HAP
changelog etc
1 parent 20ee116 commit dc6c793

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

addons/io/org.openhab.io.homekit/CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changes
22

3+
## 2.4.0-homekit-6
4+
5+
### Add support for smoke and CO detectors
6+
7+
[Cody Cutrer](https://github.com/ccutrer) has added support for Smoke and CO detectors. See the README for instructions on configuring.
8+
9+
### HAP-Java fixes
10+
11+
Several fixes HAP-Java from Cody Cutrer have been included in the release:
12+
13+
* [Fix reading encrypted frames that don't line up with network frames](https://github.com/beowulfe/HAP-Java/pull/64)
14+
* [Bring HAP-Java in to compliance with the spec](https://github.com/beowulfe/HAP-Java/pull/65)
15+
* [Some optimizations to HAP-Java responses](https://github.com/beowulfe/HAP-Java/pull/65)
16+
* [Fix a pairing issue in which HAP-Java could listen on the wrong interface](https://github.com/beowulfe/HAP-Java/pull/67)
17+
18+
### Artifact is now versioned
19+
20+
Per request, the artifact is versioned with each milestone release.
21+
22+
### Update on merging changes
23+
24+
With the next HAP-Java release around the corner, I will rebase this branch on to 2.5.0 and start to integrate changes in to master. Further releases are likely to be based on 2.5.0; from what I understand we're to expect little issues running a plugin built for 2.5.x on 2.4.x, so long as no 2.5.x functionality is used.
25+
326
## 2.4.0-homekit-5
427

528
### Breaking changes
Binary file not shown.
3.26 KB
Binary file not shown.

addons/io/org.openhab.io.homekit/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</parent>
1010

1111
<artifactId>org.openhab.io.homekit</artifactId>
12+
<version>2.4.0-homekit-6</version>
1213
<packaging>eclipse-plugin</packaging>
1314

1415
<name>HomeKit Integration</name>

addons/io/org.openhab.io.homekit/src/main/java/org/openhab/io/homekit/internal/accessories/HomekitWindowCoveringImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
import org.openhab.io.homekit.internal.HomekitTaggedItem;
1010

1111
import com.beowulfe.hap.HomekitCharacteristicChangeCallback;
12-
import com.beowulfe.hap.accessories.WindowCovering;
12+
import com.beowulfe.hap.accessories.BasicWindowCovering;
1313
import com.beowulfe.hap.accessories.properties.WindowCoveringPositionState;
1414

1515
public class HomekitWindowCoveringImpl extends AbstractHomekitAccessoryImpl<RollershutterItem>
16-
implements WindowCovering {
16+
implements BasicWindowCovering {
1717

1818
public HomekitWindowCoveringImpl(HomekitTaggedItem taggedItem, ItemRegistry itemRegistry,
1919
HomekitAccessoryUpdater updater) {

0 commit comments

Comments
 (0)