Skip to content

v0.3.0

Latest
Compare
Choose a tag to compare
@batopa batopa released this 22 Dec 09:18
· 10 commits to master since this release

Major changes:

  • all configurations are moved inside an object and are easily reachable via API using Favella.getConfig(name)

  • Favella.setup() and Favella.speak() support chaining, so now you can do

    Favella.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();