summaryrefslogtreecommitdiffstats
path: root/ui/index.html
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2025-07-23 17:41:49 -0700
committeryum <yum.food.vr@gmail.com>2025-07-23 17:41:49 -0700
commit790c91d7ad515c3c0a22ca1341316265b8f0d779 (patch)
tree28527bbcf87e8fab1d27eb76a1f5ea325b94d599 /ui/index.html
parent73de7cb2d8fb964e7f76ab55420e9bc331bf7bea (diff)
bugfixes
* fix model acquisition * fix local beepsnd * fix volume control
Diffstat (limited to 'ui/index.html')
-rw-r--r--ui/index.html13
1 files changed, 8 insertions, 5 deletions
diff --git a/ui/index.html b/ui/index.html
index 99e64dd..19c41ce 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -248,10 +248,13 @@
<input type="checkbox" id="reset_on_toggle" class="mr-2">
<span class="checkbox-text">Reset transcript on toggle</span>
</label>
- <label for="enable_local_beep" class="checkbox-label">
- <input type="checkbox" id="enable_local_beep" checked class="mr-2">
- <span class="checkbox-text">Enable local beep sounds</span>
- </label>
+ <div>
+ <label for="volume" class="form-label">
+ Local Beep Volume
+ <span id="volume-display" class="text-gray-500 text-sm ml-2">30%</span>
+ </label>
+ <input type="range" id="volume" min="0" max="100" step="10" value="30" class="form-input w-full">
+ </div>
</div>
</section>
@@ -314,7 +317,7 @@
<button type="button" id="start-process" class="btn btn-green flex-1">
Start
</button>
- <button type="button" id="stop-process" class="btn btn-red flex-1" disabled>
+ <button type="button" id="stop-process" class="btn btn-red flex-1">
Stop
</button>
</div>