Skip to content

Commit

Permalink
Merge pull request #5984 from nightscout/dev
Browse files Browse the repository at this point in the history
Release 14.0.1
  • Loading branch information
sulkaharo authored Sep 13, 2020
2 parents e54a6b8 + f04e7d7 commit 4f85e19
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 14 deletions.
4 changes: 2 additions & 2 deletions lib/report_plugins/treatments.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ treatments.report = function report_treatments(datastorage, sorteddaystoshow, op
var max = tr.correctionRange[1];

if (client.settings.units === 'mmol') {
max = client.utils.roundBGToDisplayFormat(client.utils.scaleMgdl(max));
min = client.utils.roundBGToDisplayFormat(client.utils.scaleMgdl(min));
max = client.utils.roundBGForDisplay(client.utils.scaleMgdl(max));
min = client.utils.roundBGForDisplay(client.utils.scaleMgdl(min));
}

if (tr.correctionRange[0] === tr.correctionRange[1]) {
Expand Down
47 changes: 38 additions & 9 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nightscout",
"version": "14.0.0",
"version": "14.0.1",
"description": "Nightscout acts as a web-based CGM (Continuous Glucose Montinor) to allow multiple caregivers to remotely view a patients glucose data in realtime.",
"license": "AGPL-3.0",
"author": "Nightscout Team",
Expand Down
2 changes: 1 addition & 1 deletion swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"info": {
"title": "Nightscout API",
"description": "Own your DData with the Nightscout API",
"version": "14.0.0",
"version": "14.0.1",
"license": {
"name": "AGPL 3",
"url": "https://www.gnu.org/licenses/agpl.txt"
Expand Down
2 changes: 1 addition & 1 deletion swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ servers:
info:
title: Nightscout API
description: Own your DData with the Nightscout API
version: 14.0.0
version: 14.0.1
license:
name: AGPL 3
url: 'https://www.gnu.org/licenses/agpl.txt'
Expand Down

0 comments on commit 4f85e19

Please sign in to comment.