Skip to content

Commit

Permalink
Merge pull request #288 from OpenVoiceOS/release-2.4.2a1
Browse files Browse the repository at this point in the history
Release 2.4.2a1
  • Loading branch information
JarbasAl authored Nov 15, 2024
2 parents c0cc128 + d934d15 commit 7fbb300
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))



Expand Down
1 change: 1 addition & 0 deletions ovos_workshop/skills/ovos.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions ovos_workshop/version.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7fbb300

Please sign in to comment.