edf2csv 0.6.83 → 0.6.85
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 +33 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
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.85
|
|
7
|
+
|
|
8
|
+
### printing a reference page spent the first sheet on navigation
|
|
9
|
+
|
|
10
|
+
Reference documentation gets printed and saved next to the recordings it describes, and this site
|
|
11
|
+
had no print styles at all. A printed CLI reference spent its first sheet on a sticky header, an
|
|
12
|
+
eleven-item sidebar and a contents list of links that cannot be clicked on paper, then asked the
|
|
13
|
+
printer for a near-black background across every page, which obliging printers supply.
|
|
14
|
+
|
|
15
|
+
The navigation, the contents list, the skip link, the heading permalinks and the footer are the
|
|
16
|
+
parts that only work on a screen, so they are dropped. Colours are forced to black on white.
|
|
17
|
+
Headings avoid breaking away from the text they introduce, and code blocks are allowed to break
|
|
18
|
+
across pages rather than being pushed whole onto the next sheet, since a forty-line transcript
|
|
19
|
+
would otherwise leave half a sheet blank. External links have their destination written out after
|
|
20
|
+
them, because a link on paper is otherwise a word with nowhere to go.
|
|
21
|
+
|
|
22
|
+
## 0.6.84
|
|
23
|
+
|
|
24
|
+
### every heading was addressable and none of them said so
|
|
25
|
+
|
|
26
|
+
Every h2 and h3 in the documentation has carried an id since the on-page contents list was added,
|
|
27
|
+
so every warning code, every flag and every JSON field on this site is already addressable. There
|
|
28
|
+
was no way to get the address. A reader wanting to send a colleague to the paragraph about
|
|
29
|
+
INPUT_CHANGED had to read the page source, or scroll back up and hope the heading appeared in the
|
|
30
|
+
contents list, which lists only h2s.
|
|
31
|
+
|
|
32
|
+
Each heading now carries a permalink beside it, invisible until the heading is hovered. It is in
|
|
33
|
+
the markup rather than conjured by script on hover, so it survives JavaScript being off and can be
|
|
34
|
+
copied out of the page source. It is `aria-hidden` and out of the tab order on purpose: it points
|
|
35
|
+
at the heading it sits beside, which a screen reader has just read, so announcing eleven more
|
|
36
|
+
stops per page would be noise rather than access. On touch screens, where there is no hover to
|
|
37
|
+
reveal it, it simply sits there at reduced opacity.
|
|
38
|
+
|
|
6
39
|
## 0.6.83
|
|
7
40
|
|
|
8
41
|
### the files written to be read out of context named no version
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.85",
|
|
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",
|