improve speed scale for waveform + version bump + profile migration

This commit is contained in:
Boof2015
2026-05-19 19:36:27 -04:00
parent 056d46e95d
commit 9416eac19c
11 changed files with 122 additions and 23 deletions
@@ -18,6 +18,11 @@ import {
findVUReferencePreset,
sanitizeVUReferenceDbfs,
} from '../../types/vumeter'
import {
MAX_WAVEFORM_SCROLL_SPEED,
MIN_WAVEFORM_SCROLL_SPEED,
WAVEFORM_SCROLL_SPEED_STEP,
} from '../../types/waveform'
import ThemedSelect from './ThemedSelect'
function vectorscopeModeLabel(mode: ScopeSettings['vectorscope']['mode']): string {
@@ -669,9 +674,9 @@ export default function ScopeSettingsSection({
label="Speed"
value={current.scrollSpeed}
valueLabel={`x${current.scrollSpeed.toFixed(0)}`}
min={1}
max={8}
step={1}
min={MIN_WAVEFORM_SCROLL_SPEED}
max={MAX_WAVEFORM_SCROLL_SPEED}
step={WAVEFORM_SCROLL_SPEED_STEP}
fullWidth={false}
onChange={(value) => onUpdate('waveform', { scrollSpeed: value })}
/>