Skip to content

Commit

Permalink
fixed denan function to handle the number 1 and strings starting with 1
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker committed Apr 23, 2024
1 parent d15d1dc commit 9ce5e7c
Show file tree
Hide file tree
Showing 9 changed files with 11,952 additions and 12,323 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.10.4 2024-04-23 14:53:48 +0200 Tobias Oetiker <tobi@oetiker.ch>

- denan should properly handle 1 and strings starting with 1 RT#57346

0.10.3 2023-03-07 11:15:27 +0100 Tobias Oetiker <tobi@oetiker.ch>

- if default_user is set and openid_url, only accept users
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extopus - the monitoring aggregator
a web app to integrate results from a wide array of monitoring applications

Copyright (c) 2023-2023 Tobias Oetiker and the other people listed in the
Copyright (c) 2024-2024 Tobias Oetiker and the other people listed in the
AUTHORS file.

All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.3
0.10.4
1 change: 1 addition & 0 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ requires 'JSON::XS';
requires 'YAML';
requires 'Params::Validate';
requires 'SIAM';
requires 'DBI';
requires 'DBD::SQLite';
requires 'Excel::Writer::XLSX';
requires 'Spreadsheet::WriteExcel';
Expand Down
2 changes: 1 addition & 1 deletion frontend/Manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"$schema": "https://qooxdoo.org/schema/Manifest-2-0-0.json",
"requires": {
"@qooxdoo/framework": "^7.1.0",
"@qooxdoo/framework": "^7.7.0",
"oetiker/CanvasCell": "^1.0.4",
"oetiker/QxD3": "^0.4.1",
"oposs/qx-iconfont-tabler": "^0.1.0"
Expand Down
24,256 changes: 11,940 additions & 12,316 deletions frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"dependencies": {
"@qooxdoo/framework": "^7.1.0"
"@qooxdoo/framework": "^7.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion lib/EP/Visualizer/TorrusData.pm
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ sub denan {
my $nan = 0.0+"NaN";
no warnings; # don't get your undies in a twist when we look at a text bit
return [
map { defined $nan <=> $_ ? $_ : undef } @$in
map { $_ == 1 || defined $nan <=> $_ ? $_ : undef } @$in
]
}

Expand Down
4 changes: 2 additions & 2 deletions share/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ep 0.10.3\n"
"Project-Id-Version: ep 0.10.4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-07 11:24+0100\n"
"POT-Creation-Date: 2024-04-23 14:55+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down

0 comments on commit 9ce5e7c

Please sign in to comment.