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)) 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, 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