Post-V8 New Features and Development News

JamesJ has moved the Net Inspector to a docked panel (View > Show Net Inspector to show/hide)

This includes improved filtering and grouping UX, the ability to show/hide and reorder the columns, and save/restore of all the settings.

25 Likes

Jan Wichmann added tolerance calculations to the calculator regulator panel.

17 Likes

Miklós Márton added an option to change sheet names in the schematic hierarchy navigator.

20 Likes

Solid 3D model export improvements:

  • Option to fuse copper geometry together
  • Option to export copper on inner layers
  • Options to exclude board body or components
  • Net filter (can be used to export a single net)
  • Zone geometry approximation with arcs for faster processing and smaller file sizes
  • Export in BREP or XAO formats

XAO defines pad surfaces as face groups and can be imported into SALOME or newer versions of Gmsh for FEM simulations:

29 Likes

Extended the physical_clearance rule to apply between copper fills & footprint courtyards.

(rule "No copper pours under Capacitors"
    (constraint physical_clearance (min 0.1mm))
    (condition "A.Type == 'Zone' && B.Reference == 'C*'")
)

will knock out the courtyard of any footprint whose reference starts with “C” from all copper fills.

11 Likes

@JamesJ added support for schematic rule areas that allow users to draw a shape to which net class directives can be attached.

40 Likes

small tool added (by S.Hillbrand) to the context menu: Shape modification–> simplify polygon

13 Likes

Control over via tenting on top and bottom sides, at a board level and per-via overrides.

Note: this replaces the “tent vias” checkbox in the Plot dialog, which is now gone.

22 Likes

Tables in Schematic Editor, Footprint Editor, and PCB Editor.

35 Likes

Mark items excluded from simulation:

12 Likes

DNP (and friends) at the sheet level:

26 Likes

@JeffYoung added a feature that lets you create ERC/DRC errors and warnings from textboxes and fields:

New text variables:

${ERC_WARNING <custom title>}
${ERC_ERROR <custom title>}
${DRC_WARNING <custom title>}
${DRC_ERROR <custom title>}

Variables must be at the start of a field, text item or textbox to be recognised by ERC/DRC.

They resolve to the empty string on the canvas.

19 Likes

Allow editing unit in Edit Reference Field dialog:

20 Likes

Plotting of pad outlines and numbers on fabrication layers:

15 Likes

Right-click action to remove Ignored Tests from the ERC/DRC dialogs:

22 Likes

You can now embed various elements in your schematics, pcb layouts, footprints and symbols:

  1. Worksheets

  2. Datasheets:

  3. 3d Models:

  4. Fonts:

37 Likes

Export silkscreen and soldermask as flat faces to STEP / GLB (Binary glTF) / BREP / XAO
(since May)

27 Likes

New ERC check for local and global labels with the same name (from Wishlist: ERC local/global net name collisions (#9461) · Issues · KiCad / KiCad Source Code / kicad · GitLab)

21 Likes

New ERC check for wires with unconnected endpoints.

25 Likes

Nets can now have multiple netclasses assigned. This can be used for fine-grained, modular, custom DRC rules. New functionality includes:

  • Introduces ordering of netclasses
  • Allows netclasses to have null properties (except on the default netclass)
  • Effective netclasses are constructed from non-null netclass fields in netclass priority order (with default netclass parameters always used as fallback)
  • DRC checks for netclass equivalence as requiring both items to have the same set of constituent netclasses
  • Modify DRC to test netclass name (A.netclass == ‘my_netclass’) against the comma-separated list of priority-ordered constituent netclasses
  • Adds DRC function A.hasNetclass(‘my_netclass’) to test if a given netclass is assigned to an item
  • Schematic and PCB netclass coloring taken from the effective aggregate netclass for a net

Note that we have also tidied up the case where previously the default netclass could have a schematic color assigned, but not a pcb color. Now, the default netclass can have neither color assigned. These should be set in the global color settings if customisation is required.

21 Likes