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."},