edf2csv 0.6.67 → 0.6.69
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.69
|
|
7
|
+
|
|
8
|
+
### a pinned or bookmarked site had no name and no icon
|
|
9
|
+
|
|
10
|
+
Bookmarked to an Android home screen or pinned in a browser that reads one, the site had no name
|
|
11
|
+
and no icon of its own to offer: it took whatever the browser could scrape, which is the page
|
|
12
|
+
title of whichever page was open and a screenshot-derived glyph.
|
|
13
|
+
|
|
14
|
+
The manifest states the name, the description the About field uses, the two icons the site
|
|
15
|
+
already ships, and the background it already paints. `"display": "browser"` on purpose — this is
|
|
16
|
+
documentation, not an app, and claiming `standalone` would strip the address bar from a site
|
|
17
|
+
whose whole job is linking to other pages.
|
|
18
|
+
|
|
19
|
+
## 0.6.68
|
|
20
|
+
|
|
21
|
+
### the Markdown mirror of every page was served and linked from nowhere
|
|
22
|
+
|
|
23
|
+
The build has written a plain-Markdown mirror of every page to `/docs/<slug>.md` since the
|
|
24
|
+
llms.txt work, and Vercel serves them with a `text/markdown` content type. Nothing on the site
|
|
25
|
+
ever linked one. They were discoverable by reading llms.txt, guessing the convention, or reading
|
|
26
|
+
the prerenderer — which is a strange place to hide the copy of the documentation meant for people
|
|
27
|
+
and agents who do not want to strip HTML.
|
|
28
|
+
|
|
29
|
+
Each page now declares its mirror with `<link rel="alternate" type="text/markdown">`, which is
|
|
30
|
+
where a machine looks, and says so in a line under the previous/next links, which is where a
|
|
31
|
+
person looks. That line also points at llms-full.txt, the whole documentation as one file, for
|
|
32
|
+
the same reason.
|
|
33
|
+
|
|
6
34
|
## 0.6.67
|
|
7
35
|
|
|
8
36
|
### the 404 was the only page with no way back to the source
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.69",
|
|
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",
|