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

The actual 100th release!

Compare
Choose a tag to compare
@forslund forslund released this 14 Feb 12:50
· 1848 commits to dev since this release

The 100th release will be the last of the 18.8's, next release will most likely be 19.2.0.

Nice duration #1977

A new parsing helper for extracting durations from text has been added. The extract_duration() method returns a tuple with a timedelta and the remaining text. Ex:

>>> from mycroft.util.parse import extract_duration
>>> extract_duration("15 minutes and 30 seconds until launch")
(datetime.timedelta(0, 930), 'and  until launch')

Document "save_utterance" config option #1980

The "record_utterance" option was undocumented and badly named so a new config option "save_utterance" was added to the listener config. The "record_utterance" option will still be working until 19.02.

Update Italian formatting functions #1984

Big thanks to @aleale99 for submitting this update!

Bugfixes

  • Fix issue with using sudo during the interactive part of dev_setup.sh #1978
  • Fix minor typo in api-code #1991
  • Fix multiple skills subprocesses #1975
  • Fix rare crash issue when adding vocabulary while calculating intents. #1975