diff --git a/src/renderer/lib/sound.js b/src/renderer/lib/sound.js index 38835400..002177c2 100644 --- a/src/renderer/lib/sound.js +++ b/src/renderer/lib/sound.js @@ -7,7 +7,7 @@ const config = require('../../config') const {InvalidSoundNameError} = require('./errors') const path = require('path') -const VOLUME = 0.15 +const VOLUME = 0.3 /* Cache of Audio elements, for instant playback */ const cache = {} @@ -19,7 +19,7 @@ const sounds = { }, DELETE: { url: 'file://' + path.join(config.STATIC_PATH, 'sound', 'delete.wav'), - volume: VOLUME + volume: VOLUME * 0.5 }, DISABLE: { url: 'file://' + path.join(config.STATIC_PATH, 'sound', 'disable.wav'), @@ -39,7 +39,7 @@ const sounds = { }, PLAY: { url: 'file://' + path.join(config.STATIC_PATH, 'sound', 'play.wav'), - volume: VOLUME + volume: VOLUME * 1.25 }, STARTUP: { url: 'file://' + path.join(config.STATIC_PATH, 'sound', 'startup.wav'), diff --git a/static/sound/add.wav b/static/sound/add.wav index 83482af4..fe7aa54d 100644 Binary files a/static/sound/add.wav and b/static/sound/add.wav differ diff --git a/static/sound/disable.wav b/static/sound/disable.wav index b629f766..d74846a2 100644 Binary files a/static/sound/disable.wav and b/static/sound/disable.wav differ diff --git a/static/sound/done.wav b/static/sound/done.wav index 6eef77af..5879c033 100644 Binary files a/static/sound/done.wav and b/static/sound/done.wav differ diff --git a/static/sound/enable.wav b/static/sound/enable.wav index fefc652b..07f3c28f 100644 Binary files a/static/sound/enable.wav and b/static/sound/enable.wav differ diff --git a/static/sound/error.wav b/static/sound/error.wav index 4ab36c1d..4246b748 100644 Binary files a/static/sound/error.wav and b/static/sound/error.wav differ diff --git a/static/sound/play.wav b/static/sound/play.wav index 6080d14e..bb572293 100644 Binary files a/static/sound/play.wav and b/static/sound/play.wav differ diff --git a/static/sound/startup.wav b/static/sound/startup.wav index dbc825ae..50089c90 100644 Binary files a/static/sound/startup.wav and b/static/sound/startup.wav differ