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

Commit

Permalink
Version 2.9.2 alexa-smart-screen-sdk
Browse files Browse the repository at this point in the history
*** 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.
  • Loading branch information
aravnata committed May 11, 2022
1 parent 5e49fdf commit cb10e63
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v2.9.2 released 05/11/2022:
#### 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.

### v2.9.1 released 04/05/2022:
#### Bug fixes
* Fixed hold-to-talk event handling logic in the native layer to keep it in sync with GUI
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)

project(AlexaSmartScreenSDK VERSION 2.9.1 LANGUAGES CXX)
project(AlexaSmartScreenSDK VERSION 2.9.2 LANGUAGES CXX)
set(PROJECT_BRIEF "A cross-platform, modular SDK for multi modal interaction with the Alexa Voice Service")
configure_file (
"${PROJECT_SOURCE_DIR}/modules/Alexa/Utils/include/Utils/SmartScreenSDKVersion.h.in"
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 Smart Screen SDK

<p>
<a href="https://github.com/alexa/alexa-smart-screen-sdk/tree/v2.9.1" alt="version">
<img src="https://img.shields.io/badge/stable%20version-2.9.1-brightgreen" /></a>
<a href="https://github.com/alexa/alexa-smart-screen-sdk/tree/v2.9.2" alt="version">
<img src="https://img.shields.io/badge/stable%20version-2.9.2-brightgreen" /></a>
<a href="https://github.com/alexa/avs-device-sdk/tree/v1.26.0" alt="DeviceSDK">
<img src="https://img.shields.io/badge/avs%20device%20sdk-1.26.0-blueviolet" /></a>
<a href="https://github.com/alexa/apl-client-library/tree/v1.8.3" alt="APLClientLibrary">
Expand Down
6 changes: 3 additions & 3 deletions modules/GUI/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion modules/GUI/js/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const HOST = 'localhost';
const PORT = 8933;

/// The minimum SmartScreenSDK version required for this runtime.
const SMART_SCREEN_SDK_MIN_VERSION = '2.9.1';
const SMART_SCREEN_SDK_MIN_VERSION = '2.9.2';

/// Indicates whether the SDK has built with WebSocket SSL Disabled.
declare const DISABLE_WEBSOCKET_SSL : boolean;
Expand Down
2 changes: 1 addition & 1 deletion modules/GUI/js/src/components/APLRendererWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export class APLRendererWindow extends React.Component<IAPLRendererWindowProps,

const environment : IEnvironment = {
agentName: 'SmartScreenSDK',
agentVersion: '2.9.1',
agentVersion: '2.9.2',
disallowVideo: this.windowConfig.disallowVideo,
allowOpenUrl: this.windowConfig.allowOpenUrl,
animationQuality: this.windowConfig.animationQuality
Expand Down

0 comments on commit cb10e63

Please sign in to comment.