edf2csv 0.6.62 → 0.6.63
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.63
|
|
7
|
+
|
|
8
|
+
### Fixed: phones could scroll the whole site sideways, and every heading faded in
|
|
9
|
+
|
|
10
|
+
Three grids collapse to a single column on narrow screens, and all three collapsed to `1fr`.
|
|
11
|
+
A plain `1fr` track has `min-width: auto`, so the one child with an unwrappable width — the
|
|
12
|
+
scope readout's 420px minimum on the landing page, a CSV sample's longest line in the docs —
|
|
13
|
+
set the track wider than the phone, and every element on the page shared one clipped right
|
|
14
|
+
edge with 26px of sideways scroll to find it. The two-column desktop layouts already used
|
|
15
|
+
`minmax(0, 1fr)` for exactly this reason; the single-column collapses now match them. The
|
|
16
|
+
code blocks scroll inside their own boxes, which was always the intent.
|
|
17
|
+
|
|
18
|
+
The scroll-reveal animation is gone. Every section's heading, lede and body used to fade
|
|
19
|
+
upward as the reader reached it, which was defended in the README as arriving "in reading
|
|
20
|
+
order" — but a page where every heading rises into place is indistinguishable from every
|
|
21
|
+
other page where every heading rises into place, and the pattern costs something real here:
|
|
22
|
+
the prerendered landing page shipped its text wrapped in inline `opacity: 0` until the bundle
|
|
23
|
+
arrived to animate it. Content is now simply present. Motion stays where it argues something
|
|
24
|
+
— the hero trace turning into rows, the 765 interpolated dots appearing out of nowhere — and
|
|
25
|
+
in interaction feedback. The hero's own entrance became three lines of CSS, which paint with
|
|
26
|
+
the HTML instead of after it.
|
|
27
|
+
|
|
28
|
+
Two smaller things. The documentation grid on the landing page held eleven cards in a
|
|
29
|
+
four-column grid, leaving a permanent empty cell; a twelfth card now points at
|
|
30
|
+
llms-full.txt, the whole documentation as one plain-text file for pasting into a coding
|
|
31
|
+
agent — a real destination this site already served without linking to it. And the footer
|
|
32
|
+
finally links the npm package, which no page on the site did.
|
|
33
|
+
|
|
6
34
|
## 0.6.62
|
|
7
35
|
|
|
8
36
|
### Changed: the homepage is real HTML, and a pasted link unfurls into something
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.63",
|
|
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",
|