edf2csv 0.6.77 → 0.6.79
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 +29 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,35 @@
|
|
|
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.79
|
|
7
|
+
|
|
8
|
+
### a dead light-theme rule outranked the one that dims the hero on phones
|
|
9
|
+
|
|
10
|
+
`:root[data-theme='light'] .hero__backdrop { opacity: 0.62 }` set the same value the base rule
|
|
11
|
+
already set, so it looked like a leftover that cost nothing. It cost something: at two class-ish
|
|
12
|
+
selectors and an attribute it outranks `@media (max-width: 900px) .hero__backdrop`, which drops
|
|
13
|
+
the beam to 0.32 because the hero collapses to one column and the copy runs the full width across
|
|
14
|
+
it.
|
|
15
|
+
|
|
16
|
+
So a phone in light mode had two behaviours. Chosen from the header, the attribute is present, the
|
|
17
|
+
dead rule wins, and the beam stays at 0.62 behind the sentence describing the tool. Coming from
|
|
18
|
+
the system preference, no attribute is set, the selector does not match, and the same phone in the
|
|
19
|
+
same colours renders it at 0.32. Measured both ways before removing it, and both ways after: 0.32
|
|
20
|
+
and 0.32.
|
|
21
|
+
|
|
22
|
+
## 0.6.78
|
|
23
|
+
|
|
24
|
+
### the third text colour failed contrast on text meant to be read
|
|
25
|
+
|
|
26
|
+
`--text-faint` was 3.10:1 against the raised surface in dark and 3.27:1 against the sunken one in
|
|
27
|
+
light, both under the 4.5:1 WCAG asks for body text. It would be defensible if it painted only
|
|
28
|
+
chrome, and the name suggests it does — but it is the colour of the footer, of every comment
|
|
29
|
+
inside every code sample, of the header row of every table in the documentation, and of the line
|
|
30
|
+
0.6.68 added pointing at the Markdown mirror. Those are all things written to be read.
|
|
31
|
+
|
|
32
|
+
It is now #867e6f in dark and #726b5d in light: 4.58:1 and 4.60:1 against their worst backgrounds,
|
|
33
|
+
and still visibly a step below `--text-dim` at 6.2:1, which is the reason the third step exists.
|
|
34
|
+
|
|
6
35
|
## 0.6.77
|
|
7
36
|
|
|
8
37
|
### the skip link could be focused and stay off-screen
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.79",
|
|
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",
|