edfcore 0.4.450 → 0.4.451

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.4.450";
112
+ export declare const VERSION = "0.4.451";
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.4.450';
82
+ export const VERSION = '0.4.451';
83
83
  //# sourceMappingURL=constants.js.map
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,23 @@ 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.451
10
+
11
+ - **Added** a property test for `bucketCount` over arbitrary windows. `api-helpers.md` calls it
12
+ "the field to read before indexing, and it is not always the `buckets` you asked for" — a caller
13
+ who sizes a canvas to 800 pixels, asks for 800 buckets and loops to 800 reads past the end of
14
+ `counts` on any run shorter than 800 samples, which is every run near the end of a recording and
15
+ every run between two gaps.
16
+ - The two calls answer differently and both answers are deliberate. `readEnvelope` clamps to the
17
+ densest signal's sample count, because a grid with more buckets than samples has columns that
18
+ mean nothing. `readEnvelopeAtResolution` does not, because its contract is the bucket WIDTH:
19
+ shortening the count would shorten the grid rather than coarsen it, and a time axis asked for
20
+ 30 s per bucket has to keep getting it.
21
+ - Both rules are exactly the kind that hold for the case someone checked — a run long enough for
22
+ the clamp never to bite, a resolution dividing the span exactly — so they are now checked over
23
+ generated geometries, along with the invariant a caller actually indexes on: every signal's
24
+ `counts`, `min` and `max` are `bucketCount` long, whatever the count turns out to be.
25
+
9
26
  ## 0.4.450
10
27
 
11
28
  - **Added** a property test that `printable` never changes the width of what it is given. Every
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.4.450",
3
+ "version": "0.4.451",
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.4.450';
96
+ export const VERSION = '0.4.451';