Skip to content

Commit c3cd035

Browse files
committed
fix(action-names): use existing names
1 parent c6d2bac commit c3cd035

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

main.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def _register_actions(self):
6666
plugin_base=self,
6767
action_base=ChangeTextChannel,
6868
action_id_suffix="ChangeText",
69-
action_name="Change Text Channel",
69+
action_id="com_imdevinc_StreamControllerDiscordPlugin::ChangeTextChannel",
7070
action_support={
7171
Input.Key: ActionInputSupport.SUPPORTED,
7272
Input.Dial: ActionInputSupport.UNTESTED,
@@ -78,7 +78,7 @@ def _register_actions(self):
7878
change_voice = ActionHolder(
7979
plugin_base=self,
8080
action_base=ChangeVoiceChannel,
81-
action_id_suffix="ChangeVoice",
81+
action_id="com_imdevinc_StreamControllerDiscordPlugin::ChangeVoiceChannel",
8282
action_name="Change Voice Channel",
8383
action_support={
8484
Input.Key: ActionInputSupport.SUPPORTED,
@@ -91,7 +91,7 @@ def _register_actions(self):
9191
deafen = ActionHolder(
9292
plugin_base=self,
9393
action_base=Deafen,
94-
action_id_suffix="Deafen",
94+
action_id="com_imdevinc_StreamControllerDiscordPlugin::Deafen",
9595
action_name="Toggle Deafen",
9696
action_support={
9797
Input.Key: ActionInputSupport.SUPPORTED,
@@ -104,7 +104,7 @@ def _register_actions(self):
104104
mute = ActionHolder(
105105
plugin_base=self,
106106
action_base=Mute,
107-
action_id_suffix="Mute",
107+
action_id="com_imdevinc_StreamControllerDiscordPlugin::Mute",
108108
action_name="Toggle Mute",
109109
action_support={
110110
Input.Key: ActionInputSupport.SUPPORTED,
@@ -117,7 +117,7 @@ def _register_actions(self):
117117
toggle_ptt = ActionHolder(
118118
plugin_base=self,
119119
action_base=TogglePTT,
120-
action_id_suffix="TogglePTT",
120+
action_id="com_imdevinc_StreamControllerDiscordPlugin::Push_To_Talk",
121121
action_name="Toggle PTT",
122122
action_support={
123123
Input.Key: ActionInputSupport.SUPPORTED,

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.5.0",
2+
"version": "1.5.1",
33
"thumbnail": "store/thumbnail.png",
44
"id": "com_imdevinc_StreamControllerDiscordPlugin",
55
"name": "Discord",

0 commit comments

Comments
 (0)