edf2csv 0.6.50 → 0.6.52
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 +27 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.52
|
|
7
|
+
|
|
8
|
+
### Changed: the long-layout guard learns the wordings that got past it
|
|
9
|
+
|
|
10
|
+
Three findings in this line — 0.6.26, 0.6.51 and one beside 0.6.45 — were passages telling a
|
|
11
|
+
reader a mixed-rate recording becomes several files without mentioning the layout that does not.
|
|
12
|
+
There is a test for exactly that, and all three walked past it, because it matches four fixed
|
|
13
|
+
phrases and each passage used a fifth: "several output files" against its "several signals
|
|
14
|
+
files", "produce exactly one" against its "more than one table".
|
|
15
|
+
|
|
16
|
+
The four wordings it missed are added, along with `recipes.md`, which was not in the page list at
|
|
17
|
+
all despite carrying two of the passages. A phrase list cannot be complete; it can at least
|
|
18
|
+
accumulate the misses instead of forgetting them.
|
|
19
|
+
|
|
20
|
+
## 0.6.51
|
|
21
|
+
|
|
22
|
+
### Fixed: the `--stdout` recipe offered one of the three fixes the refusal names
|
|
23
|
+
|
|
24
|
+
"`--channels` narrowed to channels that share a rate is the usual fix" — and `--layout long`
|
|
25
|
+
is the one that needs no narrowing at all, since it streams every rate in a single table. The
|
|
26
|
+
tool's own error message has listed all three since 0.5.0.
|
|
27
|
+
|
|
28
|
+
Third finding caught by the same guard gap. The test that requires every mixed-rate passage to
|
|
29
|
+
mention the long layout matches on four fixed phrases, and this passage says "needs the
|
|
30
|
+
recording to produce exactly one" — none of them. 0.6.26 was the second. The guard is checking
|
|
31
|
+
wording rather than meaning, which is why widening it is worth doing before the next sweep.
|
|
32
|
+
|
|
6
33
|
## 0.6.50
|
|
7
34
|
|
|
8
35
|
### Fixed: the third page defining an empty `duration_s` as "no duration"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.52",
|
|
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",
|