Skip to content
This repository was archived by the owner on Jan 15, 2024. It is now read-only.

Commit 9878caf

Browse files
committed
* Upgraded dependency to Device SDK 1.21.0 [https://github.com/alexa/avs-device-sdk/tree/v1.21.0]
* Added DND Support * Fixed a back navigation issue causing a RenderPlayerInfo card to be cleared * Fixed an issue where the sample app automatically goes into the listening mode when prompted by a skill
1 parent 4e7b7a6 commit 9878caf

File tree

416 files changed

+4922
-55569
lines changed

Some content is hidden

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

416 files changed

+4922
-55569
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### v2.4.0 released 11/09/2020:
2+
3+
#### Enhancements
4+
* Upgraded dependency to Device SDK 1.21.0 [https://github.com/alexa/avs-device-sdk/tree/v1.21.0]
5+
* Added DND Support
6+
7+
#### Bug fixes
8+
* Fixed a back navigation issue causing a RenderPlayerInfo card to be cleared
9+
* Fixed an issue where the sample app automatically goes into the listening mode when prompted by a skill
10+
111
### v2.3.0 released 09/24/2020:
212

313
#### Enhancements

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
22

3-
project(AlexaSmartScreenSDK VERSION 2.3 LANGUAGES CXX)
3+
project(AlexaSmartScreenSDK VERSION 2.4 LANGUAGES CXX)
44
set(PROJECT_BRIEF "A cross-platform, modular SDK for multi modal interaction with the Alexa Voice Service")
55
configure_file (
66
"${PROJECT_SOURCE_DIR}/modules/Alexa/Utils/include/Utils/SmartScreenSDKVersion.h.in"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Alexa Smart Screen SDK
22

33
<p>
4-
<a href="https://github.com/alexa/alexa-smart-screen-sdk/tree/v2.3.0" alt="version">
5-
<img src="https://img.shields.io/badge/stable%20version-2.3-brightgreen" /></a>
6-
<a href="https://github.com/alexa/avs-device-sdk/tree/v1.20.1" alt="DeviceSDK">
7-
<img src="https://img.shields.io/badge/avs%20device%20sdk-1.20.1-blueviolet" /></a>
4+
<a href="https://github.com/alexa/alexa-smart-screen-sdk/tree/v2.4.0" alt="version">
5+
<img src="https://img.shields.io/badge/stable%20version-2.4.0-brightgreen" /></a>
6+
<a href="https://github.com/alexa/avs-device-sdk/tree/v1.21.0" alt="DeviceSDK">
7+
<img src="https://img.shields.io/badge/avs%20device%20sdk-1.21.0-blueviolet" /></a>
88
<a href="https://github.com/alexa/apl-core-library/tree/v1.4.1" alt="APLCore">
99
<img src="https://img.shields.io/badge/apl%20core%20library-1.4.1-navy" /></a>
1010
<a href="https://github.com/alexa/alexa-smart-screen-sdk/issues" alt="issues">

modules/Alexa/APLClientLibrary/APLClientSandbox/README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ The APL Client Sandbox provides a basic implementation of APL Client with a Webs
66
* WebsocketPP
77
* RapidJSON
88

9-
## Building
10-
`cmake -DWEBSOCKETPP_INCLUDE_DIR=<...> && make`
9+
## Server Side
10+
Go to 'build/APLClientSandbox/src'
11+
For building refer to main README file
12+
Run './APLClientSandbox'
1113

12-
From the GUI directory:
13-
`npm install`
14+
## Client Side
15+
Go to 'APLClientLibrary/APLClientSandbox/GUI'
16+
For building run `npm install`
17+
Run `npm start`
1418

15-
## Running
16-
Run `APLClientSandbox`
17-
18-
From the GUI directory:
19-
`npm start`
2019

2120
Open a browser and point it to http://127.0.0.1:8000

modules/Alexa/APLClientLibrary/apl-client-js/@types/apl-html/lib/components/EditText.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ export declare class EditText extends ActionableComponent<IEditTextProperties> {
3838
inputElement: HTMLInputElement;
3939
private localFocused;
4040
private enterPressedDown;
41+
private isEdge;
4142
constructor(renderer: APLRenderer, component: APL.Component, factory: FactoryFunction, parent?: Component);
4243
private initEditTextHtmlComponent();
4344
private setBorderColor;

modules/GUI/apl-client/apl-client-attribution.txt renamed to modules/Alexa/APLClientLibrary/apl-client-js/apl-client-5e58b3-attribution.txt

Lines changed: 181 additions & 183 deletions
Large diffs are not rendered by default.

modules/Alexa/APLClientLibrary/apl-client-js/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "apl-client",
3-
"version": "1.4.28.0",
4-
"description": "this version supports APL 1.4 - R2.18.1 patch release",
5-
"repository": "hash:4de09e27",
3+
"version": "1.4.30.0",
4+
"description": "this version supports APL 1.4",
5+
"repository": "hash:5e58b3a4",
66
"main": "index.js",
77
"types": "./index.d.ts"
88
}

modules/Alexa/ApplicationUtilities/APLClient/CMakeLists.txt

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

modules/Alexa/ApplicationUtilities/APLClient/include/APLClient/AplClientBinding.h

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

0 commit comments

Comments
 (0)