Skip to content

Commit 82e3f55

Browse files
Merge branch 'hotfix/report-fixes'
2 parents 24b674e + bae4066 commit 82e3f55

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nightscout",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"dependencies": {
55
"jquery": "2.1.0",
66
"jQuery-Storage-API": "~1.7.2",

lib/report_plugins/calibrations.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'use strict';
22
var translate = require('../language')().translate;
3+
var d3 = (global && global.d3) || require('d3');
34

45
var calibrations = {
56
name: 'calibrations'

lib/report_plugins/daytoday.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
var _ = require('lodash');
44
var moment = window.moment;
55
var times = require('../times');
6+
var d3 = (global && global.d3) || require('d3');
67

78
var daytoday = {
89
name: 'daytoday'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Nightscout",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"description": "Nightscout acts as a web-based CGM (Continuous Glucose Montinor) to allow multiple caregivers to remotely view a patients glucose data in realtime.",
55
"license": "AGPL-3.0",
66
"author": "Nightscout Team",

static/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
<meta name="msapplication-config" content="/browserconfig.xml">
2626
<meta name="theme-color" content="#333333">
2727

28-
<link rel="stylesheet" type="text/css" href="/css/drawer.css?v=0.8.2" />
29-
<link rel="stylesheet" type="text/css" href="/css/main.css?v=0.8.2" />
28+
<link rel="stylesheet" type="text/css" href="/css/drawer.css?v=0.8.3" />
29+
<link rel="stylesheet" type="text/css" href="/css/main.css?v=0.8.3" />
3030
<link rel="stylesheet" type="text/css" href="/css/dropdown.css" />
31-
<link rel="stylesheet" type="text/css" href="/css/sgv.css?v=0.8.2" />
31+
<link rel="stylesheet" type="text/css" href="/css/sgv.css?v=0.8.3" />
3232
<link rel="stylesheet" type="text/css" href="/bower_components/tipsy-jmalonzo/src/stylesheets/tipsy.css" />
3333
<link rel="stylesheet" type="text/css" href="/bower_components/jquery-ui/themes/ui-darkness/jquery-ui.min.css">
3434
</head>
@@ -284,8 +284,8 @@
284284
<audio src="/audio/alarm2.mp3" preload="auto" loop="true" class="urgent alarm2 mp3" type="audio/mp3"></audio>
285285
</div>
286286

287-
<script src="/api/v1/status.js?v=0.8.2"></script>
288-
<script src="/public/js/bundle.js?v=0.8.2"></script>
287+
<script src="/api/v1/status.js?v=0.8.3"></script>
288+
<script src="/public/js/bundle.js?v=0.8.3"></script>
289289
<script src="/socket.io/socket.io.js"></script>
290290
<script src="/bower_components/jQuery-Storage-API/jquery.storageapi.min.js"></script>
291291
<script src="/bower_components/tipsy-jmalonzo/src/javascripts/jquery.tipsy.js"></script>

static/report/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<meta name="msapplication-config" content="/browserconfig.xml">
2424
<meta name="theme-color" content="#333333">
2525

26-
<link rel="stylesheet" type="text/css" href="/css/report.css" />
26+
<link rel="stylesheet" type="text/css" href="/css/report.css?v=0.8.3" />
2727
<link rel="stylesheet" type="text/css" href="/bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css">
2828
</head>
2929
<body>
@@ -116,8 +116,8 @@ <h1><img src="/images/logo1.png"><span class="translate">Nightscout reporting</s
116116
<hr>
117117
<b><span class="translate">Authentication status</span>: </b><span id="authentication_placeholder"></span>
118118

119-
<script src="/api/v1/status.js"></script>
120-
<script src="/public/js/bundle.js"></script>
119+
<script src="/api/v1/status.js?v=0.8.3"></script>
120+
<script src="/public/js/bundle.js?v=0.8.3"></script>
121121
<script src="/socket.io/socket.io.js"></script>
122122
<script src="/bower_components/jQuery-Storage-API/jquery.storageapi.min.js"></script>
123123
<script src="/bower_components/tipsy-jmalonzo/src/javascripts/jquery.tipsy.js"></script>
@@ -126,7 +126,7 @@ <h1><img src="/images/logo1.png"><span class="translate">Nightscout reporting</s
126126
<script src="/bower_components/jquery-flot/jquery.flot.time.js"></script>
127127
<script src="/bower_components/jquery-flot/jquery.flot.fillbetween.js"></script>
128128
<script src="/bower_components/jquery-ui/jquery-ui.min.js"></script>
129-
<script src="/report/js/report.js"></script>
129+
<script src="/report/js/report.js?v=0.8.3"></script>
130130
<script src="/report/js/flotcandle.js"></script>
131131
</body>
132132
</html>

0 commit comments

Comments
 (0)