From d9a8abb55782a803933dc70b552919384f50a36a Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Sat, 19 Oct 2024 13:07:48 +0100 Subject: [PATCH 1/3] fix:utterance filename (#171) companion to https://github.com/OpenVoiceOS/ovos-dinkum-listener/pull/140 the current default value in config is no longer valid --- ovos_config/mycroft.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index c214567..bd25a23 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -470,7 +470,7 @@ // "{uuid4}" - a random uuid4 // "{now:%Y-%m-%dT%H%M%S%z}" - the local ISO datetime // "{utcnow:%Y-%m-%dT%H%M%S%z}" - the UTC ISO datetime - "utterance_filename": "{hash}-{uuid4}", + "utterance_filename": "{md5}-{uuid4}", "wake_word_upload": { "disable": true, From ca3c7f8e8dd8912766442f545758603754636204 Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Sat, 19 Oct 2024 12:08:00 +0000 Subject: [PATCH 2/3] Increment Version to 0.4.3a1 --- ovos_config/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ovos_config/version.py b/ovos_config/version.py index 61b6ecc..f385e76 100644 --- a/ovos_config/version.py +++ b/ovos_config/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 4 -VERSION_BUILD = 2 -VERSION_ALPHA = 0 +VERSION_BUILD = 3 +VERSION_ALPHA = 1 # END_VERSION_BLOCK From eb4438e3df3021dee94b393a5db06a09d457f6bf Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Sat, 19 Oct 2024 12:08:26 +0000 Subject: [PATCH 3/3] Update Changelog --- CHANGELOG.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ee024f..3828388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,12 @@ # Changelog -## [0.4.2a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.4.2a1) (2024-10-18) +## [0.4.3a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.4.3a1) (2024-10-19) -[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.4.1a1...0.4.2a1) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.4.2...0.4.3a1) **Merged pull requests:** -- fix:server urls catalan [\#169](https://github.com/OpenVoiceOS/ovos-config/pull/169) ([JarbasAl](https://github.com/JarbasAl)) - -## [0.4.1a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.4.1a1) (2024-10-15) - -[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.4.0...0.4.1a1) - -**Merged pull requests:** - -- deprecate ready settings [\#166](https://github.com/OpenVoiceOS/ovos-config/pull/166) ([JarbasAl](https://github.com/JarbasAl)) +- fix:utterance filename [\#171](https://github.com/OpenVoiceOS/ovos-config/pull/171) ([JarbasAl](https://github.com/JarbasAl))