Skip to content

Commit

Permalink
Merge pull request #156 from OpenVoiceOS/release-0.2.1a1
Browse files Browse the repository at this point in the history
Release 0.2.1a1
  • Loading branch information
JarbasAl authored Sep 15, 2024
2 parents 5d0dbf1 + e887cdc commit 3012fa5
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.2.0a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.2.0a1) (2024-09-11)
## [0.2.1a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.2.1a1) (2024-09-15)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.1.2...0.2.0a1)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.2.0...0.2.1a1)

**Merged pull requests:**

- feat:fallback\_plugins [\#153](https://github.com/OpenVoiceOS/ovos-config/pull/153) ([JarbasAl](https://github.com/JarbasAl))
- fix:microphone default [\#155](https://github.com/OpenVoiceOS/ovos-config/pull/155) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
6 changes: 3 additions & 3 deletions ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,9 @@

// Microphone plugin to be read audio
"microphone": {
"module": "ovos-microphone-plugin-sounddevice",
"ovos-microphone-plugin-sounddevice": {"fallback_module": "ovos-microphone-plugin-alsa"},
"ovos-microphone-plugin-alsa": {"fallback_module": "ovos-microphone-plugin-pyaudio"}
"module": "ovos-microphone-plugin-alsa",
"ovos-microphone-plugin-alsa": {"fallback_module": "ovos-microphone-plugin-sounddevice"},
"ovos-microphone-plugin-sounddevice": {"fallback_module": "ovos-microphone-plugin-pyaudio"}
},

// if true, will remove silence from both ends of audio before sending it to STT
Expand Down
4 changes: 2 additions & 2 deletions ovos_config/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 2
VERSION_BUILD = 0
VERSION_ALPHA = 0
VERSION_BUILD = 1
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 3012fa5

Please sign in to comment.