edf2csv 0.4.69 → 0.4.70
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 +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,21 @@
|
|
|
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.4.70
|
|
7
|
+
|
|
8
|
+
### Fixed: the website README described a base path the build does not use
|
|
9
|
+
|
|
10
|
+
It said the build writes `dist/` "with a relative base path, so it can be served from a
|
|
11
|
+
domain root or from a subpath such as GitHub Pages without changes." The base is `/`, and
|
|
12
|
+
`vite.config.js` says why in a comment right above it: documentation is prerendered into
|
|
13
|
+
`/docs/<slug>/`, and a relative base would send those pages looking for
|
|
14
|
+
`/docs/<slug>/assets/...` instead. Serving the build under `/edf2csv/` returns 404 for the
|
|
15
|
+
stylesheet and both scripts, so the page renders blank — which is a poor way to find out.
|
|
16
|
+
|
|
17
|
+
The README now describes the absolute base, the reason for it, and what deploying to a
|
|
18
|
+
subpath actually requires. A test reads the base out of `vite.config.js` and holds the two
|
|
19
|
+
in agreement, so changing one without the other fails.
|
|
20
|
+
|
|
6
21
|
## 0.4.69
|
|
7
22
|
|
|
8
23
|
### Added: `formatWallClock` is documented, and every export is checked to be
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "edf2csv",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.70",
|
|
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",
|