mirror of https://github.com/espruino/BangleApps
`counter2` Fix memory leak
parent
aff05dc4e5
commit
ae5a2754a2
|
@ -1,3 +1,4 @@
|
|||
0.01: New App!
|
||||
0.02: Added Settings & readme
|
||||
0.03: fix lint warnings
|
||||
0.03: Fix lint warnings
|
||||
0.04: Fix lint warnings
|
||||
|
|
|
@ -21,7 +21,7 @@ const screenheight = g.getHeight();
|
|||
const halfwidth = screenwidth / 2;
|
||||
const halfheight = screenheight / 2;
|
||||
|
||||
counter = [];
|
||||
const counter = [];
|
||||
counter[0] = s.counter0;
|
||||
counter[1] = s.counter1;
|
||||
const defaults = [];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "counter2",
|
||||
"name": "Counter2",
|
||||
"version": "0.03",
|
||||
"version": "0.04",
|
||||
"description": "Dual Counter",
|
||||
"readme":"README.md",
|
||||
"icon": "counter2-icon.png",
|
||||
|
|
Loading…
Reference in New Issue