edf2csv 0.5.61 → 0.5.62
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/CHANGELOG.md +22 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.5.62
|
|
7
|
+
|
|
8
|
+
### Fixed: the warnings reference described two codes as they were two versions ago
|
|
9
|
+
|
|
10
|
+
`ANNOTATION_DECODE_FAILED` opens with "This code covers three conditions, which are counted
|
|
11
|
+
separately because they lose different things", and then lists them. 0.5.55 added a fourth —
|
|
12
|
+
a duration the file stated that could not be read — and 0.5.58 a fifth, a duration below zero.
|
|
13
|
+
Both were counted separately, exactly as that sentence promises, and neither appeared. The
|
|
14
|
+
number is one a reader checks against the list immediately below it.
|
|
15
|
+
|
|
16
|
+
`NO_SAMPLES` had the other half of the same drift. Its section describes the per-channel case
|
|
17
|
+
and says "as a warning it means one channel is empty", which stopped being the whole story
|
|
18
|
+
when the code also began reporting the signal file that was *not* written — and 0.5.54 gave
|
|
19
|
+
that case two different wordings depending on why, neither of them on the page.
|
|
20
|
+
|
|
21
|
+
Both sections now list what they cover, with the message each condition actually prints. And
|
|
22
|
+
a test reads the sentence against the list: any section saying how many conditions it covers
|
|
23
|
+
has its bold lead-ins counted, so the next one added has to be written down or the suite goes
|
|
24
|
+
red. It is the same shape of check as the one holding the test counts and the harness sizes —
|
|
25
|
+
the prose still has to be written by a person, but the number in it no longer drifts on its
|
|
26
|
+
own.
|
|
27
|
+
|
|
6
28
|
## 0.5.61
|
|
7
29
|
|
|
8
30
|
### Fixed: `--channels` rejected the column name it had just printed, and called it unknown
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.62",
|
|
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",
|