Skip to content

Commit

Permalink
November 2021 Release of the APL 1.8.2 compliant APL Client Library
Browse files Browse the repository at this point in the history
For more details on this release refer to CHANGELOG.md

To learn about APL see: https://developer.amazon.com/docs/alexa-presentation-language/understand-apl.html
  • Loading branch information
TYLER CHONG committed Nov 10, 2021
1 parent c58ea29 commit 8af0347
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for apl-client-library

## [1.8.2]

### Changed

- Fixed scrolling issue with SpeakItem command when highlight mode set to line

## [1.8.0]

This release adds support for version 1.8 of the APL specification. Please also see APL Core Library for changes: [apl-core-library CHANGELOG](https://github.com/alexa/apl-core-library/blob/master/CHANGELOG.md)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Alexa Presentation Language (APL) Client Library

<p>
<a href="https://github.com/alexa/apl-client-library/tree/v1.8.1" alt="version">
<img src="https://img.shields.io/badge/stable%20version-1.8.1-brightgreen" /></a>
<a href="https://github.com/alexa/apl-client-library/tree/v1.8.2" alt="version">
<img src="https://img.shields.io/badge/stable%20version-1.8.2-brightgreen" /></a>
<a href="https://github.com/alexa/apl-core-library/tree/v1.8.1" alt="APLCore">
<img src="https://img.shields.io/badge/apl%20core%20library-1.8.1-navy" /></a>
</p>
Expand Down
8 changes: 8 additions & 0 deletions apl-client-js/@types/apl-html/lib/APLRenderer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,14 @@ export default abstract class APLRenderer<Options = {
* Destroy current rendering component from top.
*/
destroyRenderingComponents(): void;
/**
* Tell Core media has loaded
*/
mediaLoaded(source: string): void;
/**
* Tell Core media has failed to load
*/
mediaLoadFailed(source: string, errorCode: number, error: string): void;
private getScreenCoords;
private getLeavingCoords;
private getTransformScale;
Expand Down

0 comments on commit 8af0347

Please sign in to comment.