edf2csv 0.6.85 → 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 +32 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
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
|
+
|
|
23
|
+
## 0.6.86
|
|
24
|
+
|
|
25
|
+
### the contents list omitted every diagnostic code on the page about them
|
|
26
|
+
|
|
27
|
+
The on-page contents list showed h2s only. That is right for a page whose subheadings subdivide an
|
|
28
|
+
argument, and wrong for the reference pages, where the subheading is the entry: warnings-and-errors
|
|
29
|
+
is 13,000 words holding 42 of them, one per diagnostic code, and a reader who has just seen
|
|
30
|
+
INPUT_CHANGED in their terminal was handed a list of eleven section titles, not one of which is
|
|
31
|
+
what they came to look up. They could search the page, which is what people did, or scroll 13,000
|
|
32
|
+
words. The ids were already there and already permanent.
|
|
33
|
+
|
|
34
|
+
Subheadings are now listed, indented under their section and set a step smaller, so 53 entries read
|
|
35
|
+
as a structure rather than a wall. The box scrolls at 60% of the viewport rather than pushing the
|
|
36
|
+
first paragraph off the screen on the pages that need it most.
|
|
37
|
+
|
|
6
38
|
## 0.6.85
|
|
7
39
|
|
|
8
40
|
### printing a reference page spent the first sheet on navigation
|
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",
|