From b4f2be55d4fab5e84d37999e0589cc9a78874329 Mon Sep 17 00:00:00 2001 From: Jage9 Date: Sat, 21 Feb 2026 23:25:16 -0500 Subject: [PATCH] Clarify emit speed/tempo tooltip interaction --- client/public/version.js | 2 +- server/app/items/widget.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/public/version.js b/client/public/version.js index d1c35db..a2e562e 100644 --- a/client/public/version.js +++ b/client/public/version.js @@ -1,5 +1,5 @@ // Maintainer-controlled web client version. // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) -window.CHGRID_WEB_VERSION = "2026.02.22 R133"; +window.CHGRID_WEB_VERSION = "2026.02.22 R134"; // Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid. window.CHGRID_TIME_ZONE = "America/Detroit"; diff --git a/server/app/items/widget.py b/server/app/items/widget.py index e5becfb..04448fb 100644 --- a/server/app/items/widget.py +++ b/server/app/items/widget.py @@ -67,12 +67,12 @@ PROPERTY_METADATA: dict[str, dict[str, object]] = { }, "emitSoundSpeed": { "valueType": "number", - "tooltip": "Playback speed/pitch percent for emitted sound. 50 is normal, 0 is half, 100 is double.", + "tooltip": "Playback speed/pitch percent for emitted sound. 50 is normal, 0 is half, 100 is double. Using speed and tempo together may sound weird.", "range": {"min": 0, "max": 100, "step": 1}, }, "emitSoundTempo": { "valueType": "number", - "tooltip": "Playback tempo percent for emitted sound. 50 is normal, 0 is half, 100 is double.", + "tooltip": "Playback tempo percent for emitted sound. 50 is normal, 0 is half, 100 is double. Using speed and tempo together may sound weird.", "range": {"min": 0, "max": 100, "step": 1}, }, "emitEffect": {"valueType": "list", "tooltip": "Effect applied to emitted sound."},