Re: [kicad] Linux build and install - but not as root (broken)

2023-01-23 Thread Andrew Lutsenko
Hello, I don't think there is a bug. Some paths are calculated based on install prefix and cached. If you change the install prefix you should clean cmake cache before build. See https://gitlab.com/kicad/code/kicad/-/blob/509b39e9e4523d053f7473bd8f755bc006e104ba/CMakeLists.txt#L556 Best, Andrew

Re: [kicad] Multiple Track Dragging development investigations

2023-07-03 Thread Andrew Lutsenko
Hello Stuart, Current python api does not support interactive tool-like plugins, no mouse or keyboard events are passed to the plugin. Plugin API is simple and transactional, kicad instantiates a plugin object and calls its Run() method. After the method completes, kicad checks if anything changed

Re: [kicad] Multiple Track Dragging development investigations

2023-07-08 Thread Andrew Lutsenko
On windows GUI apps don't have stdout. You can use wxLog/wxTrace methods to debug. Also see section 4 of build docs for hints on how to run kicad from build directory and what env vars to set so it can find python and other libs. https://dev-docs.kicad.org/en/build/windows-msvc/#:~:text=.%20Runni

Re: [kicad] Improvements to the http library

2024-04-30 Thread Andrew Lutsenko
Hello, There is a sql backend. It's not yet mature or easily user configurable but it's usable: https://docs.kicad.org/8.0/en/eeschema/eeschema_advanced.html#database-libraries On Fri, Apr 26, 2024 at 7:04 AM 'Clemens Koller' via KiCad Developers < devlist@kicad.org> wrote: > Hi there! > > Usin