mirror of https://github.com/espruino/BangleApps
Merge pull request #3461 from lawern/master
commit
10860939e7
|
@ -28,3 +28,4 @@
|
|||
0.28: Battery Vref implemented correctly.
|
||||
0.29: Support fastload.
|
||||
0.30: Add many new colors to the settings and allows random colors on startup if enabled.
|
||||
0.31: Replace degree symbol in temperature by '.
|
||||
|
|
|
@ -678,7 +678,7 @@ let getWeather = function(){
|
|||
let weather = weatherJson.weather;
|
||||
|
||||
// Temperature
|
||||
weather.temp = locale.temp(weather.temp-273.15);
|
||||
weather.temp = locale.temp(weather.temp-273.15).replace('°', '\'');
|
||||
|
||||
// Humidity
|
||||
weather.hum = weather.hum + "%";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "LCARS Clock",
|
||||
"shortName":"LCARS",
|
||||
"icon": "lcars.png",
|
||||
"version":"0.30",
|
||||
"version":"0.31",
|
||||
"readme": "README.md",
|
||||
"supports": ["BANGLEJS2"],
|
||||
"description": "Library Computer Access Retrieval System (LCARS) clock.",
|
||||
|
|
|
@ -249,7 +249,7 @@ module.exports = {
|
|||
]
|
||||
},
|
||||
"apps/lcars/lcars.app.js": {
|
||||
"hash": "a305f73ee4e77b6534746ea79e699f700fd3db305f2b0289ef081d8869e1faf1",
|
||||
"hash": "297b92373c9e8db3ba31cb3aa42909d18a1951eef9bd7e8e0847957aa411765d",
|
||||
"rules": [
|
||||
"no-unused-vars",
|
||||
"no-undef"
|
||||
|
|
Loading…
Reference in New Issue