Skip to content

Commit

Permalink
fix: icon (#16)
Browse files Browse the repository at this point in the history
* fix: icon

* fix: icon
  • Loading branch information
JarbasAl authored Nov 18, 2024
1 parent e9aac01 commit 19fdc19
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
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

0 comments on commit 19fdc19

Please sign in to comment.