Add option for logarithmic volume scaling

Introduces a user setting to enable logarithmic (quadratic) volume scaling for more natural audio perception.
This commit is contained in:
Adam 2025-12-25 07:55:47 +00:00
parent 122fc34a75
commit 9012c7f0a8
4 changed files with 17 additions and 2 deletions

View file

@ -18,7 +18,8 @@ export const state = () => ({
authorSortBy: 'name',
authorSortDesc: false,
jumpForwardAmount: 10,
jumpBackwardAmount: 10
jumpBackwardAmount: 10,
useLogarithmicVolume: false
}
})