edf2csv 0.6.78 → 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 +16 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
|
|
6
22
|
## 0.6.78
|
|
7
23
|
|
|
8
24
|
### 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.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",
|