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

Commit

Permalink
Added Detailed Guide for API Key in the plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ZerGo0 committed Jan 10, 2020
1 parent fc13fd9 commit 9346309
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
<details class="message">
<summary>TS3>Tools>Options>Addons>ClientQuery>Settings</summary>
</details>
<details class="message">
<summary>Detailed Guide with pictures: <span class="linkspan" onclick="openAPISetupGuide()">Here</span></summary>
</details>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
<details class="message">
<summary>TS3>Tools>Options>Addons>ClientQuery>Settings</summary>
</details>
<details class="message">
<summary>Detailed Guide with pictures: <span class="linkspan" onclick="openAPISetupGuide()">Here</span></summary>
</details>
</div>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -255,7 +255,7 @@ function addDynamicStyles(clrs) {
}
`;
document.body.appendChild(node);
};
}

/** UTILITIES */

Expand Down

0 comments on commit 9346309

Please sign in to comment.