Skip to content

Commit

Permalink
Artyom 1.0.1 🔈
Browse files Browse the repository at this point in the history
A big optimization to the artyom.say method that allow you to synthesize
huge blocks of texts without any problem and the callbacks will work
anyway.
  • Loading branch information
sdkcarlos committed Oct 24, 2016
1 parent c07552c commit f0e1cbe
Show file tree
Hide file tree
Showing 7 changed files with 1,648 additions and 1,601 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Between the most known features of artyom are :

### Voice Synthesis

- Synthesize large blocks of text without.
- onStart and onEnd callbacks will be always executed.
- Synthesize extreme huge blocks of text (+20K words according to the last test).
- onStart and onEnd callbacks **will be always executed independently of the text length**.

#Installation

Expand Down
7 changes: 4 additions & 3 deletions dev-no-download/artyom.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/**
* Artyom uses webkitSpeechRecognition && SpeechSynthesisUtterance property of Google Inc.
* Artyom.js requires webkitSpeechRecognition and speechSynthesis APIs
*
* @license MIT
* @version DEVELOPMENT_DO_NOT_USE
* @copyright Copyright (c) 2016 Copyright Our Code World All Rights Reserved.
* @author Carlos Delgado - www.ourcodeworld.com
* @param {type} window
* @param {Object} window
* @see https://sdkcarlos.github.io/sites/artyom.html
* @returns Artyom
* @returns {Object} artyom
*/
(function (window) {'use strict';
// getVoices is an asynchronous native method. At firs time it will ALWAYS return an empty array
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "artyom.js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Artyom is a Robust Wrapper of the Google Chrome SpeechSynthesis and SpeechRecognition that allows you to create a virtual assistent",
"main": "artyom.js",
"scripts": {
Expand All @@ -25,5 +25,5 @@
"bugs": {
"url": "https://github.com/sdkcarlos/artyom.js/issues"
},
"homepage": "https://github.com/sdkcarlos/artyom.js#readme"
"homepage": "https://sdkcarlos.github.io/sites/artyom.html"
}
Binary file modified public/artyom-source.zip
Binary file not shown.
Loading

0 comments on commit f0e1cbe

Please sign in to comment.