edf2csv 0.6.40 → 0.6.42
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 +22 -0
- package/package.json +1 -1
package/docs/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.6.42
|
|
7
|
+
|
|
8
|
+
### Fixed: the `OUTPUT_UNWRITABLE` list of translated failures, stale since 0.6.11
|
|
9
|
+
|
|
10
|
+
0.6.11 taught `describeFsError` to say "you are over your disk quota on this filesystem" instead
|
|
11
|
+
of leaking `EDQUOT`, and did not add it to the page enumerating what that function translates.
|
|
12
|
+
The list gave five of its six.
|
|
13
|
+
|
|
14
|
+
Second time in this line that a message fix has left prose behind it — 0.6.20 was the same shape
|
|
15
|
+
— and both were found by diffing a list against the function it describes rather than by reading
|
|
16
|
+
it. Worth doing after any change to a user-facing string.
|
|
17
|
+
|
|
18
|
+
## 0.6.41
|
|
19
|
+
|
|
20
|
+
### Fixed: the errno table left out `EPIPE`, the one a shell pipeline produces
|
|
21
|
+
|
|
22
|
+
`writeHint` turns eleven errnos into sentences and the table on the page reproduces ten. The
|
|
23
|
+
missing one is the only one an ordinary command reaches without anything being wrong with the
|
|
24
|
+
destination: a reader closing the pipe. It has its own written sentence in the source —
|
|
25
|
+
"Whatever was reading the output closed it before the conversion finished" — which nothing on
|
|
26
|
+
the site showed.
|
|
27
|
+
|
|
6
28
|
## 0.6.40
|
|
7
29
|
|
|
8
30
|
### Fixed: `CALLBACK_FAILED` had no section — the last of the four
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.42",
|
|
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",
|