edf2csv 0.6.41 → 0.6.43
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.43
|
|
7
|
+
|
|
8
|
+
### Fixed: `exceeds_spreadsheet_limit` was emitted by `--info --json` and documented nowhere
|
|
9
|
+
|
|
10
|
+
Thirty-one snake_case keys are written into the JSON this tool produces — the conversion
|
|
11
|
+
summary, the `--info` document and `metadata.json` — and thirty of them appear somewhere on the
|
|
12
|
+
site. This was the one that did not, on any page, in any form.
|
|
13
|
+
|
|
14
|
+
It is the machine-readable half of `LARGE_OUTPUT`: a boolean a script can branch on instead of
|
|
15
|
+
matching a warning message, which is exactly what the surrounding paragraphs tell scripts to do.
|
|
16
|
+
Its two siblings in the same object, `rows` and `bytes`, are documented a line away, including
|
|
17
|
+
0.6.0's rule about them being `null` when no signal table is written.
|
|
18
|
+
|
|
19
|
+
## 0.6.42
|
|
20
|
+
|
|
21
|
+
### Fixed: the `OUTPUT_UNWRITABLE` list of translated failures, stale since 0.6.11
|
|
22
|
+
|
|
23
|
+
0.6.11 taught `describeFsError` to say "you are over your disk quota on this filesystem" instead
|
|
24
|
+
of leaking `EDQUOT`, and did not add it to the page enumerating what that function translates.
|
|
25
|
+
The list gave five of its six.
|
|
26
|
+
|
|
27
|
+
Second time in this line that a message fix has left prose behind it — 0.6.20 was the same shape
|
|
28
|
+
— and both were found by diffing a list against the function it describes rather than by reading
|
|
29
|
+
it. Worth doing after any change to a user-facing string.
|
|
30
|
+
|
|
6
31
|
## 0.6.41
|
|
7
32
|
|
|
8
33
|
### Fixed: the errno table left out `EPIPE`, the one a shell pipeline produces
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.43",
|
|
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",
|