edf2csv 0.6.66 → 0.6.68
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.68
|
|
7
|
+
|
|
8
|
+
### the Markdown mirror of every page was served and linked from nowhere
|
|
9
|
+
|
|
10
|
+
The build has written a plain-Markdown mirror of every page to `/docs/<slug>.md` since the
|
|
11
|
+
llms.txt work, and Vercel serves them with a `text/markdown` content type. Nothing on the site
|
|
12
|
+
ever linked one. They were discoverable by reading llms.txt, guessing the convention, or reading
|
|
13
|
+
the prerenderer — which is a strange place to hide the copy of the documentation meant for people
|
|
14
|
+
and agents who do not want to strip HTML.
|
|
15
|
+
|
|
16
|
+
Each page now declares its mirror with `<link rel="alternate" type="text/markdown">`, which is
|
|
17
|
+
where a machine looks, and says so in a line under the previous/next links, which is where a
|
|
18
|
+
person looks. That line also points at llms-full.txt, the whole documentation as one file, for
|
|
19
|
+
the same reason.
|
|
20
|
+
|
|
21
|
+
## 0.6.67
|
|
22
|
+
|
|
23
|
+
### the 404 was the only page with no way back to the source
|
|
24
|
+
|
|
25
|
+
The 404 was the one page with no footer, which made it the one page with no link to the
|
|
26
|
+
repository or the package — a page reached by a broken link or a typo, and therefore the page
|
|
27
|
+
most likely to be somebody's first, offering the fewest ways out. It also had no skip link, and
|
|
28
|
+
its header carried one nav item where every other page carries four.
|
|
29
|
+
|
|
30
|
+
The footer is now a single string both the documentation pages and the 404 render, rather than a
|
|
31
|
+
literal copied into one of them, which is what let them diverge in the first place. The two
|
|
32
|
+
inline `style` attributes it was laying itself out with became rules in the stylesheet next to
|
|
33
|
+
the ones they were duplicating.
|
|
34
|
+
|
|
6
35
|
## 0.6.66
|
|
7
36
|
|
|
8
37
|
### reaching the prose by keyboard took fifteen tab stops
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.68",
|
|
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",
|