Skip to content

Commit 5642573

Browse files
committed
Merge branch 'development' v0.8.3
2 parents 7a37174 + e37898f commit 5642573

28 files changed

+1303
-1194
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [0.8.3] - 2017-07-29
8+
### Changed
9+
- Moved default icons from config to sample application
10+
- Reduced the size of silent sounds
11+
- Updated dependencies
12+
- Added input validation and safer var initialization to store
13+
14+
### Fixed
15+
- Fixed mic icon tooltip message to show correct status
16+
- Excluded LexApp from unit testing which was causing unit test issues
17+
- Fixed audio playback on mobile due to autoplay bug
18+
- Fixed input container on mobile not showing on latest vuetify
19+
720
## [0.8.2] - 2017-07-27
821
### Fixed
922
- Fixed config initialization issues

dist/index.html

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66

7+
<title>LexWebUi Demo</title>
8+
79
<!-- Font Dependencies -->
810
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons" rel="stylesheet" type="text/css">
911
<!-- CSS Dependencies -->
10-
<link href="https://unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet" type="text/css">
12+
<link href="https://unpkg.com/vuetify@0.14.7/dist/vuetify.min.css" rel="stylesheet" type="text/css">
1113

1214
<!-- LexWebUi CSS -->
1315
<link href="./lex-web-ui.min.css" rel="stylesheet" type="text/css">
@@ -27,29 +29,30 @@
2729
<div id="lex-web-ui"></div>
2830

2931
<!-- JavaScript Dependencies -->
30-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.88.0.min.js"></script>
31-
<script src="https://unpkg.com/[email protected].1"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.92.0.min.js"></script>
33+
<script src="https://unpkg.com/[email protected].2"></script>
3234
<script src="https://unpkg.com/[email protected]"></script>
33-
<script src="https://unpkg.com/[email protected]"></script>
35+
<!-- see vuetify CSS under HEAD -->
36+
<script src="https://unpkg.com/[email protected]"></script>
3437

3538
<!-- LexWebUi Library -->
3639
<script src="./lex-web-ui.js"></script>
3740
<script>
3841
const lexWebUi = new LexWebUi.Loader({
39-
/* pass your own configuration
4042
cognito: {
41-
poolId: 'us-east-1:deadbeef-fade-babe-cafe-0123456789ab',
43+
/* pass your own Cognito pool ID */
44+
// poolId: 'us-east-1:deadbeef-fade-babe-cafe-0123456789ab',
4245
},
4346
lex: {
44-
botName: 'myLexHelpBot',
47+
/* pass the name of your own Lex bot */
48+
// botName: 'myLexHelpBot',
4549
initialText: 'How can I help you?',
46-
initialSpeechInstruction: 'How can I help'?
50+
initialSpeechInstruction: 'How can I help?',
4751
},
4852
ui: {
4953
toolbarTitle: 'Help Bot',
5054
toolbarLogo: '',
5155
},
52-
*/
5356
});
5457

5558
new Vue({

dist/lex-web-ui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/lex-web-ui.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)