edf2csv 0.6.78 → 0.6.80
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 +30 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.80
|
|
7
|
+
|
|
8
|
+
### a table-header rule set its colour twice and used the second
|
|
9
|
+
|
|
10
|
+
`.prose th` set `color: var(--text)` and then, four lines later in the same rule, `color:
|
|
11
|
+
var(--text-faint)`. The first declaration never applied to anything — the last one wins — so the
|
|
12
|
+
table headers throughout the documentation had been the faint colour since the rule was written,
|
|
13
|
+
while the file claimed twice over that they were two different colours. Whichever was intended,
|
|
14
|
+
the stylesheet was not the place to find out.
|
|
15
|
+
|
|
16
|
+
The faint one is what shipped and what the design wants: uppercased, small and quiet, so a header
|
|
17
|
+
row reads as a label rather than as the first row of data. That is now the only declaration, with
|
|
18
|
+
a line saying why.
|
|
19
|
+
|
|
20
|
+
## 0.6.79
|
|
21
|
+
|
|
22
|
+
### a dead light-theme rule outranked the one that dims the hero on phones
|
|
23
|
+
|
|
24
|
+
`:root[data-theme='light'] .hero__backdrop { opacity: 0.62 }` set the same value the base rule
|
|
25
|
+
already set, so it looked like a leftover that cost nothing. It cost something: at two class-ish
|
|
26
|
+
selectors and an attribute it outranks `@media (max-width: 900px) .hero__backdrop`, which drops
|
|
27
|
+
the beam to 0.32 because the hero collapses to one column and the copy runs the full width across
|
|
28
|
+
it.
|
|
29
|
+
|
|
30
|
+
So a phone in light mode had two behaviours. Chosen from the header, the attribute is present, the
|
|
31
|
+
dead rule wins, and the beam stays at 0.62 behind the sentence describing the tool. Coming from
|
|
32
|
+
the system preference, no attribute is set, the selector does not match, and the same phone in the
|
|
33
|
+
same colours renders it at 0.32. Measured both ways before removing it, and both ways after: 0.32
|
|
34
|
+
and 0.32.
|
|
35
|
+
|
|
6
36
|
## 0.6.78
|
|
7
37
|
|
|
8
38
|
### the third text colour failed contrast on text meant to be read
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.80",
|
|
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",
|