edf2csv 0.6.86 → 0.6.87
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 +17 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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.87
|
|
7
|
+
|
|
8
|
+
### two headings shared an id and the second link went to the first
|
|
9
|
+
|
|
10
|
+
`NO_SAMPLES` is documented twice on the warnings page, deliberately: once as the warning a single
|
|
11
|
+
empty channel raises, once as the fatal error an entirely empty recording raises, with a paragraph
|
|
12
|
+
between them explaining that the same name means two things. Both headings were given
|
|
13
|
+
`id="no_samples"`. That is invalid HTML, and it fails in the quiet way — the browser scrolls to the
|
|
14
|
+
first match, so the contents entry for the fatal error took the reader to the warning, and 0.6.84's
|
|
15
|
+
permalink beside the second heading handed out a link that goes to the first. Nothing 404s. It
|
|
16
|
+
simply arrives at the wrong paragraph.
|
|
17
|
+
|
|
18
|
+
Slugs are now unique per page: the first occurrence keeps the plain id, so every link that already
|
|
19
|
+
points at one still lands where it did, and repeats are numbered. The renderer and the contents
|
|
20
|
+
list share one slugger walking the same headings in the same order, because two independent
|
|
21
|
+
implementations of "which one is the duplicate" is how they would disagree later.
|
|
22
|
+
|
|
6
23
|
## 0.6.86
|
|
7
24
|
|
|
8
25
|
### the contents list omitted every diagnostic code on the page about them
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.87",
|
|
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",
|