Major changes:
-
all configurations are moved inside an object and are easily reachable via API using
Favella.getConfig(name)
-
Favella.setup()
andFavella.speak()
support chaining, so now you can doFavella.setup({ speakOptions: { lang: 'en-US' } }) .speak('ehi world') .speak('say hello to favella');
-
added support to speech recognition! Now Favella can listen to you using SpeechRecognition
-
introduced the super useless parrot mode. Speak to Favella and listen it repeats what you said
// toggle parrot mode on Favella.parrotMode('it-IT'); // toggle parrot mode off Favella.parrotMode();