Skip to content

Releases: batopa/favella

v0.3.0

22 Dec 09:18
Compare
Choose a tag to compare

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

v0.2.0

12 Nov 13:59
Compare
Choose a tag to compare

Major changes:

  • added the ability to mute only console.error(). In that case Favella.speak() will continue to talk to you
  • wrapped some useful speechSynthesis attribute and function
  • you can use event callback as onstart(), onend(), etc.. in Favella.speak()

More info here

v0.1.0

12 Nov 13:54
Compare
Choose a tag to compare

First release!