This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
The actual 100th release!
·
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!