edf2csv 0.6.68 → 0.6.70
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.70
|
|
7
|
+
|
|
8
|
+
### a screen reader listed five regions all called section
|
|
9
|
+
|
|
10
|
+
The landing page is five `<section>` elements, and a screen reader's list of regions showed five
|
|
11
|
+
entries all called "section". The headings are right there — each section opens with the h2 that
|
|
12
|
+
names it — but nothing connected the two, so the one navigation aid that would let a reader jump
|
|
13
|
+
straight to the sampling-rate argument or the correctness figures listed five identical rows.
|
|
14
|
+
|
|
15
|
+
Each section now points `aria-labelledby` at its own heading. The ids follow the anchors the
|
|
16
|
+
sections already had, so `#rates` and `rates-title` sit next to each other rather than inventing
|
|
17
|
+
a second naming scheme.
|
|
18
|
+
|
|
19
|
+
## 0.6.69
|
|
20
|
+
|
|
21
|
+
### a pinned or bookmarked site had no name and no icon
|
|
22
|
+
|
|
23
|
+
Bookmarked to an Android home screen or pinned in a browser that reads one, the site had no name
|
|
24
|
+
and no icon of its own to offer: it took whatever the browser could scrape, which is the page
|
|
25
|
+
title of whichever page was open and a screenshot-derived glyph.
|
|
26
|
+
|
|
27
|
+
The manifest states the name, the description the About field uses, the two icons the site
|
|
28
|
+
already ships, and the background it already paints. `"display": "browser"` on purpose — this is
|
|
29
|
+
documentation, not an app, and claiming `standalone` would strip the address bar from a site
|
|
30
|
+
whose whole job is linking to other pages.
|
|
31
|
+
|
|
6
32
|
## 0.6.68
|
|
7
33
|
|
|
8
34
|
### the Markdown mirror of every page was served and linked from nowhere
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.70",
|
|
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",
|