Skip to content

Commit 20ad8fe

Browse files
author
Robin Chen
committed
April 2022 Release of the APL 1.9 compliant APL Viewhost Web
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
1 parent 19ae115 commit 20ad8fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+878
-980
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
# Changelog for apl-viewhost-web
22

3-
## [1.8.2]
3+
## [1.9.0]
4+
5+
This release adds support for version 1.9 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)
6+
7+
### Added
8+
9+
- Image/VectorGraphics sources now allow request headers
10+
- Additional disallow flags
411

512
### Changed
613

7-
- Fixed scrolling issue with SpeakItem command when highlight mode set to line
14+
- Bug fixes
15+
- Audio player fix with AudioNode and AudioContext
16+
- Pager highlight
17+
- Video player release
18+
819
## [1.8.0]
920

1021
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)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Alexa Presentation Language (APL) Viewhost Web
22

33
<p>
4-
<a href="https://github.com/alexa/apl-viewhost-web/tree/v1.8.2" alt="version">
5-
<img src="https://img.shields.io/badge/stable%20version-1.8.2-brightgreen" /></a>
6-
<a href="https://github.com/alexa/apl-core-library/tree/v1.8.1" alt="APLCore">
7-
<img src="https://img.shields.io/badge/apl%20core%20library-1.8.1-navy" /></a>
4+
<a href="https://github.com/alexa/apl-viewhost-web/tree/v1.9.0" alt="version">
5+
<img src="https://img.shields.io/badge/stable%20version-1.9.0-brightgreen" /></a>
6+
<a href="https://github.com/alexa/apl-core-library/tree/v1.9.1" alt="APLCore">
7+
<img src="https://img.shields.io/badge/apl%20core%20library-1.9.1-navy" /></a>
88
</p>
99

1010
## Introduction

js/apl-html/lib/dts/Component.d.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*!
2-
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3-
*/
4-
51
/**
62
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
73
* SPDX-License-Identifier: Apache-2.0

js/apl-html/lib/dts/ConfigurationChange.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ declare namespace APL {
1212
public fontScale(scale : number) : ConfigurationChange;
1313
public screenMode(screenMode : string) : ConfigurationChange;
1414
public screenReader(enabled : boolean) : ConfigurationChange;
15+
public disallowVideo(disallowVideo : boolean) : ConfigurationChange;
16+
public environmentValue(key: string, value: object) : ConfigurationChange;
1517
public mergeConfigurationChange(other : ConfigurationChange) : void;
1618
}
1719
}

js/apl-html/lib/extensions/IExtensionEventCallbackResult.d.ts

Lines changed: 0 additions & 10 deletions
This file was deleted.

js/apl-html/lib/extensions/IExtensionManager.d.ts

Lines changed: 0 additions & 16 deletions
This file was deleted.

js/apl-html/lib/logging/ILogger.d.ts

Lines changed: 0 additions & 39 deletions
This file was deleted.

js/apl-html/lib/logging/LogLevel.d.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

js/apl-html/lib/logging/LogTransport.d.ts

Lines changed: 0 additions & 13 deletions
This file was deleted.

js/apl-html/lib/logging/LoggerFactory.d.ts

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)