Skip to content

Commit

Permalink
Merge pull request #17 from OpenVoiceOS/release-0.1.3a1
Browse files Browse the repository at this point in the history
Release 0.1.3a1
  • Loading branch information
JarbasAl authored Nov 18, 2024
2 parents e9aac01 + 2c20c52 commit 9c6b326
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 11 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## [0.1.2a1](https://github.com/OpenVoiceOS/skill-ovos-somafm/tree/0.1.2a1) (2024-11-17)
## [0.1.3a1](https://github.com/OpenVoiceOS/skill-ovos-somafm/tree/0.1.3a1) (2024-11-18)

[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-somafm/compare/0.1.1...0.1.2a1)
[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-somafm/compare/0.1.2...0.1.3a1)

**Merged pull requests:**

- fix: skilljson [\#14](https://github.com/OpenVoiceOS/skill-ovos-somafm/pull/14) ([JarbasAl](https://github.com/JarbasAl))
- fix: icon [\#16](https://github.com/OpenVoiceOS/skill-ovos-somafm/pull/16) ([JarbasAl](https://github.com/JarbasAl))



Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
recursive-include dialog *
recursive-include vocab *
recursive-include locale *
recursive-include res *
recursive-include ui *
include README.md
include requirements.txt
include CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src='./ui/somafm.png' card_color='#40DBB0' width='50' height='50' style='vertical-align:bottom'/> SomaFM
# <img src='./res/somafm.png' card_color='#40DBB0' width='50' height='50' style='vertical-align:bottom'/> SomaFM

OCP skill for SomaFM

Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class SomaFMSkill(OVOSCommonPlaybackSkill):

def __init__(self, *args, **kwargs):
super().__init__(supported_media=[MediaType.MUSIC, MediaType.RADIO, MediaType.GENERIC],
skill_icon=join(dirname(__file__), "somafm.png"),
skill_icon=join(dirname(__file__), "res", "somafm.png"),
skill_voc_filename="somafm_skill",
*args, **kwargs)

Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_requirements(requirements_filename: str):


def find_resource_files():
resource_base_dirs = ("locale", "qt5", "vocab", "dialog", "regex", "skill")
resource_base_dirs = ("locale", "res")
base_dir = path.dirname(__file__)
package_data = ["*.json"]
for res in resource_base_dirs:
Expand Down
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_BUILD = 2
VERSION_ALPHA = 0
VERSION_BUILD = 3
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 9c6b326

Please sign in to comment.