Skip to content

Commit

Permalink
Merge pull request #239 from OpenVoiceOS/release-0.1.3a1
Browse files Browse the repository at this point in the history
Release 0.1.3a1
  • Loading branch information
JarbasAl authored Sep 23, 2024
2 parents e4b1677 + b139141 commit a9aef27
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [0.1.2a1](https://github.com/OpenVoiceOS/OVOS-workshop/tree/0.1.2a1) (2024-09-11)
## [0.1.3a1](https://github.com/OpenVoiceOS/OVOS-workshop/tree/0.1.3a1) (2024-09-23)

[Full Changelog](https://github.com/OpenVoiceOS/OVOS-workshop/compare/0.1.1...0.1.2a1)
[Full Changelog](https://github.com/OpenVoiceOS/OVOS-workshop/compare/0.1.2...0.1.3a1)

**Merged pull requests:**

- fix:backend\_client\_version\_compat [\#232](https://github.com/OpenVoiceOS/OVOS-workshop/pull/232) ([JarbasAl](https://github.com/JarbasAl))
- fix:wait while speaking [\#238](https://github.com/OpenVoiceOS/OVOS-workshop/pull/238) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
6 changes: 3 additions & 3 deletions ovos_workshop/skills/ovos.py
Original file line number Diff line number Diff line change
Expand Up @@ -1677,7 +1677,7 @@ def speak(self, utterance: str, expect_response: bool = False,
self.bus.emit(m)

if wait:
timeout = wait if isinstance(wait, int) else 15
timeout = 15 if isinstance(wait, bool) else wait
sess = SessionManager.get(m)
sess.is_speaking = True
SessionManager.wait_while_speaking(timeout, sess)
Expand Down Expand Up @@ -1724,7 +1724,7 @@ def _play_audio_old(self, filename: str, instant: bool = False,
"uri": filename # new namespace
}))
if wait:
timeout = wait if isinstance(wait, int) else 30
timeout = 30 if isinstance(wait, bool) else wait
sess = SessionManager.get(message)
sess.is_speaking = True
SessionManager.wait_while_speaking(timeout, sess)
Expand Down Expand Up @@ -1769,7 +1769,7 @@ def play_audio(self, filename: str, instant: bool = False,

self.bus.emit(message.forward(mtype, data))
if wait:
timeout = wait if isinstance(wait, int) else 30
timeout = 30 if isinstance(wait, bool) else wait
sess = SessionManager.get(message)
sess.is_speaking = True
SessionManager.wait_while_speaking(timeout, sess)
Expand Down
4 changes: 2 additions & 2 deletions ovos_workshop/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 = 2
VERSION_ALPHA = 0
VERSION_BUILD = 3
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit a9aef27

Please sign in to comment.