Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions actions/Shoutout.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@


class Icons(StrEnum):
CHAT = "chat"
SHOUTOUT = "shoutout"


class Shoutout(TwitchCore):
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
self.icon_keys = [Icons.CHAT]
self.current_icon = self.get_icon(Icons.CHAT)
self.icon_name = Icons.CHAT
self.icon_keys = [Icons.SHOUTOUT]
self.current_icon = self.get_icon(Icons.SHOUTOUT)
self.icon_name = Icons.SHOUTOUT
self.has_configuration = True

def create_event_assigners(self) -> None:
Expand Down
Binary file added assets/shoutout.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def _add_icons(self) -> None:
self.add_icon("slow_mode", self.get_asset_path("slow.png"))
self.add_icon("money", self.get_asset_path("money.png"))
self.add_icon("delay", self.get_asset_path("delay.png"))
self.add_icon("shoutout", self.get_asset_path("shoutout.png"))

def _add_colors(self) -> None:
self.add_color("default", [0, 0, 0, 0])
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.8.0",
"version": "1.8.1",
"thumbnail": "store/thumbnail.png",
"id": "com_imdevinc_StreamControllerTwitchPlugin",
"name": "Twitch Integration",
Expand Down