Kikit

Latest version: v1.5.1

Safety actively analyzes 629994 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 3

1.0.1

This is a patch release that fixes issues and bugs found after publishing v1.0.0. All users are encouraged to upgrade.

Problems fixed

- After installing KiKit Action plugins from PCM the icons didn't show up and also, the action plugin caused the Pcbnew to hang after exiting. This was fixed.
- The dialog notifying the user about the absence of the KiKit backend was impossible to close, this is now fixed.
- Panels created via GUI and saved in Pcbnew were impossible to reopen. This is now fixed.
- DRC checking was not working on Windows, this is fixed.
- With KiCAD 6 the fab command didn't work with v5 projects as it was expecting the new schematics format. This is now fixed and the correct type of schematics is detected based on extension.
- In certain situations, some tabs on the boards were missing. This was fixed.
- There was a bug with PcbWay assembly generator that prevented the users from using it, this is now fixed
- The documentation was improved regarding the GUI and upgrading KiKit to the new version.

How to upgrade

There is no need to upgrade the PCM packages, simply use `pip install -U kikit` to update.

1.0.0

This is the first major release of KiKit ever. Since the initial draft, KiKit expanded a lot and it is much more capable than before.

Major changes in v1

- reworked CLI. KiKit offers a large number of parameters, so you can tune every last detail of your panel. This leads to hard-to-use command-line options. Therefore, we introduced a new CLI that groups the options into categories. Such UI can be also easily extended. It also allows you to save common patterns (e.g., mouse-bite styles) into files and reuse them. Read more in [documentation](https://github.com/yaqwsx/KiKit/blob/master/doc/panelizeCli.md).
- GUI for Pcbnew. We introduced action plugins. Therefore you can invoke some of the KiKit actions from Pcbnew GUI. Currently, you can
- design a panel ([see it in action](https://twitter.com/yaqwsx_cz/status/1417961583830093827)) and
- hide or show references based on regex.
- more actions are planned, see 12.
- automated DRC checking. Finally, with KiCAD 6 you can check if your board passes DRC in CI or before exporting gerbers for the manufacturer.
- reworked tab generating algorithm. Internally it is based on annotations. It is more robust and allows us to create various panel configurations. Read more in [documentation](https://github.com/yaqwsx/KiKit/blob/master/doc/understandingTabs.md).
- support for user-specified annotations. We introduced a custom schematic and footprint library that you can use to annotate the PCB (e.g., with tab positions) or board markings. This also allows us to simplify the multi-board setup - see [documentation](https://github.com/yaqwsx/KiKit/blob/master/doc/multiboard.md).
- support for KiCAD v6.
- support for Windows and macOS. With the changes in KiCAD's packaging in v6, we can finally support Windows and macOS. Note there are some problems with macOS, but they should be resolved soon (see 252 for details).
- major speed improvement. KiKit is now nearly 2× faster.

Minor improvements

- we allow to specify more options for V-cuts (e.g., clearance)
- we allow to tangentially prolong mouse bites
- we allow the user to run a post-processing script
- support for OSHPark was introduced
- we support corner tabs
- we can make fillets and chamfers on panel frames.
- the docker images are now based on KiCAD 6.
- ...and a number of tiny improvements.

The journey towards KiKit v1 was quite long, but we finally made it. I hope it will serve you well and improve your workflow. If you find any bugs, please [open an issue](https://github.com/yaqwsx/KiKit/issues/new?assignees=&labels=&template=bug_report.md&title=). If you struggle with usage or you have a feature proposal, you can open a [question in discussions](https://github.com/yaqwsx/KiKit/discussions/categories/q-a).

**If you find KiKit useful and time-saving, [consider becoming my GitHub sponsor](https://github.com/sponsors/yaqwsx).** I would like to thank all my current sponsors for your support. Thank you, guys. Especially michaelruppe, my greatest sponsor.

0.7

This release brings some new features:

- KiKit can now generate assembly files for [PCB Way](https://www.pcbway.com/) - this feature was implemented by maribu. Thanks!
- We did refactoring which allows us to support both, KiCAD v5 and KiCAD v6. However, the support of v6 (nightly) is experimental, and unfortunately, many features do not work, as KiCAD nightly does breaking changes to the API nearly every week. Once KiCAD v6 release candidate is out, you can expect better support.
- We support automated validation of design rules - you can check your boards and panels, e.g., in an automated way in CI. This feature works only with KiCAD 6.
- We established the basics for Action Plugin - currently, you can invoke hide/show references functionality from GUI. More commands are expected to be supported in the future.
- KiKit can generate cutouts in the stencils for already populated components. This is useful when you have already pre-populated board and you want to populate extra components.

It also fixes several bugs and small improvements:

- Assembly files now generate correct drill files when auxiliary origins are in use.
- The KiKit startup times were drastically reduced (from 1.68 seconds to 0.12 seconds)
- KiKit now ignores invisible labels of components, therefore, it does not throw away components from the boards.
- A bug in tight grid placement with rotated boards was fixed.
- Documentation was improved
- a note about running KiKit with a specific version of KiCAD was added
- FAQ was improved (e.g., detailed information about Windows support)
- Detailed installation instructions were added
- The Docker container with KiKit is based on Ubuntu 20.04 instead of Ubuntu 19.10

0.6.1

This is a small release that brings bug fixes for 67, 66, and 65.

0.6.0

To install this release, simply upgrade via `pip`.

This release brings some new features:

- KiKit supports new command: `kikit fab` which exports all manufacturing data for a given PCB manufacturer. It supports both, generation of gerbers, BOMs and POS files for automated assembly! Currently, we support a single manufacturer: JLC PCB. See the [documentation](https://github.com/yaqwsx/KiKit/blob/master/doc/fabrication.md) or simply try `kikit fab jlcpcb`

- KiKit now supports rails in addition to a frame. Just specify `--railsTb` or `--railsLr`. See documentation or the [examples](https://github.com/yaqwsx/KiKit/blob/master/doc/examples.md).

- KiKit can automatically generate tooling holes and fiducials in the corner of the panel - see options `--fiducials` and `--tooling` in the [examples](https://github.com/yaqwsx/KiKit/blob/master/doc/examples.md)

- an option `--copperfill` was implemented to fill unused areas of the panel with copper - see the [examples](https://github.com/yaqwsx/KiKit/blob/master/doc/examples.md).

It also brings some minor tweaks:

- KiKit versioning has been transferred to versionner to better track particular versions in upstream installations

- KiKit now checks for PCB thickness and warns you, when you mix different thickness of PCB. It also transfers the thickness to the resulting panel.

- the gerber export was changed to use conservative settings to be compatible with more PCB manufacturers

We also fixed a bug:

- when you created a panel with no spacing, it missed outer cuts. This is now fixed.

0.5

Changelog

- when there are footprints with Edge.Cuts inside, this geometry is no longer ignored
- the tolerance option for enlarging implicit source area was added
- fiducial and tooling hole support was implemented. Currently, it is only accessible from Python API, not CLI
- you can specify tab positions by drawing lines on a layer in KiCAD
- fillets are now applied to the frame
- a bug in the fillet feature, when narrow slot disappeared, was fixed
- KiKit now correctly supports multi-layered boards
- KiKit supports exporting 3D printed solder stencils
- Kikit supports exporting steel stencils for an alignment jig
- the user can enable adding mouse bites to the frame for easier manipulation
- Documentation was improved, FAQ was added

Page 3 of 3

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.