Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved performance for Playback and Input controller, and resolve device not responding message after a command #759

Merged
merged 2 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/).

## 0.8.1 (2024-12-24)

## [Version 0.8.0](https://github.com/northernman54/homebridge-alexa/compare/v0.8.0...v0.8.1)

#### Bug Fix

- Improved performance for Playback and Input controller, and resolve device not responding after a command

## 0.8.0 (2024-12-24)

## [Version 0.8.0](https://github.com/northernman54/homebridge-alexa/compare/v0.7.1...v0.8.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-alexa",
"version": "0.8.0",
"version": "0.8.1",
"description": "Control your Homebridge devices with Amazon Alexa.",
"main": "src/plugin.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/lib/alexaMessages.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ function alexaResponse(message, hbResponse, err, value) {
"messageId": message.directive.header.messageId,
"namespace": "Alexa",
"name": "Response",
"correlationToken": message.directive.header.correlationToken,
"payloadVersion": "3"
},
"endpoint": {
Expand All @@ -94,6 +95,7 @@ function alexaResponse(message, hbResponse, err, value) {
"messageId": message.directive.header.messageId,
"namespace": "Alexa",
"name": "Response",
"correlationToken": message.directive.header.correlationToken,
"payloadVersion": "3"
},
"endpoint": {
Expand Down
Loading