mirror of https://github.com/espruino/BangleApps
Fixing some issues after recent merges
parent
6168782cf5
commit
2dda299cab
|
@ -2117,7 +2117,7 @@
|
|||
"icon": "app.png",
|
||||
"description": "La palla predice il futuro",
|
||||
"tags": "game",
|
||||
"version": "0.03",
|
||||
"version": "0.01",
|
||||
"allow_emulator":true,
|
||||
"storage": [
|
||||
{ "name": "jbm8b_IT.app.js", "url": "app.js" },
|
||||
|
@ -3199,7 +3199,7 @@
|
|||
{"name":"waypoints.json","url":"waypoints.json"}
|
||||
]
|
||||
},
|
||||
{ "id": "BangleBridge",
|
||||
{ "id": "banglebridge",
|
||||
"name": "BangleBridge",
|
||||
"shortName":"BangleBridge",
|
||||
"icon": "widget.png",
|
||||
|
@ -3210,8 +3210,8 @@
|
|||
"readme": "README.md",
|
||||
"storage": [
|
||||
{"name":"banglebridge.wid.js","url":"widget.js"},
|
||||
{"name":"iconWatch.png","url":"iconWatch.png"},
|
||||
{"name":"heart.png","url":"heart.png"}
|
||||
{"name":"banglebridge.watch.img","url":"watch.img"},
|
||||
{"name":"banglebridge.heart.img","url":"heart.img"}
|
||||
]
|
||||
},
|
||||
{ "id": "qmsched",
|
||||
|
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
@ -256,10 +256,8 @@
|
|||
|
||||
|
||||
function draw() {
|
||||
// g.drawImage(storage.read("iconWatch.img"), this.x + 1, this.y + 1);
|
||||
g.drawImage(storage.read("iconWatch.png"),this.x + 1,this.y + 1);
|
||||
|
||||
g.drawImage(storage.read("heart.png"), 145, 167);
|
||||
g.drawImage(storage.read("banglebridge.watch.img"),this.x + 1,this.y + 1);
|
||||
g.drawImage(storage.read("banglebridge.heart.img"), 145, 167);
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
@ -1,4 +1,4 @@
|
|||
0.01: New App!
|
||||
0.02 added emulator capability and display of widgets
|
||||
0.03 bug of advancing time fixed; doztime now correct within ca. 1 second
|
||||
0.04 changed time colour from slightly off white to pure white
|
||||
0.02: added emulator capability and display of widgets
|
||||
0.03: bug of advancing time fixed; doztime now correct within ca. 1 second
|
||||
0.04: changed time colour from slightly off white to pure white
|
||||
|
|
|
@ -36,6 +36,7 @@ function drawMenu() {
|
|||
}
|
||||
g.clear();
|
||||
drawMenu();
|
||||
g.flip(); // force an update now to make this snappier
|
||||
Bangle.on('drag',e=>{
|
||||
var dy = e.dy;
|
||||
if (menuScroll - dy < 0)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
0.02: New App!
|
Loading…
Reference in New Issue