Fixing some issues after recent merges

pull/780/head^2
Gordon Williams 2021-07-27 10:22:41 +01:00
parent 6168782cf5
commit 2dda299cab
10 changed files with 11 additions and 11 deletions

View File

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

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

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

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

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

View File

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

1
apps/thermom/ChangeLog Normal file
View File

@ -0,0 +1 @@
0.02: New App!