Skip to content

Commit

Permalink
Merge pull request #78 from OpenVoiceOS/release-0.4.1a2
Browse files Browse the repository at this point in the history
Release 0.4.1a2
  • Loading branch information
JarbasAl authored Nov 19, 2024
2 parents a963c62 + f1068cb commit 9c5ff02
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 12 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))



Expand Down
3 changes: 1 addition & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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. """
Expand Down
22 changes: 22 additions & 0 deletions locale/en-us/skill.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
2 changes: 1 addition & 1 deletion locale/nl-nl/vocab/Query.voc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ geef
vertel
wanneer
wat
weet
welke
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion translations/nl-nl/vocabs.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"van vandaag"
],
"/vocab/Query.voc": [
"weet",
"welke",
"wat",
"geef",
"vertel",
Expand Down
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9c5ff02

Please sign in to comment.