Complete settings helptext

This commit is contained in:
2026-04-10 00:18:49 -04:00
parent 4e6bab254a
commit 41d1a4e707

View File

@@ -7,11 +7,11 @@ module.exports = function (minified) {
function toggleHelptext() {
if (this.get()) {
clayConfig.getItemById('helptext_host').set("Examples:<br>https://jellyfin.example.com<br>http://192.168.1.10:8096");
clayConfig.getItemById('helptext_api_key').set("1. Log into web UI as admin<br>2. Go to your \"Dashboard\"<br>4. Select \"API Keys\" from the left menu<br>5. Create a key with \"New API Key\"; name it whatever you like and enter the key (not the name) in this box<br><br>They key will look like this:<br>d7f4c2e8a4b3444bb5d6b685fa5918b6");
clayConfig.getItemById('helptext_api_key').set("1. Log into Jellyfin web UI as an admin<br>2. Go to your \"Dashboard\"<br>3. Select \"API Keys\" from the left menu<br>4. Create a key with \"New API Key\"; name it whatever you like and enter the key (not the name) in this box<br><br>The key will look like this:<br>d7f4c2e8a4b3444bb5d6b685fa5918b6");
clayConfig.getItemById('helptext_user').set("Enter Jellyfin username to track;<br>this is used in case multiple users were active when you fell asleep")
} else {
clayConfig.getItemById('helptext_host').set("Examples:<br>https://plex.example.com<br>http://192.168.1.10:8096");
clayConfig.getItemById('helptext_api_key').set("TODO Plex help");
clayConfig.getItemById('helptext_host').set("IMPORTANT:<br>Plex support requires installing Tautulli alongside Plex.<br>Enter the URL to your Tautulli instance, not Plex itself.<br><br>Examples:<br>https://tautulli.example.com<br>http://192.168.1.10:8181");
clayConfig.getItemById('helptext_api_key').set("1. Log into your Tautulli web UI (after initial configuration)<br>2. Go to settings<br>3. Select \"Web Interface\" from the left menu<br>4. At the bottom, ensure \"Enable API\" is checked<br>5. Reveal your API key; this is what goes in this box<br><br>The key will look like this:<br>9cb7053181cf4c8d807640f8c6a93b20");
clayConfig.getItemById('helptext_user').set("Enter Plex username to track;<br>this is used in case multiple users were active when you fell asleep")
}
}