edf2csv 0.6.65 → 0.6.67
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 +27 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.67
|
|
7
|
+
|
|
8
|
+
### the 404 was the only page with no way back to the source
|
|
9
|
+
|
|
10
|
+
The 404 was the one page with no footer, which made it the one page with no link to the
|
|
11
|
+
repository or the package — a page reached by a broken link or a typo, and therefore the page
|
|
12
|
+
most likely to be somebody's first, offering the fewest ways out. It also had no skip link, and
|
|
13
|
+
its header carried one nav item where every other page carries four.
|
|
14
|
+
|
|
15
|
+
The footer is now a single string both the documentation pages and the 404 render, rather than a
|
|
16
|
+
literal copied into one of them, which is what let them diverge in the first place. The two
|
|
17
|
+
inline `style` attributes it was laying itself out with became rules in the stylesheet next to
|
|
18
|
+
the ones they were duplicating.
|
|
19
|
+
|
|
20
|
+
## 0.6.66
|
|
21
|
+
|
|
22
|
+
### reaching the prose by keyboard took fifteen tab stops
|
|
23
|
+
|
|
24
|
+
A documentation page opens with the header links and then an eleven-item sidebar, so a reader
|
|
25
|
+
using the keyboard pressed Tab fifteen times before reaching the first word of the page, on every
|
|
26
|
+
page. The landing page is shorter about it but no different in kind.
|
|
27
|
+
|
|
28
|
+
There is now a skip link as the first focusable element, pointing at the `<main>` both layouts
|
|
29
|
+
already had. It is positioned off-screen rather than hidden with `display: none`, which would
|
|
30
|
+
remove it from the tab order and make it useless to exactly the people it exists for; it slides
|
|
31
|
+
into view when focused and returns when focus moves on.
|
|
32
|
+
|
|
6
33
|
## 0.6.65
|
|
7
34
|
|
|
8
35
|
### every documentation page said two of its links were the current one
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.67",
|
|
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",
|