From ce886f1c5e45607577e46cafcd9331bdb23784ac Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Fri, 15 Nov 2024 00:33:13 +0000 Subject: [PATCH 1/3] fix:ensure path exists (#287) --- ovos_workshop/skills/ovos.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ovos_workshop/skills/ovos.py b/ovos_workshop/skills/ovos.py index 6b76d63..9d39f64 100644 --- a/ovos_workshop/skills/ovos.py +++ b/ovos_workshop/skills/ovos.py @@ -934,6 +934,7 @@ def register_homescreen_app(self, icon: str, name: str, event: str): if not os.path.isfile(full_icon_path): self.log.error(f"failed to register homescreen app, icon does not exist: {full_icon_path}") return + os.makedirs(f"{GUI_CACHE_PATH}/{self.skill_id}", exist_ok=True) shared_path = f"{GUI_CACHE_PATH}/{self.skill_id}/{icon}" shutil.copy(full_icon_path, shared_path) From c424db78cff56be2ee8f420033bf7550e315c040 Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Fri, 15 Nov 2024 00:33:29 +0000 Subject: [PATCH 2/3] Increment Version to 2.4.2a1 --- ovos_workshop/version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ovos_workshop/version.py b/ovos_workshop/version.py index e0d9468..596f398 100644 --- a/ovos_workshop/version.py +++ b/ovos_workshop/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 2 VERSION_MINOR = 4 -VERSION_BUILD = 1 -VERSION_ALPHA = 0 +VERSION_BUILD = 2 +VERSION_ALPHA = 1 # END_VERSION_BLOCK From d934d155dfa22bb2679e91bf419400bc72d473b6 Mon Sep 17 00:00:00 2001 From: JarbasAl Date: Fri, 15 Nov 2024 00:33:53 +0000 Subject: [PATCH 3/3] Update Changelog --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e556819..886658f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ # Changelog -## [2.4.1a1](https://github.com/OpenVoiceOS/OVOS-workshop/tree/2.4.1a1) (2024-11-15) +## [2.4.2a1](https://github.com/OpenVoiceOS/OVOS-workshop/tree/2.4.2a1) (2024-11-15) -[Full Changelog](https://github.com/OpenVoiceOS/OVOS-workshop/compare/2.4.0...2.4.1a1) +[Full Changelog](https://github.com/OpenVoiceOS/OVOS-workshop/compare/2.4.1...2.4.2a1) **Merged pull requests:** -- fix:icon file path [\#285](https://github.com/OpenVoiceOS/OVOS-workshop/pull/285) ([JarbasAl](https://github.com/JarbasAl)) +- fix:ensure path exists [\#287](https://github.com/OpenVoiceOS/OVOS-workshop/pull/287) ([JarbasAl](https://github.com/JarbasAl))