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.
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/recording.d.ts +2 -2
- package/dist/recording.js +2 -2
- package/docs/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
- package/src/recording.ts +2 -2
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.188";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/dist/recording.d.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
|
|
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
|
|
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
package/src/constants.ts
CHANGED
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
|
|
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
|
*
|