Skip to content

Releases: TalAter/annyang

Significantly faster HTTPS results

31 Aug 22:05
Compare
Choose a tag to compare

annyang now uses non-continuous mode when the user is on HTTPS.

This allows for drastically faster results on HTTPS.

Ludicrous Speed

This is one more reason to use HTTPS

Unfortunately, non-continuous mode isn't practical on HTTP, because of repeating security notices (and using interimResults usually gives partial results until the final one is returned).

Grunt dev task + detailed API docs

22 Aug 01:12
Compare
Choose a tag to compare

Easily run a local server (with HTTPS) by running grunt dev. Makes extending annyang much simpler. Thanks @PavelVanecek for the contribution.

Added detailed documentation and API specs. These will now be generated automatically from the JSDoc comments, which will be kept at their new high level.

Method removeCommands() can now remove all commands

21 Aug 17:07
Compare
Choose a tag to compare

Calling removeCommands() with no arguments will now remove all the commands registered to annyang. Previously it did nothing when no arguments were passed.
Thanks go to @James1x0 for the contribution.

Minor non-critical fix in abort() method

This release is Fully backwards compatible.

Removed need for manually running init

07 Jan 21:30
Compare
Choose a tag to compare

Calling annyang.init() is now optional. annyang will lazily initialize on its own.

The big benefit here, is that you no longer need to worry about always running init() first. Just start() listening whenever you want, addCommands() whenever, and as often as you like.

For example:

  // Add commands
  annyang.addCommands(commands);

  // Add more commands
  annyang.addCommands(anotherCommand);

  // Start listening.
  annyang.start();

  // Just remembered a few more commands to add
  annyang.addCommands(moreCommands);

  // Stop listening.
  annyang.abort();

This release is Fully backwards compatible. You can still run init() if you want.

Stable public release

09 Dec 16:05
Compare
Choose a tag to compare
v1.0.0

Version 1.0.0