edfcore 0.5.7 → 0.5.8
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/docs/CHANGELOG.md +19 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -1
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.5.
|
|
112
|
+
export declare const VERSION = "0.5.8";
|
|
113
113
|
//# sourceMappingURL=constants.d.ts.map
|
package/dist/constants.js
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,25 @@ 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.8
|
|
10
|
+
|
|
11
|
+
- **Added** the tie between the three places that count the ways a scale can be refused.
|
|
12
|
+
`design-decisions.md` says "Four header conditions ... A fifth condition catches a derived gain",
|
|
13
|
+
`physical-values.md` tabulates five under "Five conditions produce it, checked in this order", and
|
|
14
|
+
`header/scale.ts` is what actually decides. Only the table was checked; nothing tied the decision
|
|
15
|
+
record to it or to the source.
|
|
16
|
+
- The split wording is deliberate, not stale, and the test says so rather than flattening it. Four
|
|
17
|
+
of the five are conditions a header DECLARES and a reader can see in the fields; the fifth is a
|
|
18
|
+
property of the gain those fields imply, which no field states, so calling it a header condition
|
|
19
|
+
would be wrong. What has to hold is that four plus one is the five the other page tabulates and
|
|
20
|
+
the five the source abandons a scale in.
|
|
21
|
+
- That is the part a later release breaks by adding a sixth in one place. 0.4.509 and 0.4.511 were
|
|
22
|
+
the previous instalment of exactly this: the fifth refusal existed in the source, the throw path
|
|
23
|
+
re-derived four of them, and the page documented the gap as permanent.
|
|
24
|
+
- The four declared conditions are also checked to still be named in the words the header fields
|
|
25
|
+
use — `digitalMinimum === digitalMaximum` and the rest — because the page is usable as a
|
|
26
|
+
checklist only while a reader can match each line against a field by eye.
|
|
27
|
+
|
|
9
28
|
## 0.5.7
|
|
10
29
|
|
|
11
30
|
- **Added** the one worked `readWindow` result on `api-reading.md`, built and run. The page shows a
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED