diff --git a/apps/advcasio/ChangeLog b/apps/advcasio/ChangeLog index fd37c324e..bc4850635 100644 --- a/apps/advcasio/ChangeLog +++ b/apps/advcasio/ChangeLog @@ -1,4 +1,5 @@ 0.01: AdvCasio first version 0.02: Remove un-needed fonts to improve memory usage 0.03: Tell clock widgets to hide. -0.04: Swipe down to see widgets, step counter now just uses getHealthStatus +0.04: Swipe down to see widgets, step counter now just uses getHealthStatus +0.05: Report latest HRM rather than HRM 10 minutes ago (fix #2395) \ No newline at end of file diff --git a/apps/advcasio/app.js b/apps/advcasio/app.js index 9d246b7ef..d951da4cc 100644 --- a/apps/advcasio/app.js +++ b/apps/advcasio/app.js @@ -122,7 +122,7 @@ function draw() { g.setFontAlign(0,-1); g.setFont("8x12", 2); g.drawString(getTemperature(), 155, 132); - g.drawString(Math.round(Bangle.getHealthStatus("last").bpm), 109, 98); + g.drawString(Math.round(Bangle.getHealthStatus().bpm||Bangle.getHealthStatus("last").bpm), 109, 98); g.drawString(getSteps(), 158, 98); g.setFontAlign(-1,-1); diff --git a/apps/advcasio/metadata.json b/apps/advcasio/metadata.json index 25dc1243a..32f5de7d3 100644 --- a/apps/advcasio/metadata.json +++ b/apps/advcasio/metadata.json @@ -1,7 +1,7 @@ { "id": "advcasio", "name": "Advanced Casio Clock", "shortName":"advcasio", - "version":"0.04", + "version":"0.05", "description": "An over-engineered clock inspired by Casio watches. It has a 4 days weather, a timer using swipe and a scratchpad. Can be updated using a dedicated webapp.", "icon": "app.png", "tags": "clock", diff --git a/apps/cassioWatch/ChangeLog b/apps/cassioWatch/ChangeLog index 1180554ff..e0abc576c 100644 --- a/apps/cassioWatch/ChangeLog +++ b/apps/cassioWatch/ChangeLog @@ -10,4 +10,5 @@ 0.9: Remove ESLint spaces 0.10: Show daily steps, heartrate and the temperature if weather information is available. 0.11: Tell clock widgets to hide. -0.12: Swipe down to see widgets, step counter now just uses getHealthStatus +0.12: Swipe down to see widgets, step counter now just uses getHealthStatus +0.13: Report latest HRM rather than HRM 10 minutes ago (fix #2395) \ No newline at end of file diff --git a/apps/cassioWatch/app.js b/apps/cassioWatch/app.js index 19dd883d2..68c8a3ceb 100644 --- a/apps/cassioWatch/app.js +++ b/apps/cassioWatch/app.js @@ -121,7 +121,7 @@ function draw() { g.setFontAlign(0,-1); g.setFont("8x12", 2); g.drawString(getTemperature(), 155, 132); - g.drawString(Math.round(Bangle.getHealthStatus("last").bpm), 109, 98); + g.drawString(Math.round(Bangle.getHealthStatus().bpm||Bangle.getHealthStatus("last").bpm), 109, 98); g.drawString(getSteps(), 158, 98); g.setFontAlign(-1,-1); diff --git a/apps/cassioWatch/metadata.json b/apps/cassioWatch/metadata.json index 5ac4502fd..4b9985c82 100644 --- a/apps/cassioWatch/metadata.json +++ b/apps/cassioWatch/metadata.json @@ -4,7 +4,7 @@ "description": "Animated Clock with Space Cassio Watch Style", "screenshots": [{ "url": "screens/screen_night.png" },{ "url": "screens/screen_day.png" }], "icon": "app.png", - "version": "0.12", + "version": "0.13", "type": "clock", "tags": "clock, weather, cassio, retro", "supports": ["BANGLEJS2"], diff --git a/apps/lcars/ChangeLog b/apps/lcars/ChangeLog index 7deef5a4b..fb778c278 100644 --- a/apps/lcars/ChangeLog +++ b/apps/lcars/ChangeLog @@ -24,3 +24,4 @@ 0.24: Add ability to disable alarm functionality. 0.25: Add more colors to the settings and add the ability to disable the data charts+Markup. 0.26: Use widget_utils. +0.27: Report latest HRM rather than HRM 10 minutes ago (fix #2395) \ No newline at end of file diff --git a/apps/lcars/lcars.app.js b/apps/lcars/lcars.app.js index 4a5539c7a..cbb6e6ad5 100644 --- a/apps/lcars/lcars.app.js +++ b/apps/lcars/lcars.app.js @@ -240,7 +240,7 @@ function _drawData(key, y, c){ value = E.getAnalogVRef().toFixed(2) + "V"; } else if(key == "HRM"){ - value = Math.round(Bangle.getHealthStatus("last").bpm); + value = Math.round(Bangle.getHealthStatus().bpm||Bangle.getHealthStatus("last").bpm); } else if (key == "TEMP"){ var weather = getWeather(); @@ -710,7 +710,7 @@ Bangle.on('touch', function(btn, e){ var is_right = e.x > right; var is_upper = e.y < upper; var is_lower = e.y > lower; - + if(!settings.disableData){ if(is_left && lcarsViewPos == 1){ feedback(); diff --git a/apps/lcars/metadata.json b/apps/lcars/metadata.json index 787ca9046..65c59081f 100644 --- a/apps/lcars/metadata.json +++ b/apps/lcars/metadata.json @@ -3,7 +3,7 @@ "name": "LCARS Clock", "shortName":"LCARS", "icon": "lcars.png", - "version":"0.26", + "version":"0.27", "readme": "README.md", "supports": ["BANGLEJS2"], "description": "Library Computer Access Retrieval System (LCARS) clock.",