edf2csv 0.6.64 → 0.6.66
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 +26 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
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.66
|
|
7
|
+
|
|
8
|
+
### reaching the prose by keyboard took fifteen tab stops
|
|
9
|
+
|
|
10
|
+
A documentation page opens with the header links and then an eleven-item sidebar, so a reader
|
|
11
|
+
using the keyboard pressed Tab fifteen times before reaching the first word of the page, on every
|
|
12
|
+
page. The landing page is shorter about it but no different in kind.
|
|
13
|
+
|
|
14
|
+
There is now a skip link as the first focusable element, pointing at the `<main>` both layouts
|
|
15
|
+
already had. It is positioned off-screen rather than hidden with `display: none`, which would
|
|
16
|
+
remove it from the tab order and make it useless to exactly the people it exists for; it slides
|
|
17
|
+
into view when focused and returns when focus moves on.
|
|
18
|
+
|
|
19
|
+
## 0.6.65
|
|
20
|
+
|
|
21
|
+
### every documentation page said two of its links were the current one
|
|
22
|
+
|
|
23
|
+
Every prerendered page carried `aria-current="true"` on the header's "Docs" link, hard-coded,
|
|
24
|
+
while the sidebar correctly marked the page actually being read. A screen reader on the CLI
|
|
25
|
+
reference was therefore told two links were the current one, and neither the header link nor the
|
|
26
|
+
page it points at is the CLI reference. The attribute also drives the styling rule the sidebar
|
|
27
|
+
uses, so the header link rendered permanently highlighted, as though it were where you were.
|
|
28
|
+
|
|
29
|
+
The header is a link to the documentation, not a claim about which page is open. The sidebar is
|
|
30
|
+
where that is expressed, and it was already expressing it correctly.
|
|
31
|
+
|
|
6
32
|
## 0.6.64
|
|
7
33
|
|
|
8
34
|
### the hero said four things before saying what the tool does
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.66",
|
|
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",
|