edf2csv 0.6.82 → 0.6.84
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 +32 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
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.84
|
|
7
|
+
|
|
8
|
+
### every heading was addressable and none of them said so
|
|
9
|
+
|
|
10
|
+
Every h2 and h3 in the documentation has carried an id since the on-page contents list was added,
|
|
11
|
+
so every warning code, every flag and every JSON field on this site is already addressable. There
|
|
12
|
+
was no way to get the address. A reader wanting to send a colleague to the paragraph about
|
|
13
|
+
INPUT_CHANGED had to read the page source, or scroll back up and hope the heading appeared in the
|
|
14
|
+
contents list, which lists only h2s.
|
|
15
|
+
|
|
16
|
+
Each heading now carries a permalink beside it, invisible until the heading is hovered. It is in
|
|
17
|
+
the markup rather than conjured by script on hover, so it survives JavaScript being off and can be
|
|
18
|
+
copied out of the page source. It is `aria-hidden` and out of the tab order on purpose: it points
|
|
19
|
+
at the heading it sits beside, which a screen reader has just read, so announcing eleven more
|
|
20
|
+
stops per page would be noise rather than access. On touch screens, where there is no hover to
|
|
21
|
+
reveal it, it simply sits there at reduced opacity.
|
|
22
|
+
|
|
23
|
+
## 0.6.83
|
|
24
|
+
|
|
25
|
+
### the files written to be read out of context named no version
|
|
26
|
+
|
|
27
|
+
llms.txt and llms-full.txt exist to be read out of context: pasted into a conversation, fetched
|
|
28
|
+
into a context window, cached by something that will still have it next month. llms-full.txt is
|
|
29
|
+
6,400 lines of flag names, exit codes and JSON field names, and neither file said which release it
|
|
30
|
+
described. A reader holding a copy had no way to tell whether the `--layout` flag it documents
|
|
31
|
+
existed in the version they installed, and no way to tell a stale copy from a current one.
|
|
32
|
+
|
|
33
|
+
Both now carry the version, read from package.json at build time, so it is the same number the
|
|
34
|
+
site's structured data reports rather than one somebody remembers to update. llms-full.txt also
|
|
35
|
+
names the documentation on the site as canonical and says plainly that the site is the newer of
|
|
36
|
+
the two when they disagree.
|
|
37
|
+
|
|
6
38
|
## 0.6.82
|
|
7
39
|
|
|
8
40
|
### the 404 was a version behind on everything in its head
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.84",
|
|
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",
|