edf2csv 0.5.143 → 0.5.145
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/CHANGELOG.md +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,27 @@
|
|
|
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.5.145
|
|
7
|
+
|
|
8
|
+
### Fixed: a third copy of the slug rule, in the file that stamps the ids
|
|
9
|
+
|
|
10
|
+
`slug.js` exists because two copies of "how a heading becomes a fragment id" had already
|
|
11
|
+
disagreed about hyphens — `## --layout` was `#--layout` in one and `#layout` in the other — and
|
|
12
|
+
its header comment says so. `addHeadingAnchors`, which is the function that actually puts the id
|
|
13
|
+
on the heading in the browser, still carried its own inline copy and did not import the module
|
|
14
|
+
at all.
|
|
15
|
+
|
|
16
|
+
The two agree today: all 217 headings on the site produce the same id either way, so no link
|
|
17
|
+
moves. It now calls `slugify` rather than reimplementing it.
|
|
18
|
+
|
|
19
|
+
## 0.5.144
|
|
20
|
+
|
|
21
|
+
### Fixed: two more things write to stdout than the page allows for
|
|
22
|
+
|
|
23
|
+
getting-started's tour of the output says "Only `--info` and `--json` write to stdout". `--help`
|
|
24
|
+
and `--version` do too, and are the two commands most likely to be run first. The sentence is
|
|
25
|
+
there so a reader knows what a pipe will carry.
|
|
26
|
+
|
|
6
27
|
## 0.5.143
|
|
7
28
|
|
|
8
29
|
### Fixed: --help is not handled before every other check
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.145",
|
|
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",
|