mirror of https://github.com/espruino/BangleApps
vibration caused the accelerometer to never stop
parent
4d2763d1e0
commit
4deee14663
|
@ -2,3 +2,4 @@
|
|||
1.00: overhauled the whole app, made some margins larger to be easier to tap on
|
||||
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
|
||||
|
|
|
@ -121,7 +121,7 @@ drawMenu();
|
|||
Bangle.on ('touch', touchHandler);
|
||||
Bangle.on ('accel', function (xyz) {
|
||||
|
||||
if (xyz.diff >= 0.3) {
|
||||
if (xyz.diff >= 0.5) {
|
||||
|
||||
menu = false;
|
||||
rollDice();
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ "id": "multidice",
|
||||
"name": "multiple dice roller",
|
||||
"shortName":"multidice",
|
||||
"version":"1.02",
|
||||
"version":"1.03",
|
||||
"description": "roll anywhere from 1-8 dice at the same time",
|
||||
"icon": "app.png",
|
||||
"tags": "tool,game",
|
||||
|
|
Loading…
Reference in New Issue