edf2csv 0.6.72 → 0.6.74
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.74
|
|
7
|
+
|
|
8
|
+
### the Markdown mirrors competed with the pages they mirror
|
|
9
|
+
|
|
10
|
+
Every documentation page is published twice: as HTML at `/docs/<slug>`, and as the same prose in
|
|
11
|
+
Markdown at `/docs/<slug>.md`. The mirrors exist so an agent or a reader can fetch the text
|
|
12
|
+
without stripping tags, and 0.6.68 finally linked them — which also made them properly
|
|
13
|
+
crawlable. Two URLs carrying identical prose, and a plain-text file has no way to declare a
|
|
14
|
+
canonical link, so the pair competes as duplicates of each other and a search engine picks a
|
|
15
|
+
winner on its own terms.
|
|
16
|
+
|
|
17
|
+
`X-Robots-Tag: noindex` on the mirrors settles it. They stay fetchable by anyone who asks for
|
|
18
|
+
them, which is the entire reason they are published, and each page keeps exactly one indexable
|
|
19
|
+
copy — the HTML one that carries the canonical link, the structured data and the navigation.
|
|
20
|
+
|
|
21
|
+
## 0.6.73
|
|
22
|
+
|
|
23
|
+
### the theme button named the state it was in, not what pressing it does
|
|
24
|
+
|
|
25
|
+
The theme button announced itself as "Switch theme, currently auto" and had a tooltip reading
|
|
26
|
+
"Theme: auto". Both describe the state the reader is already in, on a control that cycles through
|
|
27
|
+
three of them, so the one thing neither says is what pressing it will do — which for a three-way
|
|
28
|
+
cycle is not guessable. It now reads "Switch to the light theme", then "Switch to the dark
|
|
29
|
+
theme", then "Match the system theme", naming the outcome each press produces.
|
|
30
|
+
|
|
31
|
+
The icon keeps showing the current state, which is the division of labour that was intended: the
|
|
32
|
+
name of a button is its action, and its appearance is its state.
|
|
33
|
+
|
|
6
34
|
## 0.6.72
|
|
7
35
|
|
|
8
36
|
### the hero readout offered a screen reader a snapshot of a moving animation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.74",
|
|
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",
|