altium-toolkit 1.4.9 → 1.4.11
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/docs/release-notes-v1.4.10.md +29 -0
- package/docs/release-notes-v1.4.11.md +34 -0
- package/package.json +1 -1
- package/src/convergence/AltiumSchematicFidelityNormalizer.mjs +661 -0
- package/src/convergence/AltiumSchematicNativeFooterOwnerAligner.mjs +351 -0
- package/src/convergence/SchematicSvgRenderer.mjs +37 -2
- package/src/ui/SchematicHarnessRenderer.mjs +346 -0
- package/src/ui/SchematicRotatedOwnerTextPlacement.mjs +55 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# altium-toolkit 1.4.10
|
|
2
|
+
|
|
3
|
+
Version 1.4.10 keeps complete authored schematic footer assemblies aligned when
|
|
4
|
+
a recovered standard sheet is wider than its stored native template.
|
|
5
|
+
|
|
6
|
+
## Native schematic footer alignment
|
|
7
|
+
|
|
8
|
+
- The convergence renderer detects structurally seeded native-footer owners
|
|
9
|
+
across every supported schematic primitive family.
|
|
10
|
+
- Lines, shapes, text, and embedded images belonging to the same authored owner
|
|
11
|
+
receive one shared effective right-edge translation.
|
|
12
|
+
- Multiple footer owners use the exact single offset computed by the preserved
|
|
13
|
+
historical renderer, while unrelated and ownerless content remains fixed.
|
|
14
|
+
|
|
15
|
+
## Compatibility
|
|
16
|
+
|
|
17
|
+
- Historical native renderer and partitioner sources remain byte-for-byte
|
|
18
|
+
frozen.
|
|
19
|
+
- The correction is a render-only convergence adaptation and does not mutate
|
|
20
|
+
parsed documents or change public parser and renderer signatures.
|
|
21
|
+
- Detection derives from promoted-sheet metadata, authored ownership, and
|
|
22
|
+
primitive geometry without matching project names, labels, or sample data.
|
|
23
|
+
|
|
24
|
+
## Verification
|
|
25
|
+
|
|
26
|
+
- Repository-owned fake regressions cover lower footer seeds, upper geometry,
|
|
27
|
+
text, embedded images, multiple seeded owners, and unrelated content.
|
|
28
|
+
- The complete package suite, formatting check, performance guard, npm package
|
|
29
|
+
dry run, and ECAD Forge integration gates are required for release.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# altium-toolkit 1.4.11
|
|
2
|
+
|
|
3
|
+
Version 1.4.11 restores complete native schematic fidelity for embedded
|
|
4
|
+
template frames, footer metadata, signal harnesses, and rotated passive text.
|
|
5
|
+
|
|
6
|
+
## Native schematic fidelity
|
|
7
|
+
|
|
8
|
+
- Structurally proven embedded template dimensions remain the authored render
|
|
9
|
+
frame instead of being replaced by a sparse-content estimate.
|
|
10
|
+
- Complete footer owner groups resolve organization, address, approval, and
|
|
11
|
+
other native metadata rows from the ownership sidecar.
|
|
12
|
+
- Signal harness trunks, connector brackets, entries, and type labels render as
|
|
13
|
+
first-class SVG primitives with native additional-list ownership.
|
|
14
|
+
- Right-side vertical component parameters clear narrow passive bodies while
|
|
15
|
+
left-side designators retain their authored columns.
|
|
16
|
+
|
|
17
|
+
## Compatibility
|
|
18
|
+
|
|
19
|
+
- Historical parser and renderer sources remain byte-for-byte frozen.
|
|
20
|
+
- Repairs are isolated to the convergence layer used by current toolkit
|
|
21
|
+
consumers and do not change public parser or renderer signatures.
|
|
22
|
+
- Geometry and ownership decisions derive from native structure rather than
|
|
23
|
+
project names, labels, filenames, or fixture-specific values.
|
|
24
|
+
- Existing schematic theme variables, palette behavior, canvas border, and
|
|
25
|
+
title-block chrome remain unchanged.
|
|
26
|
+
|
|
27
|
+
## Verification
|
|
28
|
+
|
|
29
|
+
- Obfuscated repository-owned regressions cover native-frame proof, complete
|
|
30
|
+
footer owners, implicit harness children, themed harness SVG, and vertical
|
|
31
|
+
passive annotation columns.
|
|
32
|
+
- The complete package suite, immutable-source checks, feature-preservation
|
|
33
|
+
check, formatting check, performance guard, and npm package dry run are
|
|
34
|
+
required for release.
|