diff --git a/apps/multidice/ChangeLog b/apps/multidice/ChangeLog index 6316210e5..9bc00d9be 100644 --- a/apps/multidice/ChangeLog +++ b/apps/multidice/ChangeLog @@ -3,3 +3,4 @@ 1.01: fixed bug that caused rolled dice on the right of screen to be writ off-screen 1.02: added vibration when dice is rolled 1.03: vibration caused the accelerometer to never stop +1.04: decreased vibration strength diff --git a/apps/multidice/app.js b/apps/multidice/app.js index 8bf2ca662..ef16ca2de 100644 --- a/apps/multidice/app.js +++ b/apps/multidice/app.js @@ -109,7 +109,7 @@ function rollDice() { } } - Bangle.buzz(); + Bangle.buzz (200, 0.1); } function random (max) { @@ -121,7 +121,7 @@ drawMenu(); Bangle.on ('touch', touchHandler); Bangle.on ('accel', function (xyz) { - if (xyz.diff >= 0.5) { + if (xyz.diff >= 0.4) { menu = false; rollDice(); diff --git a/apps/multidice/metadata.json b/apps/multidice/metadata.json index 6612cc999..ef5841877 100644 --- a/apps/multidice/metadata.json +++ b/apps/multidice/metadata.json @@ -1,7 +1,7 @@ { "id": "multidice", "name": "multiple dice roller", "shortName":"multidice", - "version":"1.03", + "version":"1.04", "description": "roll anywhere from 1-8 dice at the same time", "icon": "app.png", "tags": "tool,game",