edf2csv 0.2.28 → 0.2.29
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 +24 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.2.29
|
|
7
|
+
|
|
8
|
+
### Docs: the scripting advice caught up with `--strict`, `--info --json` and `--stdout`
|
|
9
|
+
|
|
10
|
+
The CLI reference and recipes still told people to shell out to `jq` for things the last four
|
|
11
|
+
versions made single flags. Both now show the direct form first and keep `--json` for what it is
|
|
12
|
+
still the right tool for — reacting to a *particular* warning rather than to any of them:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
edf2csv recording.edf --out ./converted --strict # was: --json | jq '.warnings | length'
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Two new recipes, both run against the real CLI before being written down:
|
|
19
|
+
|
|
20
|
+
- **Survey a directory without converting anything**, using `--info --json` piped through `jq -s` to
|
|
21
|
+
get one row per recording — format, duration, channel count, distinct rates, estimated rows and
|
|
22
|
+
warning codes. Nothing past the header is read for plain EDF and continuous EDF+, so it stays fast
|
|
23
|
+
over multi-gigabyte files.
|
|
24
|
+
- **Pipe a conversion into another tool** with `--stdout`, including why a mixed-rate recording is
|
|
25
|
+
refused and how `--channels` resolves it.
|
|
26
|
+
|
|
27
|
+
`ConvertOptions` in the API reference gained the `toStdout`, `startText` and `endText` fields it has
|
|
28
|
+
actually accepted since 0.2.18.
|
|
29
|
+
|
|
6
30
|
## 0.2.28
|
|
7
31
|
|
|
8
32
|
### Fixed: `--stdout --json` wrote two documents onto one stream
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.29",
|
|
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",
|