Re: [Kicad-developers] testing has been renamed to product

2014-01-21 Thread Brian Sidebotham
A new version of KiCad-Winbuilder will be released in the next few days. I haven't tried it since the change to product from testing, but there will only be a few references to testing, if any. The new version includes the library from github, and has wxPython 3 + a few patches. Best Regards,

Re: [Kicad-developers] Net names and net codes

2014-01-21 Thread Carl Poirier
There are some things in the code that don't like being multithreaded. If I parallelize the for loop in RN_DATA::Recalculate( int aNet ), I get a segfault. It does not happen if I put a lock to the call updateNet( i ), but obviously there is no increase in performance. I'm trying to find out

Re: [Kicad-developers] Net names and net codes

2014-01-21 Thread Cirilo Bernardo
From: Carl Poirier carl.poirie...@gmail.com To: Marco Serantoni marco.serant...@gmail.com Cc: Kicad Developers kicad-developers@lists.launchpad.net Sent: Wednesday, January 22, 2014 3:51 AM Subject: Re: [Kicad-developers] Net names and net codes There are