Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ZerGo0 committed Dec 31, 2019
1 parent 67fd659 commit d450621
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 8 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Allows you to interact with the TeamSpeak 3 Client via the ClientQuery (Telnet)
You need to have the [ClientQuery plugin](https://www.myteamspeak.com/addons/943dd816-7ef2-48d7-82b8-d60c3b9b10b3) installed in your TeamSpeak 3 Client in order to use this plugin.

## Changelog
- Added 2 buttons to toggle mute for the Input and Output on the TS3 Client
v1.0:
- Added 2 buttons to toggle the mute status for the Input and Output on the TS3 Client
- Automatically update the buttons states depending on the state on the TS3 Client

## Features
Expand All @@ -16,17 +17,17 @@ You need to have the [ClientQuery plugin](https://www.myteamspeak.com/addons/943

### Download

* [Download plugin](https://github.com/ZerGo0/CHANGETHIS/releases/)
* [Download plugin](https://github.com/ZerGo0/streamdeck-teamspeak3integration/releases/)

## Possible improvements
- 1 Telnet Client/Connection for all actions (definitely needed for more actions in the future, the TS3 Client can't handle too many connections)
- ClientQuery API-Key shared across all actions

## I found a bug, who do I contact?
For support please contact the developer. Contact information is available at https://github.com/ZerGo0
For support please contact the developer. Contact information is available at <https://github.com/ZerGo0>

## I have a feature request, who do I contact?
Please contact the developer. Contact information is available at https://github.com/ZerGo0
Please contact the developer. Contact information is available at <https://github.com/ZerGo0>

## Dependencies
* Uses StreamDeck-Tools by BarRaider: [![NuGet](https://img.shields.io/nuget/v/streamdeck-tools.svg?style=flat)](https://www.nuget.org/packages/streamdeck-tools)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace ZerGo0.TeamSpeak3Integration.Actions
{
[PluginActionId("com.zergo0.teamspeak3integration.toggleInputMute")]
[PluginActionId("com.zergo0.teamspeak3integration.toggleinputmute")]
public class TeamSpeak3InputMuteAction : PluginBase
{
private class PluginSettings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace ZerGo0.TeamSpeak3Integration.Actions
{
[PluginActionId("com.zergo0.teamspeak3integration.toggleOutputMute")]
[PluginActionId("com.zergo0.teamspeak3integration.toggleoutputmute")]
public class TeamSpeak3OutputMuteAction : PluginBase
{
private class PluginSettings
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
12 changes: 12 additions & 0 deletions streamdeck-teamspeak3integration/TeamSpeak3Integration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,15 @@
<Content Include="Images\Microphone.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\MicrophoneMute.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\pluginIcon%402x.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand All @@ -120,9 +126,15 @@
<Content Include="Images\Sound.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\SoundMute.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="License.txt" />
<Content Include="PropertyInspector\caret.svg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down
4 changes: 2 additions & 2 deletions streamdeck-teamspeak3integration/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
],
"SupportedInMultiActions": true,
"Tooltip": "Toggles the INPUT mute status on TeamSpeak 3 via ClientQuery",
"UUID": "com.zergo0.teamspeak3integration.toggleInputMute",
"UUID": "com.zergo0.teamspeak3integration.toggleinputmute",
"PropertyInspectorPath": "PropertyInspector/ToggleInputMute/ToggleInputMute.html"
},
{
Expand All @@ -45,7 +45,7 @@
],
"SupportedInMultiActions": true,
"Tooltip": "Toggles the OUTPUT mute status on TeamSpeak 3 via ClientQuery",
"UUID": "com.zergo0.teamspeak3integration.toggleOutputMute",
"UUID": "com.zergo0.teamspeak3integration.toggleoutputmute",
"PropertyInspectorPath": "PropertyInspector/ToggleOutputMute/ToggleOutputMute.html"
}
],
Expand Down

0 comments on commit d450621

Please sign in to comment.