edf2csv 0.6.79 → 0.6.81

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.
Files changed (2) hide show
  1. package/docs/CHANGELOG.md +31 -0
  2. package/package.json +1 -1
package/docs/CHANGELOG.md CHANGED
@@ -3,6 +3,37 @@
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.81
7
+
8
+ ### the links the template writes were the ones nothing checked
9
+
10
+ The prerenderer hand-writes links that nothing reads back: the four in the header, the two in the
11
+ footer, the skip target, the eleven on the 404, the previous/next pair, and the Markdown-mirror
12
+ line added in 0.6.68. A typo in any of them produces a page that builds, passes its word count,
13
+ carries valid structured data and looks correct in the browser anybody actually opens — and 404s
14
+ for whoever clicks it. The documentation's own links are already checked by the test suite;
15
+ these were the ones written in the template, which is the file nothing was testing.
16
+
17
+ The build now resolves every internal `href` and `src` in every emitted page against the list of
18
+ files it just wrote, treating `/docs/x` as satisfied by `docs/x/index.html` and skipping
19
+ `/_vercel/`, which the platform injects at request time and no build produces. Checked by
20
+ misspelling the header's link to getting-started: the build stops and names every page that
21
+ carried it.
22
+
23
+ ## 0.6.80
24
+
25
+ ### a table-header rule set its colour twice and used the second
26
+
27
+ `.prose th` set `color: var(--text)` and then, four lines later in the same rule, `color:
28
+ var(--text-faint)`. The first declaration never applied to anything — the last one wins — so the
29
+ table headers throughout the documentation had been the faint colour since the rule was written,
30
+ while the file claimed twice over that they were two different colours. Whichever was intended,
31
+ the stylesheet was not the place to find out.
32
+
33
+ The faint one is what shipped and what the design wants: uppercased, small and quiet, so a header
34
+ row reads as a label rather than as the first row of data. That is now the only declaration, with
35
+ a line saying why.
36
+
6
37
  ## 0.6.79
7
38
 
8
39
  ### a dead light-theme rule outranked the one that dims the hero on phones
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edf2csv",
3
- "version": "0.6.79",
3
+ "version": "0.6.81",
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",