From 9346309848354b724ecaa5f3bd478d2a95a7c039 Mon Sep 17 00:00:00 2001 From: ZerGo0 Date: Fri, 10 Jan 2020 20:08:21 +0100 Subject: [PATCH] Added Detailed Guide for API Key in the plugin --- README.md | 4 ++++ .../PropertyInspector/ToggleInputMute/ToggleInputMute.html | 3 +++ .../ToggleOutputMute/ToggleOutputMute.html | 3 +++ .../PropertyInspector/sdtools.common.js | 6 +++--- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25f3bb6..3fd5fe4 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,10 @@ 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 +[v1.1](https://github.com/ZerGo0/streamdeck-teamspeak3integration/releases/tag/v1.1): +- It should now mute you on the currently selected server tab +- Renamed Plugin Category and Action Names +- Added Detailed Guide for the API-Key Setup: [Here](https://github.com/ZerGo0/streamdeck-teamspeak3integration/blob/master/Docs/API%20Key%20Guide.md) [v1.0](https://github.com/ZerGo0/streamdeck-teamspeak3integration/releases/tag/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 diff --git a/streamdeck-teamspeak3integration/PropertyInspector/ToggleInputMute/ToggleInputMute.html b/streamdeck-teamspeak3integration/PropertyInspector/ToggleInputMute/ToggleInputMute.html index 0168d23..de17bba 100644 --- a/streamdeck-teamspeak3integration/PropertyInspector/ToggleInputMute/ToggleInputMute.html +++ b/streamdeck-teamspeak3integration/PropertyInspector/ToggleInputMute/ToggleInputMute.html @@ -25,6 +25,9 @@
TS3>Tools>Options>Addons>ClientQuery>Settings
+
+ Detailed Guide with pictures: Here +
\ No newline at end of file diff --git a/streamdeck-teamspeak3integration/PropertyInspector/ToggleOutputMute/ToggleOutputMute.html b/streamdeck-teamspeak3integration/PropertyInspector/ToggleOutputMute/ToggleOutputMute.html index 0168d23..de17bba 100644 --- a/streamdeck-teamspeak3integration/PropertyInspector/ToggleOutputMute/ToggleOutputMute.html +++ b/streamdeck-teamspeak3integration/PropertyInspector/ToggleOutputMute/ToggleOutputMute.html @@ -25,6 +25,9 @@
TS3>Tools>Options>Addons>ClientQuery>Settings
+
+ Detailed Guide with pictures: Here +
\ No newline at end of file diff --git a/streamdeck-teamspeak3integration/PropertyInspector/sdtools.common.js b/streamdeck-teamspeak3integration/PropertyInspector/sdtools.common.js index 937a5c6..525d123 100644 --- a/streamdeck-teamspeak3integration/PropertyInspector/sdtools.common.js +++ b/streamdeck-teamspeak3integration/PropertyInspector/sdtools.common.js @@ -163,12 +163,12 @@ function sendValueToPlugin(value, param) { } } -function openWebsite() { +function openAPISetupGuide() { if (websocket && (websocket.readyState === 1)) { const json = { 'event': "openUrl", 'payload': { - 'url': "https://BarRaider.com" + 'url': "https://github.com/ZerGo0/streamdeck-teamspeak3integration/blob/master/Docs/API%20Key%20Guide.md" } }; websocket.send(JSON.stringify(json)); @@ -255,7 +255,7 @@ function addDynamicStyles(clrs) { } `; document.body.appendChild(node); -}; +} /** UTILITIES */