edf2csv 0.6.81 → 0.6.83
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.83
|
|
7
|
+
|
|
8
|
+
### the files written to be read out of context named no version
|
|
9
|
+
|
|
10
|
+
llms.txt and llms-full.txt exist to be read out of context: pasted into a conversation, fetched
|
|
11
|
+
into a context window, cached by something that will still have it next month. llms-full.txt is
|
|
12
|
+
6,400 lines of flag names, exit codes and JSON field names, and neither file said which release it
|
|
13
|
+
described. A reader holding a copy had no way to tell whether the `--layout` flag it documents
|
|
14
|
+
existed in the version they installed, and no way to tell a stale copy from a current one.
|
|
15
|
+
|
|
16
|
+
Both now carry the version, read from package.json at build time, so it is the same number the
|
|
17
|
+
site's structured data reports rather than one somebody remembers to update. llms-full.txt also
|
|
18
|
+
names the documentation on the site as canonical and says plainly that the site is the newer of
|
|
19
|
+
the two when they disagree.
|
|
20
|
+
|
|
21
|
+
## 0.6.82
|
|
22
|
+
|
|
23
|
+
### the 404 was a version behind on everything in its head
|
|
24
|
+
|
|
25
|
+
The 404 got its footer and its header back in 0.6.67, and its head stayed a version behind
|
|
26
|
+
everything else: no `theme-color`, so a phone browser painted its chrome a default colour on the
|
|
27
|
+
one page in the site that does not match it; no font preloads, so the page that is already a
|
|
28
|
+
disappointment also arrived with a flash of fallback type; no touch icon and no manifest link.
|
|
29
|
+
|
|
30
|
+
It keeps its own `robots` value. Every other page carries `max-image-preview:large`, which is
|
|
31
|
+
about how a page appears when it is indexed; this is the page that must never be indexed at all,
|
|
32
|
+
and `noindex` is not a tag to share from a helper for the sake of symmetry.
|
|
33
|
+
|
|
6
34
|
## 0.6.81
|
|
7
35
|
|
|
8
36
|
### the links the template writes were the ones nothing checked
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.83",
|
|
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",
|