edf2csv 0.6.86 → 0.6.88
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.88
|
|
7
|
+
|
|
8
|
+
### nothing checked that an anchor arrives where it says
|
|
9
|
+
|
|
10
|
+
The duplicate id fixed in 0.6.87 had been shipping for as long as both headings had existed, and it
|
|
11
|
+
survived every check this site has: it is valid-looking markup, it renders correctly, no link
|
|
12
|
+
404s, and the page reads properly top to bottom. The only symptom is that one link in the contents
|
|
13
|
+
list arrives at the wrong paragraph — which is exactly what proof-reading does not catch and what a
|
|
14
|
+
build can settle in a dozen lines.
|
|
15
|
+
|
|
16
|
+
Every emitted page is now checked for two things: no id used twice, and no `href="#..."` pointing
|
|
17
|
+
at an element that does not exist. Verified by breaking each one deliberately — removing the
|
|
18
|
+
numbering from the slugger, then misspelling a contents link — and confirming the build stops with
|
|
19
|
+
the page and the id named, before putting both back.
|
|
20
|
+
|
|
21
|
+
## 0.6.87
|
|
22
|
+
|
|
23
|
+
### two headings shared an id and the second link went to the first
|
|
24
|
+
|
|
25
|
+
`NO_SAMPLES` is documented twice on the warnings page, deliberately: once as the warning a single
|
|
26
|
+
empty channel raises, once as the fatal error an entirely empty recording raises, with a paragraph
|
|
27
|
+
between them explaining that the same name means two things. Both headings were given
|
|
28
|
+
`id="no_samples"`. That is invalid HTML, and it fails in the quiet way — the browser scrolls to the
|
|
29
|
+
first match, so the contents entry for the fatal error took the reader to the warning, and 0.6.84's
|
|
30
|
+
permalink beside the second heading handed out a link that goes to the first. Nothing 404s. It
|
|
31
|
+
simply arrives at the wrong paragraph.
|
|
32
|
+
|
|
33
|
+
Slugs are now unique per page: the first occurrence keeps the plain id, so every link that already
|
|
34
|
+
points at one still lands where it did, and repeats are numbered. The renderer and the contents
|
|
35
|
+
list share one slugger walking the same headings in the same order, because two independent
|
|
36
|
+
implementations of "which one is the duplicate" is how they would disagree later.
|
|
37
|
+
|
|
6
38
|
## 0.6.86
|
|
7
39
|
|
|
8
40
|
### 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.88",
|
|
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",
|