edfcore 0.5.73 → 0.5.74

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.
@@ -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.5.73";
112
+ export declare const VERSION = "0.5.74";
113
113
  //# sourceMappingURL=constants.d.ts.map
package/dist/constants.js CHANGED
@@ -79,5 +79,5 @@ export const SIGNAL_FIELD_BLOCK_OFFSETS = {
79
79
  reserved: 224,
80
80
  };
81
81
  /** Published package version. Kept in sync with package.json by a test. */
82
- export const VERSION = '0.5.73';
82
+ export const VERSION = '0.5.74';
83
83
  //# sourceMappingURL=constants.js.map
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,24 @@ 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.5.74
10
+
11
+ - **Added** an eleventh shape to the `AWKWARD` matrix: a file with a gap AND a sub-second start
12
+ offset at the same time. Fifteen test files run their sweeps over that matrix, and every one of
13
+ them now sees it.
14
+ - It is the fixture this project's longest-running defect class hides from. Seven separate versions
15
+ fixed one function deriving a time from the nominal grid while every other function used the
16
+ record's true onset — 0.1.4, 0.2.10, 0.2.18, 0.2.19, 0.2.28, the sample-grid family in 0.2.32,
17
+ and 0.2.68, where the function ADDED to fix the class shipped with the defect itself. Several of
18
+ them survived their own review because the fixtures had one of the two properties and never both:
19
+ with only a gap, `t = 0` is still the header start time and a nominal derivation looks right;
20
+ with only a sub-second start, the onsets are still the nominal grid and it looks right again.
21
+ - The matrix had `EDF+D with a gap`, which starts at zero, and no shape with a sub-second start at
22
+ all. The new one starts at 0.25 s and skips five seconds after its third record, so `t = 0` is
23
+ neither the header start time nor a record boundary of the second segment.
24
+ - Every sweep passes over it unchanged, which is the answer that was wanted and not one anybody
25
+ could state before. The two length assertions that pin the matrix size move from ten to eleven.
26
+
9
27
  ## 0.5.73
10
28
 
11
29
  - **Added** the day the network hiccups. `index.onsetTicks(r)` memoises, which is why `locate()`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.5.73",
3
+ "version": "0.5.74",
4
4
  "description": "Modern, typed, zero-dependency reader for EDF, EDF+, BDF and BDF+ biosignal files. Works in browsers and Node with true random access.",
5
5
  "keywords": [
6
6
  "edf",
package/src/constants.ts CHANGED
@@ -93,4 +93,4 @@ export const SIGNAL_FIELD_BLOCK_OFFSETS = {
93
93
  } as const;
94
94
 
95
95
  /** Published package version. Kept in sync with package.json by a test. */
96
- export const VERSION = '0.5.73';
96
+ export const VERSION = '0.5.74';