edf2csv 0.6.70 → 0.6.72
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 +28 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.72
|
|
7
|
+
|
|
8
|
+
### the hero readout offered a screen reader a snapshot of a moving animation
|
|
9
|
+
|
|
10
|
+
The hero's readout rewrites five numbers sixty times a second, straight into the DOM through
|
|
11
|
+
refs. A screen reader reaching that row reads whatever the numbers happened to be at the moment
|
|
12
|
+
it arrived: a snapshot of an animation that has already moved on, presented as though it were
|
|
13
|
+
data on the page. The traces above it already carry a description of what the visual is showing,
|
|
14
|
+
so the numbers are the same idea a second time, and the second time is the one that cannot be
|
|
15
|
+
read accurately.
|
|
16
|
+
|
|
17
|
+
Marked `aria-hidden`, which is what it always was in substance. Nothing about the sighted
|
|
18
|
+
experience changes, and the `role="img"` label on the traces stays as the accessible account of
|
|
19
|
+
the visual.
|
|
20
|
+
|
|
21
|
+
## 0.6.71
|
|
22
|
+
|
|
23
|
+
### table headers claimed no direction on pages that are mostly tables
|
|
24
|
+
|
|
25
|
+
The reference pages are largely tables: every flag with its default, every diagnostic code with
|
|
26
|
+
its cause, every exit status with what produces it. marked emits `<th>` with no `scope`, so a
|
|
27
|
+
screen reader announcing a cell in the middle of the warnings table had to guess which header
|
|
28
|
+
governed it, and the guess is what the heuristics do rather than what the markup says.
|
|
29
|
+
|
|
30
|
+
One `replaceAll` in the renderer, because every table on this site is the same shape — one header
|
|
31
|
+
row across the top — so `scope="col"` is true of all of them and would have to stop being applied
|
|
32
|
+
blindly the day one of them grows a row header. 18 header cells on the CLI reference alone.
|
|
33
|
+
|
|
6
34
|
## 0.6.70
|
|
7
35
|
|
|
8
36
|
### a screen reader listed five regions all called section
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.72",
|
|
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",
|