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

Commit cb10e63

Browse files
committed
Version 2.9.2 alexa-smart-screen-sdk
*** Enhancements *** * Upgraded async version to 2.6.4. Note that users upgrading to this version will need to remove the existing node modules from modules/GUI/js/node_modules before the build.
1 parent 5e49fdf commit cb10e63

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v2.9.2 released 05/11/2022:
2+
#### Enhancements
3+
* Upgraded async version to 2.6.4. Note that users upgrading to this version will need to remove the existing node modules from modules/GUI/js/node_modules before the build.
4+
15
### v2.9.1 released 04/05/2022:
26
#### Bug fixes
37
* Fixed hold-to-talk event handling logic in the native layer to keep it in sync with GUI

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.9.1 LANGUAGES CXX)
3+
project(AlexaSmartScreenSDK VERSION 2.9.2 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Alexa Smart Screen SDK
22

33
<p>
4-
<a href="https://github.com/alexa/alexa-smart-screen-sdk/tree/v2.9.1" alt="version">
5-
<img src="https://img.shields.io/badge/stable%20version-2.9.1-brightgreen" /></a>
4+
<a href="https://github.com/alexa/alexa-smart-screen-sdk/tree/v2.9.2" alt="version">
5+
<img src="https://img.shields.io/badge/stable%20version-2.9.2-brightgreen" /></a>
66
<a href="https://github.com/alexa/avs-device-sdk/tree/v1.26.0" alt="DeviceSDK">
77
<img src="https://img.shields.io/badge/avs%20device%20sdk-1.26.0-blueviolet" /></a>
88
<a href="https://github.com/alexa/apl-client-library/tree/v1.8.3" alt="APLClientLibrary">

modules/GUI/js/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/GUI/js/src/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const HOST = 'localhost';
7878
const PORT = 8933;
7979

8080
/// The minimum SmartScreenSDK version required for this runtime.
81-
const SMART_SCREEN_SDK_MIN_VERSION = '2.9.1';
81+
const SMART_SCREEN_SDK_MIN_VERSION = '2.9.2';
8282

8383
/// Indicates whether the SDK has built with WebSocket SSL Disabled.
8484
declare const DISABLE_WEBSOCKET_SSL : boolean;

modules/GUI/js/src/components/APLRendererWindow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ export class APLRendererWindow extends React.Component<IAPLRendererWindowProps,
291291

292292
const environment : IEnvironment = {
293293
agentName: 'SmartScreenSDK',
294-
agentVersion: '2.9.1',
294+
agentVersion: '2.9.2',
295295
disallowVideo: this.windowConfig.disallowVideo,
296296
allowOpenUrl: this.windowConfig.allowOpenUrl,
297297
animationQuality: this.windowConfig.animationQuality

0 commit comments

Comments
 (0)