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
10 changes: 5 additions & 5 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _register_actions(self):
plugin_base=self,
action_base=ChangeTextChannel,
action_id_suffix="ChangeText",
action_name="Change Text Channel",
action_id="com_imdevinc_StreamControllerDiscordPlugin::ChangeTextChannel",
action_support={
Input.Key: ActionInputSupport.SUPPORTED,
Input.Dial: ActionInputSupport.UNTESTED,
Expand All @@ -78,7 +78,7 @@ def _register_actions(self):
change_voice = ActionHolder(
plugin_base=self,
action_base=ChangeVoiceChannel,
action_id_suffix="ChangeVoice",
action_id="com_imdevinc_StreamControllerDiscordPlugin::ChangeVoiceChannel",
action_name="Change Voice Channel",
action_support={
Input.Key: ActionInputSupport.SUPPORTED,
Expand All @@ -91,7 +91,7 @@ def _register_actions(self):
deafen = ActionHolder(
plugin_base=self,
action_base=Deafen,
action_id_suffix="Deafen",
action_id="com_imdevinc_StreamControllerDiscordPlugin::Deafen",
action_name="Toggle Deafen",
action_support={
Input.Key: ActionInputSupport.SUPPORTED,
Expand All @@ -104,7 +104,7 @@ def _register_actions(self):
mute = ActionHolder(
plugin_base=self,
action_base=Mute,
action_id_suffix="Mute",
action_id="com_imdevinc_StreamControllerDiscordPlugin::Mute",
action_name="Toggle Mute",
action_support={
Input.Key: ActionInputSupport.SUPPORTED,
Expand All @@ -117,7 +117,7 @@ def _register_actions(self):
toggle_ptt = ActionHolder(
plugin_base=self,
action_base=TogglePTT,
action_id_suffix="TogglePTT",
action_id="com_imdevinc_StreamControllerDiscordPlugin::Push_To_Talk",
action_name="Toggle PTT",
action_support={
Input.Key: ActionInputSupport.SUPPORTED,
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.5.0",
"version": "1.5.1",
"thumbnail": "store/thumbnail.png",
"id": "com_imdevinc_StreamControllerDiscordPlugin",
"name": "Discord",
Expand Down