Merge pull request #3461 from lawern/master

pull/3468/head
Rob Pilling 2024-06-20 19:32:45 +01:00
commit 10860939e7
4 changed files with 4 additions and 3 deletions

View File

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

View File

@ -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 + "%";

View File

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

View File

@ -249,7 +249,7 @@ module.exports = {
]
},
"apps/lcars/lcars.app.js": {
"hash": "a305f73ee4e77b6534746ea79e699f700fd3db305f2b0289ef081d8869e1faf1",
"hash": "297b92373c9e8db3ba31cb3aa42909d18a1951eef9bd7e8e0847957aa411765d",
"rules": [
"no-unused-vars",
"no-undef"