Skip to content

Commit

Permalink
Updated documentation and requirements to match v4.2.2
Browse files Browse the repository at this point in the history
- Removed QSU master branch html file as it is no longer required.
- QSU master branch will no longer be used and the QSU will only be updated with release versions.
  • Loading branch information
DuckBoss committed Sep 17, 2020
1 parent b6e0618 commit 6f7f977
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 575 deletions.
3 changes: 0 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
</head>
<body>
<div class="main-content">
<h4> Master v4.2+ QSU - Experimental, but up-to-date</h4>
<a href="pages/qsu/qsu_master.html">Quick Setup Utility - Web Interface (Master Branch - Most up-to-date/experimental)</a>
<br>
<h4> Release v4.2+ QSU - Most recent release</h4>
<a href="pages/qsu/qsu.html">Quick Setup Utility - Web Interface (Release Version - Most recent release)</a>
<h4> JJMumbleBot Wiki</h4>
Expand Down
8 changes: 5 additions & 3 deletions docs/js/qsu/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ DefaultComment = ${document.getElementById('server-comment').value}
function get_media_directories() {
return `
[Media Directories]
; VLC location
; FFmpeg location
FfmpegPath = ${document.getElementById('media-ffmpeg-path').value}
; VLC location
VlcPath = ${document.getElementById('media-vlc-path').value}
; Use Stereo Audio
UseStereoAudio = ${document.getElementById('media-stereo-enable').value}
; Enable/Disable VLC Console Messages
FfmpegRunQuiet = ${document.getElementById('media-quiet-enable').value}
; Enable/Disable Audio Library Console Messages
AudioLibraryRunQuiet = ${document.getElementById('media-quiet-enable').value}
; The default volume when the bot starts (default=0.3)
DefaultVolume = ${document.getElementById('media-default-volume').value}
; Enable Audio Ducking (off by default, use !duckaudio to toggle on and off)
Expand Down
169 changes: 0 additions & 169 deletions docs/js/qsu/qsu_master.js

This file was deleted.

17 changes: 12 additions & 5 deletions docs/pages/qsu/qsu.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<title>
JJMumbleBot Quick Setup Utility - Web Interface (RELEASE)
JJMumbleBot Quick Setup Utility - Web Interface (v4.2.2)
</title>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
Expand All @@ -28,7 +28,7 @@
</head>
<body>
<div class="container">
<h2 id=title-id>JJMumbleBot Quick Setup Utility - Master Branch</h2>
<h2 id=title-id>JJMumbleBot Quick Setup Utility - v4.2.2</h2>
</div>
<hr>
<div class='container'>
Expand Down Expand Up @@ -124,20 +124,27 @@ <h3>Media Settings</h3>
<div class='container bg-dark text-white rounded'>
<p>The file path to FFmpeg.</p>
<b>[Example: path/to/ffmpeg]</b><br>
<label for='media-vlc-path-input'>FFmpeg Path:</label><br>
<label for='media-ffmpeg-path-input'>FFmpeg Path:</label><br>
<input type="text" id="media-ffmpeg-path" name='media-ffmpeg-path-input' class='required form-control border border-danger' size='100' value="ffmpeg" required>
</div>
<br>
<div class='container bg-dark text-white rounded'>
<p>The file path to FFmpeg.</p>
<b>[Example: path/to/vlc]</b><br>
<label for='media-vlc-path-input'>FFmpeg Path:</label><br>
<input type="text" id="media-vlc-path" name='media-vlc-path-input' class='required form-control border border-danger' size='100' value="vlc" required>
</div>
<br>
<div class='container bg-dark text-white rounded'>
<p>To enable stereo audio for the bot, check the box. Uncheck the box for mono audio.</p>
<input type="checkbox" id="media-stereo-enable" name='media-stereo-enable-input' class='required' checked required>
<label for='media-stereo-enable-input'>Enable Stereo Audio</label>
</div>
<br>
<div class='container bg-dark text-white rounded'>
<p>To enable ffmpeg quiet mode, check the box.</p>
<p>To enable audio library quiet mode, check the box. This will suppress console messages from audio libraries.</p>
<input type="checkbox" id="media-quiet-enable" name='media-quiet-enable-input' class='required' checked required>
<label for='media-quiet-enable-input'>Enable FFmpeg Quiet Mode</label>
<label for='media-quiet-enable-input'>Enable Audio Library Quiet Mode</label>
</div>
<br>
<div class='container bg-dark text-white rounded'>
Expand Down
Loading

0 comments on commit 6f7f977

Please sign in to comment.