Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 14.1.0 #6650

Merged
merged 50 commits into from
Jan 6, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
cb14de0
Bump version to 14.0.8
sulkaharo Nov 15, 2020
2a96c44
Merge branch 'master' into dev
sulkaharo Nov 15, 2020
c9156bd
Revised Norwegian (nb) translations (#6525)
bjornoleh Nov 17, 2020
4ace125
Move localisation to Crowdin (#6518)
sulkaharo Nov 17, 2020
74cf673
* Reformat the source language file
sulkaharo Nov 18, 2020
15f47f6
One more tiny formatting fix
sulkaharo Nov 18, 2020
76ce300
Inzulin -> Insulin in English
sulkaharo Nov 18, 2020
cb7c74e
Fix typo in Portugues Brazilian language code
sulkaharo Nov 23, 2020
fc849fb
New Crowdin updates (#6535)
sulkaharo Nov 23, 2020
8367d00
Update CONTRIBUTING.md (#6540)
bjornoleh Nov 23, 2020
3680975
Typo correction (#6558)
inventor96 Nov 23, 2020
4c12fe6
Increased the width of the inlinepiechart to fit the Dutch translated…
yodax Nov 23, 2020
7a3b968
Refactor `mongo-storage.js` (#6589)
pazaan Nov 30, 2020
d0cf72a
Fixes the color changes based on BG target preferences in the clock v…
sulkaharo Dec 8, 2020
512139e
Added some boot logging & allow booting using Node 14 LTS
sulkaharo Dec 9, 2020
bc0f817
* Fix a bug with reloading while the server is starting
sulkaharo Dec 9, 2020
f02b8d9
Fix timing issue with a test using async, causing tests to randomly fail
sulkaharo Dec 10, 2020
7fe8e32
Refactor core auth (#6596)
sulkaharo Dec 10, 2020
71a5354
New Crowdin updates (#6567)
sulkaharo Dec 10, 2020
f2fd923
Bump version to 14.1.0 given changes to auth and localization
sulkaharo Dec 14, 2020
558ddb4
New Crowdin updates (#6640)
sulkaharo Dec 14, 2020
9a6ee8a
Fix applying localizations to plugin names in client preferences
sulkaharo Dec 14, 2020
c12ad76
* Refactor how the levels dependency is loaded, to fix some localizat…
sulkaharo Dec 14, 2020
a073841
Oops, push the unit test changes as well
sulkaharo Dec 14, 2020
7c3ab00
Fix pushover init
sulkaharo Dec 14, 2020
d81e342
Fix pushover test
sulkaharo Dec 14, 2020
9e3d9a6
New Crowdin updates (#6652)
sulkaharo Dec 14, 2020
0a2fee8
Various fixes to localization - #6516 #6523 #6524
sulkaharo Dec 15, 2020
b09e463
Test new dev version of minimed-connect-to-nightscout
bewest Dec 16, 2020
8c59de8
* More small localization fixes
sulkaharo Dec 17, 2020
2eb9cf8
Merge branch 'dev' into wip/bewest/mmconnect
bewest Dec 18, 2020
4bdd271
Fix upbat.js levels reference
sulkaharo Dec 21, 2020
edfcf6e
Fix authorization renewal
sulkaharo Dec 21, 2020
0a15938
New Crowdin updates (#6653)
sulkaharo Dec 21, 2020
2c30b64
Add a missing localization, fix unit tests
sulkaharo Dec 21, 2020
92cc12e
Fix a localization key
sulkaharo Dec 22, 2020
4b98d35
Merge branch 'dev' into wip/bewest/mmconnect
bewest Dec 22, 2020
186e978
Rename Weekly Success report to Weekly Distribution
sulkaharo Dec 24, 2020
f36048d
Fix a bug with auth calls that send a false API secret
sulkaharo Dec 27, 2020
fc9fd34
upgrade minimed-connect-to-nightscout 1.5.0
bewest Dec 30, 2020
e3784ea
Merge branch 'dev' into wip/bewest/mmconnect
bewest Dec 30, 2020
76f198a
Merge branch 'wip/bewest/mmconnect' of github.com:nightscout/cgm-remo…
bewest Dec 30, 2020
411463e
Replace Travis build with a GitHub Action (#6690)
pazaan Jan 1, 2021
6b28a14
APIv3: Cache invalidation + refactoring (#6688)
PetrOndrusek Jan 1, 2021
923cdad
New Crowdin updates (#6675)
sulkaharo Jan 1, 2021
405eb0d
german translations template for googlehome integration (#6674)
tanja3981 Jan 1, 2021
773f89e
Added support for multiple uploaders in virtual assistant delta calc…
inventor96 Jan 2, 2021
3c61266
Removed duplicate translation key (#6699)
inventor96 Jan 2, 2021
82a9e18
New Crowdin updates (#6700)
sulkaharo Jan 4, 2021
46e4d17
* Additional unit test for the authorization API
sulkaharo Jan 4, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/authorization/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function init (env, ctx) {

console.error('Resolving secret/token to permissions failed');
addFailedRequest(data.ip);
callback('All validation failed', {});
if (callback) { callback('All validation failed', {}); }
return {};

};
Expand Down
4 changes: 2 additions & 2 deletions lib/report_plugins/success.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var times = require('../times');

var success = {
name: 'success'
, label: 'Weekly success'
, label: 'Weekly Distribution'
, pluginType: 'report'
};

Expand All @@ -17,7 +17,7 @@ module.exports = init;
success.html = function html (client) {
var translate = client.translate;
var ret =
'<h2>' + translate('Weekly Success') + '</h2>' +
'<h2>' + translate('Weekly Distribution') + '</h2>' +
'<div id="success-grid"></div>';
return ret;
};
Expand Down
2 changes: 1 addition & 1 deletion translations/en/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
,"Hourly stats":"Hourly stats"
,"netIOB stats":"netIOB stats"
,"temp basals must be rendered to display this report":"temp basals must be rendered to display this report"
,"Weekly success":"Weekly success"
,"No data available":"No data available"
,"Low":"Low"
,"In Range":"In Range"
Expand Down Expand Up @@ -685,4 +684,5 @@
,"Auth role":"Auth role"
,"view without token":"view without token"
,"Remove stored token":"Remove stored token"
,"Weekly Distribution":"Weekly Distribution"
}