edfcore 0.3.82 → 0.3.83

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/CHANGELOG.md CHANGED
@@ -6,6 +6,21 @@ 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.3.83
10
+
11
+ - **Fixed** two pages calling `buildRecordIndex` "the only function in edfcore that reads the whole
12
+ file" — `api-reading.md` in bold, `discontinuous.md` in its opening line.
13
+ - The docblock on the function itself says "one of only two functions that read the whole file,
14
+ the other being `validateRecording`", and the source is right: on an EDF+/BDF+ file with no
15
+ supplied index, `validateRecording` reads every record to derive the annotation onsets. It does
16
+ so even with `scanSamples: false`, which is exactly what 0.3.77 was about.
17
+ - Someone planning I/O against a remote file reads that sentence to decide which calls are safe to
18
+ make. Both pages now carry the source's own count.
19
+ - The guard sweeps every docs page for the retired sentence and then asserts the behaviour behind
20
+ the correction — `validateRecording(recording, { scanSamples: false })` reporting
21
+ `recordsScanned` equal to the file's record count — so it is anchored to the second full-file
22
+ reader actually existing.
23
+
9
24
  ## 0.3.82
10
25
 
11
26
  - **Corrected** the `time/segments.ts` docblock, which promised that running
@@ -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.3.82";
112
+ export declare const VERSION = "0.3.83";
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.3.82';
82
+ export const VERSION = '0.3.83';
83
83
  //# sourceMappingURL=constants.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edfcore",
3
- "version": "0.3.82",
3
+ "version": "0.3.83",
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.3.82';
96
+ export const VERSION = '0.3.83';