diff --git a/docs/version-history.md b/docs/version-history.md index 38119e11..30a7c62e 100644 --- a/docs/version-history.md +++ b/docs/version-history.md @@ -4,6 +4,10 @@ description: Find out about the latest changes to EyeCommander here # Version History +### 1.4.2 + +- Lift the max volume of the click + ### 1.4.1 - [Allow users to change volume of clicking sound.](https://github.com/AceCentre/EyeCommander/issues/82) diff --git a/package.json b/package.json index 454c7955..b00d7086 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "eyecommander", "productName": "EyeCommander", - "version": "1.4.1", + "version": "1.4.2", "description": "Detect blinks and convert them to switch output", "main": ".webpack/main", "scripts": { diff --git a/src/public/notif-louder.mp3 b/src/public/notif-louder.mp3 new file mode 100644 index 00000000..5d5c2494 Binary files /dev/null and b/src/public/notif-louder.mp3 differ diff --git a/src/react-app/blink-training.jsx b/src/react-app/blink-training.jsx index e05b3163..7860628d 100644 --- a/src/react-app/blink-training.jsx +++ b/src/react-app/blink-training.jsx @@ -24,7 +24,7 @@ export const BlinkTraining = ({ prevTask, forceReload }) => { const [blinkCount, setBlinkCount] = useState(0); const [allowNext, setAllowNext] = useState(true); - const [play] = useSound("./public/notif.mp3"); + const [play] = useSound("./public/notif-louder.mp3"); const onBlink = useCallback(() => { setBlinkCount((x) => x + 1); diff --git a/src/react-app/main-screen.jsx b/src/react-app/main-screen.jsx index a0008700..cdbe3e90 100644 --- a/src/react-app/main-screen.jsx +++ b/src/react-app/main-screen.jsx @@ -37,7 +37,9 @@ export const MainScreen = () => { const [paused, setPaused] = useState(false); const reloadTrigger = useReload([reloadPlaySound, reloadSoundVolume]); - const [play] = useSound("./public/notif.mp3", { volume: soundVolume || 0.5 }); + const [play] = useSound("./public/notif-louder.mp3", { + volume: soundVolume || 0.5, + }); const [isFaceInFrame, setIsFaceInFrame] = useState(true); const sendBlinkToBackend = useBlinkAction(); const openSettings = useOpenSettings();