[Kicad-developers] Jenkins build is back to normal : linux-kicad-full-gcc-head #4439

2018-12-19 Thread Miguel Angel Ajo
See ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscribe : https://launchpad.net/~kicad-devel

[Kicad-developers] Build failed in Jenkins: linux-kicad-full-gcc-head #4438

2018-12-19 Thread Miguel Angel Ajo
See Changes: [hillbrand] pcbnew: Check for valid pointer before deref -- [...truncated 153.21 KB...] [ 86%] creating

Re: [Kicad-developers] PCBNew: Segments/polygons not rendered correctly (from Bug 1806411])

2018-12-19 Thread Seth Hillbrand
Am 2018-12-19 10:19, schrieb John Beard: Sorry, I failed to rebase that over the newest changes. This should apply better as a patch. Hi John- Thanks for the really useful test harness. I'll have time to look at it in detail in Jan. Briefly, I have some concerns about testing for specific

[Kicad-developers] add KiCad on GSoC this year?

2018-12-19 Thread Thomas Pointhuber
Hi, some reminder for next month: Starting with January 15th, mentoring organizations can start submitting applications for the GSoC: https://developers.google.com/open-source/gsoc/timeline It would be a nice idea to apply this year, and get some students to help with the development of KiCad 6.

Re: [Kicad-developers] PCBNew: Segments/polygons not rendered correctly (from Bug 1806411])

2018-12-19 Thread John Beard
Sorry, I failed to rebase that over the newest changes. This should apply better as a patch. Cheers, John On Wed, Dec 19, 2018 at 3:15 PM John Beard wrote: > > Hi, > > I've added a few simple cases to the qa_common unit tests. > > I don't know if I will have covered cases which would have expose

Re: [Kicad-developers] PCBNew: Segments/polygons not rendered correctly (from Bug 1806411])

2018-12-19 Thread John Beard
Hi, I've added a few simple cases to the qa_common unit tests. I don't know if I will have covered cases which would have exposed any bugs here, but any known corner cases (pass or fail) should be added. Also, they assume the polygons come in a fixed order. I don't know if that's a correct assum

Re: [Kicad-developers] PCBNew: Segments/polygons not rendered correctly (from Bug 1806411])

2018-12-19 Thread jp charras
Le 19/12/2018 à 04:48, Seth Hillbrand a écrit : > Am 2018-12-18 14:19, schrieb jp charras: >> >> Sorry Seth, >> >> But with your fixes, CacheTriangulation() crashes with degenerated >> polygons. >> >> To see that, modify gerbview_painter.cpp, line 265 to remove >> absolutePolygon.COutline( 0 ).Poin

Re: [Kicad-developers] Debugging Kicad, can this be done with Qt creator?

2018-12-19 Thread Jeff Young
We also have a spare license or two for CLion. Cheers, Jeff. > On 19 Dec 2018, at 09:22, Mário Luzeiro wrote: > > No need to share project files, its as easy as: > > git clone kicad > mkdir kicad\qtcreator > > Now create the build path/files with CMake as you normally do. > > QtCreator -> Ne

Re: [Kicad-developers] Debugging Kicad, can this be done with Qt creator?

2018-12-19 Thread Mário Luzeiro
No need to share project files, its as easy as: git clone kicad mkdir kicad\qtcreator Now create the build path/files with CMake as you normally do. QtCreator -> NewProject -> Import project -> Import Existing Project ProjectName: KiCad Location: kicad/qtcreator (next) Files select kicad/qtcre

Re: [Kicad-developers] Debugging Kicad, can this be done with Qt creator?

2018-12-19 Thread cedric.dew...@telfort.nl
Thank you Mario. Could you send me your .pro and your .user file? Cheers, Cedric >Origineel Bericht >Van : mrluze...@ua.pt >Datum : 19/12/2018 09:55 >Aan : kicad-developers@lists.launchpad.net, cedric.dew...@telfort.nl >Onderwerp : Re: [Kicad-developers] Debugging Kicad,can this be don

Re: [Kicad-developers] Debugging Kicad, can this be done with Qt creator?

2018-12-19 Thread Andrey Kuznetsov
I wish there was a setup environment already that I could just download and run... I used to code with Qt but now setting up projects, much less with Makefiles is like learning bash all over again. On Wed, Dec 19, 2018 at 12:55 AM Mário Luzeiro wrote: > I used Qt Creator to develop for KiCad. >

Re: [Kicad-developers] Debugging Kicad, can this be done with Qt creator?

2018-12-19 Thread Mário Luzeiro
I used Qt Creator to develop for KiCad. You just need to create a project that builds with a Makefile (not a QT project but a Makefile project), you can have multiple build targets ( Release, Debug ) then you can debug the Debug exec. You can set the target executable and exec path to debug (eg:

[Kicad-developers] Debugging Kicad, can this be done with Qt creator?

2018-12-19 Thread cedric.dew...@telfort.nl
Hi All, I would like to set breakpoints in the Kicad source, and then run a graphical debugger. I know how to set this up with Qt projects in Qt creator. What's your method? Is qt a workable solution, or should I use ecipse? I'm on Windows 7, with msys2 Cheers, Cedric ___