edf2csv 0.6.19 → 0.6.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/CHANGELOG.md +23 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
3
3
|
Notable changes to edf2csv. Versions follow [semantic versioning](https://semver.org); while the
|
|
4
4
|
major version is 0, a minor bump may contain breaking changes.
|
|
5
5
|
|
|
6
|
+
## 0.6.21
|
|
7
|
+
|
|
8
|
+
### Fixed: getting-started said the output directory is the filename "with `_csv` appended"
|
|
9
|
+
|
|
10
|
+
That is `recording.edf_csv`. `defaultOutputDir` strips the extension first, so it is
|
|
11
|
+
`recording_csv` — which the same page prints in its own transcript nine lines above, and which
|
|
12
|
+
the other three pages describing this all state correctly as the extension being removed or
|
|
13
|
+
replaced. One page, contradicting itself and the other three, on the first fact anyone learns
|
|
14
|
+
about where their output goes.
|
|
15
|
+
|
|
16
|
+
## 0.6.20
|
|
17
|
+
|
|
18
|
+
### Fixed: two pages quoted the short-read error as 0.6.4 stopped printing it
|
|
19
|
+
|
|
20
|
+
0.6.4 put the count through `counted` so it could not say "1 were available", which added the
|
|
21
|
+
noun: the message now reads `but only 131072 bytes were available`. Two pages quote that error
|
|
22
|
+
verbatim and neither was updated, so this repository spent four versions showing output its own
|
|
23
|
+
tool does not produce — the exact defect most of the 0.5 line was spent removing, introduced by
|
|
24
|
+
a fix for a different one.
|
|
25
|
+
|
|
26
|
+
Nothing caught it. The suite pins the quoted *hints* and the warnings of one example command;
|
|
27
|
+
these two are error transcripts in prose, which nothing reads.
|
|
28
|
+
|
|
6
29
|
## 0.6.19
|
|
7
30
|
|
|
8
31
|
### Fixed: "only `--info` output goes to stdout", in the paragraph about piping
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.21",
|
|
4
4
|
"description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"edf",
|