circuit-json-to-kicad 0.0.13 → 0.0.14

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -917,8 +917,8 @@ var CircuitJsonToKicadSchConverter = class {
917
917
  }
918
918
  constructor(circuitJson) {
919
919
  const CIRCUIT_JSON_SCALE_FACTOR = 15;
920
- const KICAD_CENTER_X = 95.25;
921
- const KICAD_CENTER_Y = 73.66;
920
+ const KICAD_CENTER_Y = 105;
921
+ const KICAD_CENTER_X = 148.5;
922
922
  const db = cju(circuitJson);
923
923
  const { center } = getSchematicBoundsAndCenter(db);
924
924
  this.ctx = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "circuit-json-to-kicad",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"