edf2csv 0.5.52 → 0.5.53
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 +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.53
|
|
7
|
+
|
|
8
|
+
### Fixed: the correctness page's layout sweep disagreed with itself about how many recordings it ran
|
|
9
|
+
|
|
10
|
+
Claim 7 says the two layouts are checked over 49 recordings. Six lines further down, the
|
|
11
|
+
pasted output of the command that checks it read `266 conversions compared over 48
|
|
12
|
+
recordings`. Both numbers were on screen at once, on the page whose whole argument is that
|
|
13
|
+
its figures can be reproduced by running the command printed above them.
|
|
14
|
+
|
|
15
|
+
The output block was pasted when there were 48 fixtures and never repasted. A test already
|
|
16
|
+
held the claim to the fixture count; it did not look at the block below it, so the two drifted
|
|
17
|
+
apart the moment a fixture was added.
|
|
18
|
+
|
|
19
|
+
Repasted, and the test now reads both. The recording count in that output is `names.length` —
|
|
20
|
+
the fixture list itself — so it is the same number in both places by construction. The
|
|
21
|
+
conversion and channel-sequence counts beside it genuinely do move with which windows each
|
|
22
|
+
recording can honour, and are left alone; so is the batch sweep's recording count, which is
|
|
23
|
+
how many files a seed scattered across its random trees and was never the fixture count.
|
|
24
|
+
|
|
6
25
|
## 0.5.52
|
|
7
26
|
|
|
8
27
|
### Fixed: a bound on one channel is not a bound on a file's channels
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.53",
|
|
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",
|