edf2csv 0.6.24 → 0.6.26
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 +25 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
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.26
|
|
7
|
+
|
|
8
|
+
### Fixed: the warnings table still said a mixed-rate file means "several output files"
|
|
9
|
+
|
|
10
|
+
`--layout long` writes one, and the warning's own hint says so — it has two forms, and the one
|
|
11
|
+
it prints under `long` reads "They share one table, each row carrying its own time". The summary
|
|
12
|
+
line at the top of the page kept the pre-0.5.0 answer.
|
|
13
|
+
|
|
14
|
+
There is a test for exactly this class, added when 0.5.0 landed the flag: it requires every page
|
|
15
|
+
claiming a mixed-rate recording becomes several files to mention the layout that does not. It
|
|
16
|
+
missed this row because its phrase list looks for "several signals files" and the row says
|
|
17
|
+
"several output files" — one word apart from the thing it was written to catch.
|
|
18
|
+
|
|
19
|
+
## 0.6.25
|
|
20
|
+
|
|
21
|
+
### Fixed: `INPUT_CHANGED` was one row of a summary table and nothing else
|
|
22
|
+
|
|
23
|
+
Every other diagnostic on the warnings page gets a section: what causes it, what edf2csv does,
|
|
24
|
+
what to do. `INPUT_CHANGED` had a single line in the table at the top and no section anywhere —
|
|
25
|
+
the only code of the thirty-three in that table without one. The docs test that keeps codes and
|
|
26
|
+
pages in step asks whether a code is *named* on the page, which one table row satisfies.
|
|
27
|
+
|
|
28
|
+
It is not a minor one to leave unexplained: it is the warning that says the output describes the
|
|
29
|
+
file as it was rather than as it is, and the one that turns `--checksum` into a `null`.
|
|
30
|
+
|
|
6
31
|
## 0.6.24
|
|
7
32
|
|
|
8
33
|
### Fixed: the timekeeping TAL described as one "which carries an onset and no text"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.26",
|
|
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",
|