edf2csv 0.6.80 → 0.6.82
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 +30 -0
- package/package.json +1 -1
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
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.82
|
|
7
|
+
|
|
8
|
+
### the 404 was a version behind on everything in its head
|
|
9
|
+
|
|
10
|
+
The 404 got its footer and its header back in 0.6.67, and its head stayed a version behind
|
|
11
|
+
everything else: no `theme-color`, so a phone browser painted its chrome a default colour on the
|
|
12
|
+
one page in the site that does not match it; no font preloads, so the page that is already a
|
|
13
|
+
disappointment also arrived with a flash of fallback type; no touch icon and no manifest link.
|
|
14
|
+
|
|
15
|
+
It keeps its own `robots` value. Every other page carries `max-image-preview:large`, which is
|
|
16
|
+
about how a page appears when it is indexed; this is the page that must never be indexed at all,
|
|
17
|
+
and `noindex` is not a tag to share from a helper for the sake of symmetry.
|
|
18
|
+
|
|
19
|
+
## 0.6.81
|
|
20
|
+
|
|
21
|
+
### the links the template writes were the ones nothing checked
|
|
22
|
+
|
|
23
|
+
The prerenderer hand-writes links that nothing reads back: the four in the header, the two in the
|
|
24
|
+
footer, the skip target, the eleven on the 404, the previous/next pair, and the Markdown-mirror
|
|
25
|
+
line added in 0.6.68. A typo in any of them produces a page that builds, passes its word count,
|
|
26
|
+
carries valid structured data and looks correct in the browser anybody actually opens — and 404s
|
|
27
|
+
for whoever clicks it. The documentation's own links are already checked by the test suite;
|
|
28
|
+
these were the ones written in the template, which is the file nothing was testing.
|
|
29
|
+
|
|
30
|
+
The build now resolves every internal `href` and `src` in every emitted page against the list of
|
|
31
|
+
files it just wrote, treating `/docs/x` as satisfied by `docs/x/index.html` and skipping
|
|
32
|
+
`/_vercel/`, which the platform injects at request time and no build produces. Checked by
|
|
33
|
+
misspelling the header's link to getting-started: the build stops and names every page that
|
|
34
|
+
carried it.
|
|
35
|
+
|
|
6
36
|
## 0.6.80
|
|
7
37
|
|
|
8
38
|
### a table-header rule set its colour twice and used the second
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.82",
|
|
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",
|