edf2csv 0.5.148 → 0.5.150
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 +20 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
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.150
|
|
7
|
+
|
|
8
|
+
### Fixed: the landing page's metadata sample had the wrong byte count
|
|
9
|
+
|
|
10
|
+
`"bytes": 19670016` for a recording that is 19,643,392 bytes — 26 KB out, on the page whose
|
|
11
|
+
opening comment says every block on it is real output captured from that file. The `--info`
|
|
12
|
+
block six lines up gets it right, because a test regenerates it; this sample was never checked,
|
|
13
|
+
since the one that reads the page's samples skips any containing an ellipsis and this one
|
|
14
|
+
elides three fields.
|
|
15
|
+
|
|
16
|
+
## 0.5.149
|
|
17
|
+
|
|
18
|
+
### Fixed: "No dependencies at all, runtime or otherwise"
|
|
19
|
+
|
|
20
|
+
The published package has no `dependencies` and no `peerDependencies`, so nothing is installed
|
|
21
|
+
alongside it — which is the claim worth making and the one the rest of the documentation makes.
|
|
22
|
+
"Or otherwise" went further than that: building this repository needs TypeScript and
|
|
23
|
+
`@types/node`, both sitting in `devDependencies` a screen away in the same tree. The README now
|
|
24
|
+
says what is true and just as strong.
|
|
25
|
+
|
|
6
26
|
## 0.5.148
|
|
7
27
|
|
|
8
28
|
### Fixed: records_converted described as the records that were read
|
package/README.md
CHANGED
|
@@ -132,7 +132,7 @@ look at part of a recording, or a pipeline that speaks CSV.
|
|
|
132
132
|
|
|
133
133
|
## Notes
|
|
134
134
|
|
|
135
|
-
Requires Node 20 or newer. No dependencies
|
|
135
|
+
Requires Node 20 or newer. No runtime dependencies, and none installed when you install it. MIT licensed.
|
|
136
136
|
|
|
137
137
|
Reads EDF, EDF+ and BDF/BDF+ (BioSemi 24-bit). No filtering, no artifact removal, no
|
|
138
138
|
AI, no network calls.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.150",
|
|
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",
|