From 94f23488887ae9c358ee8b8a30ff55446bdf1900 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Tue, 15 Oct 2024 03:12:08 +0100 Subject: [PATCH 1/6] deprecate ready settings (#166) --- ovos_config/mycroft.conf | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index 51721cb..c214567 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -105,20 +105,6 @@ // default to $XDG_DATA_DIRS/$BASE_FOLDER where BASE_FOLDER is read from ovos.conf (default "mycroft") // "cache_path": "/tmp/mycroft/cache", - # emit mycroft.ready signal when all these conditions are met - # different setups will have different needs - # eg, a server does not care about audio - # pairing -> device is paired - # internet -> device is connected to the internet - NOT IMPLEMENTED - # skills -> skills reported ready - # speech -> stt reported ready - # audio -> audio playback reported ready - # gui -> gui websocket reported ready - NOT IMPLEMENTED - # enclosure -> enclosure/HAL reported ready - NOT IMPLEMENTED - # network_skills -> skills with network requirements - # internet_skills -> skills with internet requirements - "ready_settings": ["skills"], - // To enable a utterance transformer plugin just add it's name with any relevant config // these plugins can mutate the utterance between STT and the Intent stage // they may also modify message.context with metadata From 54a61e0a4bae967f8e16f246b4d9ed4ec1d5d6ae Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Tue, 15 Oct 2024 02:12:25 +0000 Subject: [PATCH 2/6] Increment Version to 0.4.1a1 --- 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 21df551..e75d037 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 = 0 -VERSION_ALPHA = 0 +VERSION_BUILD = 1 +VERSION_ALPHA = 1 # END_VERSION_BLOCK From 86bf0f8d9e0cfbe50361f7cc8cecd7ac00163582 Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Tue, 15 Oct 2024 02:12:52 +0000 Subject: [PATCH 3/6] Update Changelog --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9981b71..0fd96b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Changelog -## [0.4.0a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.4.0a1) (2024-10-08) +## [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.3.1...0.4.0a1) +[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.4.0...0.4.1a1) **Merged pull requests:** -- feat:enable fake barge in by default [\#164](https://github.com/OpenVoiceOS/ovos-config/pull/164) ([JarbasAl](https://github.com/JarbasAl)) +- deprecate ready settings [\#166](https://github.com/OpenVoiceOS/ovos-config/pull/166) ([JarbasAl](https://github.com/JarbasAl)) From 0a6f05d04d66dee0eba99f1a164f4848b19ca791 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Fri, 18 Oct 2024 21:39:09 +0100 Subject: [PATCH 4/6] fix:server urls catalan (#169) typo in urls --- ovos_config/recommends/online_stt/ca-es.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ovos_config/recommends/online_stt/ca-es.conf b/ovos_config/recommends/online_stt/ca-es.conf index cc1deb6..ab85110 100644 --- a/ovos_config/recommends/online_stt/ca-es.conf +++ b/ovos_config/recommends/online_stt/ca-es.conf @@ -4,8 +4,8 @@ "fallback_module": "", "ovos-stt-plugin-server": { "url": [ - "https://stt.smartgic.io/citrinet", - "https://citrinetstt.ziggyai.online" + "https://stt.smartgic.io/citrinet/stt", + "https://citrinetstt.ziggyai.online/stt" ] } } From d2f1450637b80d5fb3f0aff0b99ce07adaaf47bf Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Fri, 18 Oct 2024 20:39:26 +0000 Subject: [PATCH 5/6] Increment Version to 0.4.2a1 --- ovos_config/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovos_config/version.py b/ovos_config/version.py index e75d037..4a2ed6d 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 = 1 +VERSION_BUILD = 2 VERSION_ALPHA = 1 # END_VERSION_BLOCK From c493b74f25691a4b2164d8d6e3a23131b4e867a0 Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Fri, 18 Oct 2024 20:40:01 +0000 Subject: [PATCH 6/6] Update Changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fd96b1..1ee024f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.4.2a1](https://github.com/OpenVoiceOS/ovos-config/tree/0.4.2a1) (2024-10-18) + +[Full Changelog](https://github.com/OpenVoiceOS/ovos-config/compare/0.4.1a1...0.4.2a1) + +**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)