Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

API updates

Compare
Choose a tag to compare
@forslund forslund released this 26 Nov 16:08
· 3018 commits to dev since this release

Send E-mail #1230

The skills API now includes a self.send_email() method allowing the skill to send an e-mail to the user. Practical if the skill wants to send a link to the user or for things such as shopping lists.

Metrics #1247

The DeviceApi now includes a metrics method allowing skills and core to upload information to the Mycroft server should the user allow it. The method is very general purpose and can take any method as long as it can be serialized to json.

Skills developer can easily access this functionality using the self.report_metric method in the Skill API.

Misc

  • Added support for Google Cloud API SST, big thanks to @ahayworth for providing this. #1226
  • The AudioService can now add files to currently playing playlist #1197
  • Listening can now be triggered from the messagebus by sending mycroft.mic.listen #1244
  • Remove pystache dependency #1235
  • Improve lip synch #1242
  • Code cleanup and bugfixes, Many thanks to @gauravMann for cleaning up the usage of mutables as default arguments.