Skip to content

Commit

Permalink
Fixed unit, updated version to 0.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisBrock committed Sep 2, 2022
1 parent b0e5c5d commit cc795f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def get_json_data_statistics():
"best_month_production_kwh": rows_best_month[0][1],
"best_year_date": rows_best_year[0][0],
"best_year_production_kwh": rows_best_year[0][1],
"highest_production_w": rows_highest_prod[0][2],
"highest_production_w": rows_highest_prod[0][2] * 1000.0,
"highest_production_date": rows_highest_prod[0][1],
}
return json.dumps(data)
Expand Down
2 changes: 1 addition & 1 deletion backend/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Version = "0.19.0"
Version = "0.19.1"


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion site/js/version.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

const Version = "0.19.0";
const Version = "0.19.1";

function setVersion() {
document.getElementById("version").innerHTML = "Version " + Version;
Expand Down

0 comments on commit cc795f3

Please sign in to comment.