edf2csv 0.5.144 → 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 +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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
|
+
|
|
6
19
|
## 0.5.144
|
|
7
20
|
|
|
8
21
|
### Fixed: two more things write to stdout than the page allows for
|
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",
|