mirror of https://github.com/espruino/BangleApps
issue with app calling roll function too many times at startup
parent
3001618e0f
commit
f9c338d90d
|
@ -11,3 +11,4 @@
|
||||||
1.09: hopefully now it's fixed?
|
1.09: hopefully now it's fixed?
|
||||||
1.10: not having web bluetooth to debug is a PAIN
|
1.10: not having web bluetooth to debug is a PAIN
|
||||||
1.11: decreased vibration time, decreased accel requirement
|
1.11: decreased vibration time, decreased accel requirement
|
||||||
|
1.12: issue with app calling roll function too many times at startup
|
||||||
|
|
|
@ -137,7 +137,7 @@ function random (max) {
|
||||||
function vibrate() {
|
function vibrate() {
|
||||||
|
|
||||||
Bangle.on ('accel', voidFn);
|
Bangle.on ('accel', voidFn);
|
||||||
Bangle.buzz(50, 1).then ((value) => {
|
Bangle.buzz(50, 0.5).then ((value) => {
|
||||||
|
|
||||||
Bangle.on ('accel', accelHandler);
|
Bangle.on ('accel', accelHandler);
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ "id": "multidice",
|
{ "id": "multidice",
|
||||||
"name": "multiple dice roller",
|
"name": "multiple dice roller",
|
||||||
"shortName":"multidice",
|
"shortName":"multidice",
|
||||||
"version":"1.11",
|
"version":"1.12",
|
||||||
"description": "roll anywhere from 1-8 dice at the same time",
|
"description": "roll anywhere from 1-8 dice at the same time",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "tool,game",
|
"tags": "tool,game",
|
||||||
|
|
Loading…
Reference in New Issue