edf2csv 0.5.147 → 0.5.149
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.149
|
|
7
|
+
|
|
8
|
+
### Fixed: "No dependencies at all, runtime or otherwise"
|
|
9
|
+
|
|
10
|
+
The published package has no `dependencies` and no `peerDependencies`, so nothing is installed
|
|
11
|
+
alongside it — which is the claim worth making and the one the rest of the documentation makes.
|
|
12
|
+
"Or otherwise" went further than that: building this repository needs TypeScript and
|
|
13
|
+
`@types/node`, both sitting in `devDependencies` a screen away in the same tree. The README now
|
|
14
|
+
says what is true and just as strong.
|
|
15
|
+
|
|
16
|
+
## 0.5.148
|
|
17
|
+
|
|
18
|
+
### Fixed: records_converted described as the records that were read
|
|
19
|
+
|
|
20
|
+
output-files defines it as "the half-open range of data record indexes that were read". Under
|
|
21
|
+
`--annotations-only` that is wrong twice over: no signal records are read, and the annotation
|
|
22
|
+
channel is read from end to end regardless of the window — so a run reporting
|
|
23
|
+
`records_converted: [1, 2]` read every record's annotation slot and none of its samples. What
|
|
24
|
+
the field actually describes, in every mode, is the window.
|
|
25
|
+
|
|
6
26
|
## 0.5.147
|
|
7
27
|
|
|
8
28
|
### Fixed: --force does not overwrite the output directory
|
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.149",
|
|
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",
|