mirror of
https://github.com/lumapu/ahoy.git
synced 2025-07-13 22:47:15 +02:00
webserial minor overflow fix #660 web `index.html` improve version information #701 fix MQTT sets power limit to zero (0) #692 changed `reset at midnight` with timezone #697
This commit is contained in:
parent
20864dba57
commit
9ef2df21fa
9 changed files with 28 additions and 15 deletions
|
@ -219,7 +219,9 @@
|
|||
if(getVerInt(version) < getVerInt(release))
|
||||
p.append(svg(iconInfo, 20, 20, "#00d", "icon"), span("Update available, current released version: " + release), br());
|
||||
else if(getVerInt(version) > getVerInt(release))
|
||||
p.append(svg(iconInfo, 20, 20, "#00d", "icon"), span("You are using a development version, current released version: " + release), br());
|
||||
p.append(svg(iconInfo, 20, 20, "#00d", "icon"), span("You are using development version " + version +". In case of issues you may want to try the current stable release: " + release), br());
|
||||
else
|
||||
p.append(svg(iconInfo, 20, 20, "#00d", "icon"), span("You are using the current stable release: " + release), br());
|
||||
}
|
||||
|
||||
document.getElementById("warn_info").replaceChildren(p);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue