Skip to content

Commit

Permalink
Merge pull request #42 from OpenVoiceOS/release-0.1.6a2
Browse files Browse the repository at this point in the history
Release 0.1.6a2
  • Loading branch information
JarbasAl authored Nov 15, 2024
2 parents 6f41f34 + eecbda1 commit 01738d4
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 31 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Changelog

## [0.1.5a1](https://github.com/OpenVoiceOS/skill-ovos-personal/tree/0.1.5a1) (2024-10-31)
## [0.1.6a2](https://github.com/OpenVoiceOS/skill-ovos-personal/tree/0.1.6a2) (2024-11-15)

[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-personal/compare/0.1.4...0.1.5a1)
[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-personal/compare/0.1.6a1...0.1.6a2)

**Merged pull requests:**

- fix:allow workshop 3.0.0 [\#37](https://github.com/OpenVoiceOS/skill-ovos-personal/pull/37) ([JarbasAl](https://github.com/JarbasAl))
- fix; skilljson [\#41](https://github.com/OpenVoiceOS/skill-ovos-personal/pull/41) ([JarbasAl](https://github.com/JarbasAl))

## [0.1.6a1](https://github.com/OpenVoiceOS/skill-ovos-personal/tree/0.1.6a1) (2024-11-03)

[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-personal/compare/0.1.5...0.1.6a1)

**Merged pull requests:**

- da-dk/translate [\#39](https://github.com/OpenVoiceOS/skill-ovos-personal/pull/39) ([gitlocalize-app[bot]](https://github.com/apps/gitlocalize-app))



Expand Down
4 changes: 0 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
recursive-include dialog *
recursive-include vocab *
recursive-include locale *
recursive-include res *
recursive-include ui *
include *.json
include *.txt
3 changes: 2 additions & 1 deletion locale/da-dk/when.was.i.born.dialog
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Jeg er født i {year}.
{year} er det år jeg blev født.
{year} er det år jeg blev født.
{year} er, da jeg blev født.
16 changes: 16 additions & 0 deletions locale/en-us/skill.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"skill_id": "ovos-skill-personal.openvoiceos",
"source": "https://github.com/OpenVoiceOS/skill-ovos-personal",
"name": "Assistant's Background",
"description": "Learn history and personality of the assistant. Ask about the 'birth' and parentage of the voice assistant and get a taste of the community who is fostering this open source artificial intelligence.",
"examples": [
"When were you created?",
"What are you?",
"Where were you born?",
"Who made you?"
],
"tags": [
"personality",
"persona"
]
}
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

def get_version():
""" Find the version of the package"""
version = None
version_file = os.path.join(BASEDIR, 'version.py')
major, minor, build, alpha = (None, None, None, None)
with open(version_file) as f:
Expand Down
41 changes: 21 additions & 20 deletions translations/da-dk/dialogs.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"who.made.me.dialog": [
"Det vidunderlige {creator} f\u00e6llesskab og hold.",
"Alle i {creator} f\u00e6llesskabet og holdet."
],
"who.am.i.dialog": [
"Mit navn er {name} og jeg er en intelligent personlig assistent",
"Jeg er {name}, en open-source A.I."
],
"where.was.i.born.dialog": [
"Jeg er f\u00f8dt i {location}"
],
"what.am.i.dialog": [
"Jeg er en open source kunstig intelligens.",
"Jeg er et intelligent program som kommunikerer med maskiner"
],
"when.was.i.born.dialog": [
"Jeg er f\u00f8dt i {year}.",
"{year} er det \u00e5r jeg blev f\u00f8dt."
]
}
"who.made.me.dialog": [
"Det vidunderlige {creator} fællesskab og hold.",
"Alle i {creator} fællesskabet og holdet."
],
"who.am.i.dialog": [
"Mit navn er {name} og jeg er en intelligent personlig assistent",
"Jeg er {name}, en open-source A.I."
],
"where.was.i.born.dialog": [
"Jeg er født i {location}"
],
"what.am.i.dialog": [
"Jeg er en open source kunstig intelligens.",
"Jeg er et intelligent program som kommunikerer med maskiner"
],
"when.was.i.born.dialog": [
"Jeg er født i {year}.",
"{year} er det år jeg blev født.",
"{year} er, da jeg blev født."
]
}
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 = 1
VERSION_BUILD = 5
VERSION_ALPHA = 0
VERSION_BUILD = 6
VERSION_ALPHA = 2
# END_VERSION_BLOCK

0 comments on commit 01738d4

Please sign in to comment.