diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a2099c9..ef17aad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,25 @@ # Changelog -## [0.4.0a1](https://github.com/OpenVoiceOS/skill-ovos-date-time/tree/0.4.0a1) (2024-11-12) +## [0.4.1a2](https://github.com/OpenVoiceOS/ovos-skill-date-time/tree/0.4.1a2) (2024-11-19) -[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-date-time/compare/0.3.9...0.4.0a1) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-date-time/compare/0.4.1a1...0.4.1a2) -**Implemented enhancements:** +**Fixed bugs:** -- play sound - when hour changes [\#47](https://github.com/OpenVoiceOS/skill-ovos-date-time/issues/47) +- Mix of English and Dutch with "what's the date" [\#70](https://github.com/OpenVoiceOS/ovos-skill-date-time/issues/70) **Merged pull requests:** -- feat: hour chime [\#66](https://github.com/OpenVoiceOS/skill-ovos-date-time/pull/66) ([JarbasAl](https://github.com/JarbasAl)) +- fix:allow workshop 3.0.0 [\#77](https://github.com/OpenVoiceOS/ovos-skill-date-time/pull/77) ([JarbasAl](https://github.com/JarbasAl)) +- fix: skilljson [\#76](https://github.com/OpenVoiceOS/ovos-skill-date-time/pull/76) ([JarbasAl](https://github.com/JarbasAl)) + +## [0.4.1a1](https://github.com/OpenVoiceOS/ovos-skill-date-time/tree/0.4.1a1) (2024-11-12) + +[Full Changelog](https://github.com/OpenVoiceOS/ovos-skill-date-time/compare/0.4.0...0.4.1a1) + +**Merged pull requests:** + +- Added key word "welke" \("which"\) for "which day is it"\) [\#75](https://github.com/OpenVoiceOS/ovos-skill-date-time/pull/75) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app)) diff --git a/__init__.py b/__init__.py index 38c08890..accd29eb 100644 --- a/__init__.py +++ b/__init__.py @@ -509,8 +509,7 @@ def show_time(self, display_time: str): def show_time_mark1(self, display_time: str): LOG.debug(f"Emitting ovos.mk1.display_time with time: {display_time}") - self.bus.emit(Message("ovos.mk1.display_time", - {"text": display_time})) + self.bus.emit(Message("ovos.mk1.display_time", {"text": display_time})) def show_time_gui(self, display_time): """ Display time on the GUI. """ diff --git a/locale/en-us/skill.json b/locale/en-us/skill.json new file mode 100644 index 00000000..bb48f3e1 --- /dev/null +++ b/locale/en-us/skill.json @@ -0,0 +1,22 @@ +{ + "skill_id": "skill-ovos-date-time.openvoiceos", + "source": "https://github.com/OpenVoiceOS/skill-ovos-date-time", + "name": " Date and Time", + "description": "Get the time, date, day of the week", + "examples": [ + "What time is it?", + "Tell me the day of the week", + "How many days until July 4th", + "What's the date?", + "Show me the time", + "What day is Memorial Day 2020?", + "What time is it in Paris?" + ], + "tags": [ + "clock", + "date", + "time", + "query", + "information" + ] +} \ No newline at end of file diff --git a/locale/nl-nl/vocab/Query.voc b/locale/nl-nl/vocab/Query.voc index b42064d2..80734c44 100644 --- a/locale/nl-nl/vocab/Query.voc +++ b/locale/nl-nl/vocab/Query.voc @@ -3,4 +3,4 @@ geef vertel wanneer wat -weet \ No newline at end of file +welke \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 3fbe9aff..b6913a4b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,6 @@ tzlocal>=1.3 timezonefinder~=5.2 geocoder~=1.38 ovos-utils>=0.0.38 -ovos-workshop>=0.0.16,<3.0.0 +ovos-workshop>=0.0.16,<4.0.0 ovos-date-parser>=0.0.1,<1.0.0 ovos-utterance-normalizer>=0.0.1,<1.0.0 \ No newline at end of file diff --git a/translations/nl-nl/vocabs.json b/translations/nl-nl/vocabs.json index 7b81a333..4e957c47 100644 --- a/translations/nl-nl/vocabs.json +++ b/translations/nl-nl/vocabs.json @@ -32,7 +32,7 @@ "van vandaag" ], "/vocab/Query.voc": [ - "weet", + "welke", "wat", "geef", "vertel", diff --git a/version.py b/version.py index 21df5513..fe7914bb 100644 --- a/version.py +++ b/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 4 -VERSION_BUILD = 0 -VERSION_ALPHA = 0 +VERSION_BUILD = 1 +VERSION_ALPHA = 2 # END_VERSION_BLOCK