edfcore 0.4.295 → 0.4.297
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/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/docs/CHANGELOG.md +23 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -109,5 +109,5 @@ export declare const SIGNAL_FIELD_BLOCK_OFFSETS: {
|
|
|
109
109
|
readonly reserved: 224;
|
|
110
110
|
};
|
|
111
111
|
/** Published package version. Kept in sync with package.json by a test. */
|
|
112
|
-
export declare const VERSION = "0.4.
|
|
112
|
+
export declare const VERSION = "0.4.297";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,29 @@ alone does not tell you whether you were affected.
|
|
|
6
6
|
edfcore is pre-1.0. Patch releases have carried behaviour changes where the old behaviour was a
|
|
7
7
|
defect; those are called out below.
|
|
8
8
|
|
|
9
|
+
## 0.4.297
|
|
10
|
+
|
|
11
|
+
- **Exercised** the inspector's sample recording, which nothing had. `sample-edf.ts` writes an
|
|
12
|
+
EDF+C file in the browser so the demo has something to decode without asking a visitor for a
|
|
13
|
+
patient recording — three hundred lines of EDF writing that the test suite cannot reach, because
|
|
14
|
+
anything imported from `website/` drags in a tsconfig the root install does not have. `verify:site`
|
|
15
|
+
runs in the job that installed the site's dependencies, so it can.
|
|
16
|
+
- A round trip rather than a snapshot: the generator is a writer, edfcore is a reader, and the
|
|
17
|
+
page's headline numbers are what the reader has to find — EDF+C, five signals, 120 seconds, and
|
|
18
|
+
no error-severity diagnostic. If those agree, both agree about the format. Verified by deleting a
|
|
19
|
+
channel and watching it report four.
|
|
20
|
+
|
|
21
|
+
## 0.4.296
|
|
22
|
+
|
|
23
|
+
- **Documented** the commands that existed and no page mentioned. 0.4.268 checks that every
|
|
24
|
+
documented script is real; nothing checked the other direction, and `format`, `release` and the
|
|
25
|
+
three `verify:*` scripts had accumulated unmentioned. A contributor-facing script nobody
|
|
26
|
+
documents is a script nobody runs — `verify:tarball` and `verify:site` were both added this week
|
|
27
|
+
and would have been found only by reading `package.json`.
|
|
28
|
+
- The three `verify:*` get their own block with the reason they are not in `npm run check`: each
|
|
29
|
+
needs the network or an artifact `check` does not build, and `check` staying offline is a
|
|
30
|
+
property `tests/README.md` opens with.
|
|
31
|
+
|
|
9
32
|
## 0.4.295
|
|
10
33
|
|
|
11
34
|
- **Corrected** the release script's closing message, which 0.4.294 made false one release ago. It
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED