edfcore 0.4.187 → 0.4.188

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.187";
112
+ export declare const VERSION = "0.4.188";
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.187';
82
+ export const VERSION = '0.4.188';
83
83
  //# sourceMappingURL=constants.js.map
@@ -13,8 +13,8 @@
13
13
  * window that selects any records is a single element. If two shapes existed, consumers would
14
14
  * write against the easy one and misbehave on EDF+D. A window entirely inside a gap, past the
15
15
  * end, or of non-positive duration returns `[]` — the last two on a continuous file too, which
16
- * the sentence above said could not happen. Nothing is ever filled in: there is no gap-fill and
17
- * no gap-fill option.
16
+ * is why the sentence above is about windows that select records and not about windows.
17
+ * Nothing is ever filled in: there is no gap-fill and no gap-fill option.
18
18
  * - Chunks stay RECORD-ALIGNED and are therefore usually wider than the window asked for. The
19
19
  * exact per-signal narrowing is `trimToWindow`, which is pure and testable without I/O.
20
20
  *
package/dist/recording.js CHANGED
@@ -13,8 +13,8 @@
13
13
  * window that selects any records is a single element. If two shapes existed, consumers would
14
14
  * write against the easy one and misbehave on EDF+D. A window entirely inside a gap, past the
15
15
  * end, or of non-positive duration returns `[]` — the last two on a continuous file too, which
16
- * the sentence above said could not happen. Nothing is ever filled in: there is no gap-fill and
17
- * no gap-fill option.
16
+ * is why the sentence above is about windows that select records and not about windows.
17
+ * Nothing is ever filled in: there is no gap-fill and no gap-fill option.
18
18
  * - Chunks stay RECORD-ALIGNED and are therefore usually wider than the window asked for. The
19
19
  * exact per-signal narrowing is `trimToWindow`, which is pure and testable without I/O.
20
20
  *
package/docs/CHANGELOG.md CHANGED
@@ -6,6 +6,14 @@ 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.188
10
+
11
+ - **Corrected** the `readWindow` docblock, which told the reader the sentence above it "said could
12
+ not happen" about something that sentence no longer says. It did before 5f88404: the array
13
+ "always has one element" on a continuous file. That commit both fixed the sentence and added the
14
+ clause pointing back at it, so the accusation was false in the commit that shipped it. It now
15
+ gives the reason the qualifier is there instead.
16
+
9
17
  ## 0.4.187
10
18
 
11
19
  - **Corrected** the `FormatHeaderOptions` docblock, which opened "There is one, and it is opt-IN".
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.4.187",
3
+ "version": "0.4.188",
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.187';
96
+ export const VERSION = '0.4.188';
package/src/recording.ts CHANGED
@@ -13,8 +13,8 @@
13
13
  * window that selects any records is a single element. If two shapes existed, consumers would
14
14
  * write against the easy one and misbehave on EDF+D. A window entirely inside a gap, past the
15
15
  * end, or of non-positive duration returns `[]` — the last two on a continuous file too, which
16
- * the sentence above said could not happen. Nothing is ever filled in: there is no gap-fill and
17
- * no gap-fill option.
16
+ * is why the sentence above is about windows that select records and not about windows.
17
+ * Nothing is ever filled in: there is no gap-fill and no gap-fill option.
18
18
  * - Chunks stay RECORD-ALIGNED and are therefore usually wider than the window asked for. The
19
19
  * exact per-signal narrowing is `trimToWindow`, which is pure and testable without I/O.
20
20
  *