This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from richtier/fix-no-content
Fix synchronise device state
- Loading branch information
Showing
9 changed files
with
75 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
exclude=.venv,venv,snowboy,build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Changelog | ||
|
||
## 1.4.1 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/34) | ||
### Implemented enhancements | ||
- Simplified makefile. Use direct `flake8` and `pytest` commands instead of `make lint` and `make test`. | ||
- Add CHANGELOG.md | ||
|
||
### Fixed bugs | ||
- Fixed synchronise state incorrectly using `GET` method. | ||
|
||
## 1.4.0 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/33) | ||
### Implemented enhancements | ||
- Add Automatic Speech Recognition (ASR) profile support, optimized for user speech from varying distances. | ||
|
||
## 1.3.0 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/31) | ||
### Implemented enhancements | ||
- Renamed package from avs_client to alexa_client | ||
- Use thread timer for ping management | ||
- Add ExpectSpeech directive | ||
|
||
## 1.2.0 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/29) | ||
### Implemented enhancements | ||
- Support dialogue request id to support multi-step commands. | ||
- Added streaming audio example | ||
|
||
### Fixed bugs | ||
|
||
## 1.1.0 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/28) | ||
### Implemented enhancements | ||
- Added support for HandlePlay directive | ||
|
||
## 1.0.0 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/23) | ||
### Implemented enhancements | ||
- Handle multi-part responses | ||
- Removed type hinting | ||
- Added makefile | ||
|
||
## 0.7.1 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/16) | ||
### Implemented enhancements | ||
- Remove requirements.txt - hard-code in setup.py instead | ||
|
||
### Fixed bugs | ||
- Fix incorrect callback url generation #16 | ||
|
||
## 0.6.0 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/12) | ||
### Implemented enhancements | ||
- Add AmazonOauth2RequestManager | ||
|
||
## 0.5.2 | ||
[Full Changelog](https://github.com/richtier/alexa-voice-service-client/pull/6) | ||
|
||
### Fixed bugs | ||
- Expect 204 or 200 on synchronise device state |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,7 +196,7 @@ To run the unit tests, call the following commands: | |
```sh | ||
git clone [email protected]:richtier/alexa-voice-service-client.git | ||
make test_requirements | ||
make test | ||
pytest | ||
``` | ||
|
||
## Other projects ## | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[pytest] | ||
addopts= --ignore=venv --ignore=.venv --ignore=build --cov=./ --cov-config=.coveragerc --capture=no --last-failed -vv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters