decreased vibration strength

pull/2623/head
Le~Kat 2023-02-25 00:25:33 -05:00
parent 7af12fd68e
commit d64609aa92
3 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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();

View File

@ -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",