edfcore 0.4.432 → 0.4.433
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 +19 -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.433";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,25 @@ 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.433
|
|
10
|
+
|
|
11
|
+
- **Added** tests for what a conformant header is allowed to say. `validateHeader` raises three
|
|
12
|
+
advisory diagnostics about how a header is written, each checked somewhere for the case where it
|
|
13
|
+
fires, and none for the case where it stays quiet — which is the direction with consequences.
|
|
14
|
+
- A conformance report is only worth reading if a clean file produces a short one. `PREFILTERING_NONE`
|
|
15
|
+
holds four spellings of "no filtering" that EDF+ and real writers use interchangeably, and
|
|
16
|
+
dropping one means every file from that writer carries a warning about a field it filled in
|
|
17
|
+
correctly. Nobody debugs that; they stop reading the warnings, which are the same warnings that
|
|
18
|
+
would have told them something real.
|
|
19
|
+
- The headline is the whole of it at once: a header that follows EDF+ to the letter — an
|
|
20
|
+
`EEG Fpz-Cz` label, a named transducer, `HP:` and `LP:` terms — produces no conformance
|
|
21
|
+
diagnostics at all. That sentence is the product these checks exist to make possible and it was
|
|
22
|
+
never asserted.
|
|
23
|
+
- One subtlety is pinned deliberately. A bare `EEG` label is flagged, because the rule is
|
|
24
|
+
`<type> <sensor>` and a type with no sensor names a category rather than a channel. The condition
|
|
25
|
+
that gets that right reads like a redundant length check beside the set membership next to it,
|
|
26
|
+
and simplifying it away would silently accept `EEG`, `ECG` and `Temp` as channel names.
|
|
27
|
+
|
|
9
28
|
## 0.4.432
|
|
10
29
|
|
|
11
30
|
- **Added** a check that every version is still signed, and of the four lines that make it so.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED